0

Hacky work on biome tinting

Currently this requires python-gearman, gearman-java, and a java SDK.

This code will probably be all thrown away, but if you really want to
play, first compile Biome.java, then run the resulting Biome.class.
Note you'll probably need to hack the signatures out of minecraft.jar to
get it to run.

Then copy grasscolor.png into the cwd, and run gmap.py as usual.

It is slowwwww.  Perhaps running Biome.class on multiple machines might
speed things up?

Here's the kind of output produced: http://smp.em32.net/biome_test/
This commit is contained in:
Andrew Chin
2010-11-10 20:07:02 -05:00
parent 914a3073f0
commit 210e65730f
4 changed files with 117 additions and 4 deletions

78
Biome.java Normal file
View File

@@ -0,0 +1,78 @@
import java.io.File;
import java.lang.*;
import org.gearman.worker.*;
import org.gearman.util.*;
import org.gearman.common.*;
import org.gearman.client.*;
public class Biome extends AbstractGearmanFunction {
public static cu MCSave;
public static pb BioGen;
public String getName() {
System.out.println("getname");
return "GetBiome";
}
public GearmanJobResult executeFunction() {
//System.out.println("executing");
String data = new String((byte[])this.data);
//System.out.println("got data -->" + data + "<--");
String[] s = data.split(",");
int x = Integer.parseInt(s[0]);
int y = Integer.parseInt(s[1]);
BioGen.a(x,y,1,1);
double temp = BioGen.a[0];
double moisture = BioGen.b[0];
String result = Double.toString(temp) + "/" + Double.toString(moisture);
//System.out.println(result);
GearmanJobResult gjr = new GearmanJobResultImpl(this.jobHandle,true, result.getBytes(),
new byte[0], new byte[0], 0, 0);
return gjr;
}
public static void main(String[] args) {
System.out.println("Locating Minecraft save...");
MCSave = new cu(new File("/home/achin/devel/overviewer-fork"), "world.test");
/* if (MinecraftSave.q)
System.out.println("Loading level...");
else
{
System.out.println("Failed to load level! Aborting.");
return;
}*/
BioGen = new pb(MCSave);
/* BiomeGenerator.a(0,1,1,1);
double temp = BiomeGenerator.a[0];
double moisture = BiomeGenerator.b[0];
System.out.println("Got biome vals at (0,0)");
System.out.println("Temperature: " + Double.toString(temp));
System.out.println("Moisture: " + Double.toString(moisture));
*/
org.gearman.worker.GearmanWorker w = new org.gearman.worker.GearmanWorkerImpl();
w.addServer(new GearmanNIOJobServerConnection("localhost"));
w.registerFunction(Biome.class);
System.out.println("working...");
w.work();
}
}