Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Cervator committed Dec 6, 2015
2 parents 2283c45 + d0baade commit fadf43e
Show file tree
Hide file tree
Showing 275 changed files with 0 additions and 284 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
* <p>
* http://stackoverflow.com/questions/745415/regex-to-match-from-partial-or-camel-case-string
* </p>
* @author Martin Steiger
*/
public final class CamelCaseMatcher {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
import java.nio.file.attribute.BasicFileAttributes;

/**
* @author Immortius
*/
public final class FilesUtil {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
/**
* Helper class to have LWJGL loading logic in a central spot
*
* @author Rasmus 'Cervator' Praestholm
*/
public final class LWJGLHelper {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
import java.util.List;

/**
* @author Immortius
*/
public final class NativeHelper {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
import org.terasology.module.sandbox.API;

/**
* @author DizzyDragon
* Contains functions to get the ordinal indicator string for an integer.
*/
@API
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
import java.util.NoSuchElementException;

/**
* @author Marcos Vives Del Sol
*/
public class CharSequenceIterator implements Iterator<Character> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
/**
* A circular/cyclic/ring buffer. Adding elements is allowed only at the end of the buffer.
* Removing elements can be done through {@link #popFirst()} and {@link #popLast()} or {@link #remove(int)}.
* @author Immortius
*/
public final class CircularBuffer<T> extends AbstractList<T> {
private final T[] buffer;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
* EnumMap for storing primitive booleans against each enum value.
* Values default to false
*
* @author Immortius
*/
public class EnumBooleanMap<ENUM extends Enum<ENUM>> {
private EnumSet<ENUM> store;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
import java.util.Map;

/**
* @author Immortius
*/
public class TypeListMultimap<T> extends TypeMultimap<T> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
* TypeMap is a map-like class specialised for holding a set of objects by their class. So it is a {@code Map<Class<? extends T>, T>} where the value is guaranteed to be
* of the type of the key.
*
* @author Immortius
*/
public final class TypeMap<T> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
* TypeMap is a multimap-like class specialised for holding a set of objects by their class. So it is a {@code Multimap<Class<? extends T>, T>} where the value is guaranteed
* to be of the type of the key.
*
* @author Immortius
*/
public abstract class TypeMultimap<T> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
import java.util.Set;

/**
* @author Immortius
*/
public class TypeSetMultimap<T> extends TypeMultimap<T> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
package org.terasology.utilities.concurrency;

/**
* @author Immortius
*/
public abstract class AbstractTask implements Task {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
package org.terasology.utilities.concurrency;

/**
* @author Immortius
*/
public class ShutdownTask implements Task {
@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
package org.terasology.utilities.concurrency;

/**
* @author Immortius
*/
public interface Task {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
import java.util.concurrent.TimeUnit;

/**
* @author Immortius
*/
public final class TaskMaster<T extends Task> {
private static final Logger logger = LoggerFactory.getLogger(TaskMaster.class);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
import java.util.concurrent.BlockingQueue;

/**
* @author Immortius
*/
final class TaskProcessor<T extends Task> implements Runnable {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
import java.lang.reflect.Type;

/**
* @author Immortius
*/
public class AssetTypeAdapter<V extends Asset> implements JsonDeserializer<V> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
/**
* A Gson Adapter factory for supporting enums in a case-insensitive manner
*
* @author Immortius
*/
public class CaseInsensitiveEnumTypeAdapterFactory implements TypeAdapterFactory {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
import java.lang.reflect.Type;

/**
* @author Immortius
*/
public class ColorTypeAdapter implements JsonDeserializer<Color> {
@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
import java.lang.reflect.Type;

/**
* @author Immortius
*/
public class InputHandler implements JsonSerializer<Input>, JsonDeserializer<Input> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
import java.util.Map;

/**
* @author Immortius
*/
public final class JsonMergeUtil {
private JsonMergeUtil() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
import java.lang.reflect.Type;

/**
* @author Immortius
*/
public class Quat4fTypeAdapter implements JsonDeserializer<Quat4f> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@
import java.util.Map;

/**
* @author Immortius
*/
public class SetMultimapTypeAdapter<V> implements JsonDeserializer<SetMultimap<String, V>>, JsonSerializer<SetMultimap<String, V>> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@
/**
* A Gson Adapter factory for supporting enums in a case-insensitive manner
*
* @author Immortius
*/
public class UriTypeAdapterFactory implements TypeAdapterFactory {
private static final Logger logger = LoggerFactory.getLogger(UriTypeAdapterFactory.class);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
import java.lang.reflect.Type;

/**
* @author Immortius
*/
public class Vector2fTypeAdapter implements JsonDeserializer<Vector2f> {
@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
import java.lang.reflect.Type;

/**
* @author Immortius
*/
public class Vector2iTypeAdapter implements JsonDeserializer<Vector2i> {
@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
import java.lang.reflect.Type;

/**
* @author Immortius
*/
public class Vector3fTypeAdapter implements JsonDeserializer<Vector3f> {
@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
import java.lang.reflect.Type;

/**
* @author Immortius
*/
public class Vector4fTypeAdapter implements JsonDeserializer<Vector4f> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
/**
* An abstract implementation of most methods.
* The int-based methods delegate to float-bases ones.
* @author Martin Steiger
*/
public abstract class AbstractNoise implements Noise {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
/**
* Computes Brownian noise based on some noise generator.
* Originally, Brown integrates white noise, but using other noises can be sometimes useful, too.
* @author Martin Steiger
*/
public class BrownianNoise extends AbstractNoise {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
* Computes Brownian noise based on some noise generator.
* Originally, Brown integrates white noise, but using other noises can be sometimes useful, too.
*
* @author Martin Steiger
* @deprecated Use {@link BrownianNoise} instead and adjust the scale factor: the new impl. returns [-1..1].
*/
@Deprecated
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
/**
* Computes Brownian noise based on some noise generator.
* Originally, Brown integrates white noise, but using other noises can be sometimes useful, too.
* @author Martin Steiger
* @deprecated Use {@link BrownianNoise} instead and adjust the scale factor: the new impl. returns [-1..1].
*/
@Deprecated
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
/**
* Computes Brownian noise based on some noise generator.
* Originally, Brown integrates white noise, but using other noises can be sometimes useful, too.
* @author Martin Steiger
*/
public abstract class BrownianNoiseOld {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
* <br><br>
* This implementation rounds float parameters to the closest integer value. Use it in combination
* with BrownianNoise at lacunarity = 2.0.
* @author Martin Steiger
*/
public class DiscreteWhiteNoise extends WhiteNoise {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
/**
* Reads a heightmap encoded in a textfile
*
* @author Nym Traveel
*/
public final class HeightmapFileReader {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
/**
* Provides or generates noise
*
* @author Martin Steiger
*/
public interface Noise {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
/**
* Provides or generates 2D noise
*
* @author Martin Steiger
* @deprecated use {@link Noise} instead
*/
@Deprecated
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@

/**
* Provides or generates 3D noise
* @author Martin Steiger
* @deprecated use {@link Noise} instead
*/
@Deprecated
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
package org.terasology.utilities.procedural;

/**
* @author Immortius
* @deprecated use {@link Noise} instead
*/
@Deprecated
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
*
* It is based off of the noisePermutation table used by Perlin noise.
* @deprecated use {@link WhiteNoise} or {@link DiscreteWhiteNoise} instead
* @author Immortius
*/
@Deprecated
public class NoiseTable {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
/**
* Improved Perlin noise based on the reference implementation by Ken Perlin.
*
* @author Benjamin Glatzel
*/
public class PerlinNoise extends AbstractNoise implements Noise2D, Noise3D {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
import org.terasology.math.geom.Vector3i;

/**
* @author Immortius
*/
public class SubSampledNoise extends AbstractNoise {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
import org.terasology.math.geom.Vector2i;

/**
* @author Immortius
* @deprecated Use {@link SubSampledNoise} instead
*/
@Deprecated
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
import org.terasology.math.geom.Vector3i;

/**
* @author Immortius
* @deprecated Use {@link SubSampledNoise} instead
*/
@Deprecated
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
import java.util.Random;

/**
* @author Immortius
*/
public class Voronoi {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
/**
* This implementation is based on Robert Jenkins' 96 bit mix function as described in
* in "Integer Hash Function" by Thomas Wang, Jan 1997. The original code is public domain.
* @author Martin Steiger
*
*/
public class WhiteNoise implements Noise {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
/**
* Random number generator based on the Xorshift generator by George Marsaglia.
*
* @author Benjamin Glatzel
*/
@API
public class FastRandom extends Random {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
* Reference: Makato Matsumoto and Takuji Nishimura: <br>
* "Mersenne Twister: A 623-Dimensionally Equidistributed Uniform Pseudo-Random Number Generator"
*
* @author Martin Steiger
*/
@API
public class MersenneRandom extends Random {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
/**
* Interface for random number generators.
*
* @author Marcos Vives Del Sol
*/
@API
public abstract class Random {
Expand Down
Loading

0 comments on commit fadf43e

Please sign in to comment.