Converted ShatteredPD to Build from Gradle

Major Changes:
- Shattered now builds effortlessly either from gradle CLI or android studio
- Much better dependency management through gradle (although it's not really used atm)
- Separate PD-classes repo is now SPD-classes module within main repo
This commit is contained in:
Evan Debenham
2016-08-13 02:11:29 -04:00
parent 188523b2a5
commit 36e44340a8
954 changed files with 8530 additions and 14 deletions

View File

@@ -0,0 +1,154 @@
/*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2016 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.watabou.utils;
import java.util.Collection;
import java.util.HashMap;
public class Random {
public static float Float( float min, float max ) {
return (float)(min + Math.random() * (max - min));
}
public static float Float( float max ) {
return (float)(Math.random() * max);
}
public static float Float() {
return (float)Math.random();
}
public static int Int( int max ) {
return max > 0 ? (int)(Math.random() * max) : 0;
}
public static int Int( int min, int max ) {
return min + (int)(Math.random() * (max - min));
}
public static int IntRange( int min, int max ) {
return min + (int)(Math.random() * (max - min + 1));
}
public static int NormalIntRange( int min, int max ) {
return min + (int)((Math.random() + Math.random()) * (max - min + 1) / 2f);
}
public static int chances( float[] chances ) {
int length = chances.length;
float sum = 0;
for (int i=0; i < length; i++) {
sum += chances[i];
}
float value = Float( sum );
sum = 0;
for (int i=0; i < length; i++) {
sum += chances[i];
if (value < sum) {
return i;
}
}
return -1;
}
@SuppressWarnings("unchecked")
public static <K> K chances( HashMap<K,Float> chances ) {
int size = chances.size();
Object[] values = chances.keySet().toArray();
float[] probs = new float[size];
float sum = 0;
for (int i=0; i < size; i++) {
probs[i] = chances.get( values[i] );
sum += probs[i];
}
float value = Float( sum );
sum = probs[0];
for (int i=0; i < size; i++) {
if (value < sum) {
return (K)values[i];
}
sum += probs[i + 1];
}
return null;
}
public static int index( Collection<?> collection ) {
return (int)(Math.random() * collection.size());
}
@SafeVarargs
public static<T> T oneOf( T... array ) {
return array[(int)(Math.random() * array.length)];
}
public static<T> T element( T[] array ) {
return element( array, array.length );
}
public static<T> T element( T[] array, int max ) {
return array[(int)(Math.random() * max)];
}
@SuppressWarnings("unchecked")
public static<T> T element( Collection<? extends T> collection ) {
int size = collection.size();
return size > 0 ?
(T)collection.toArray()[Int( size )] :
null;
}
public static<T> void shuffle( T[] array ) {
for (int i=0; i < array.length - 1; i++) {
int j = Int( i, array.length );
if (j != i) {
T t = array[i];
array[i] = array[j];
array[j] = t;
}
}
}
public static<U,V> void shuffle( U[] u, V[]v ) {
for (int i=0; i < u.length - 1; i++) {
int j = Int( i, u.length );
if (j != i) {
U ut = u[i];
u[i] = u[j];
u[j] = ut;
V vt = v[i];
v[i] = v[j];
v[j] = vt;
}
}
}
}