HD renderer prototype
This commit is contained in:
parent
33206e089f
commit
630759c87b
8 changed files with 905 additions and 0 deletions
19
src/main/java/org/dynmap/hdmap/HDMapTileRenderer.java
Normal file
19
src/main/java/org/dynmap/hdmap/HDMapTileRenderer.java
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
package org.dynmap.hdmap;
|
||||
|
||||
import java.io.File;
|
||||
|
||||
import org.dynmap.utils.MapChunkCache;
|
||||
|
||||
import org.json.simple.JSONObject;
|
||||
|
||||
public interface HDMapTileRenderer {
|
||||
String getName();
|
||||
|
||||
boolean render(MapChunkCache cache, HDMapTile tile, File outputFile);
|
||||
|
||||
void buildClientConfiguration(JSONObject worldObject);
|
||||
|
||||
boolean isBiomeDataNeeded();
|
||||
boolean isRawBiomeDataNeeded();
|
||||
boolean isNightAndDayEnabled();
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue