mirror of
https://github.com/curioustorvald/Terrarum.git
synced 2026-03-07 12:21:52 +09:00
colourmap and assets
This commit is contained in:
Binary file not shown.
16
assets/mods/basegame/colourmap/pal16.txt
Normal file
16
assets/mods/basegame/colourmap/pal16.txt
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
000
|
||||||
|
CCC
|
||||||
|
666
|
||||||
|
FFF
|
||||||
|
FE0
|
||||||
|
E60
|
||||||
|
E00
|
||||||
|
E2A
|
||||||
|
427
|
||||||
|
32F
|
||||||
|
3DF
|
||||||
|
5F0
|
||||||
|
353
|
||||||
|
742
|
||||||
|
C85
|
||||||
|
EBA
|
||||||
Binary file not shown.
64
assets/mods/basegame/colourmap/pal64.txt
Normal file
64
assets/mods/basegame/colourmap/pal64.txt
Normal file
@@ -0,0 +1,64 @@
|
|||||||
|
000
|
||||||
|
533
|
||||||
|
600
|
||||||
|
A36
|
||||||
|
636
|
||||||
|
73B
|
||||||
|
427
|
||||||
|
44C
|
||||||
|
038
|
||||||
|
47B
|
||||||
|
466
|
||||||
|
353
|
||||||
|
453
|
||||||
|
763
|
||||||
|
A63
|
||||||
|
742
|
||||||
|
333
|
||||||
|
E55
|
||||||
|
A00
|
||||||
|
E2A
|
||||||
|
D2F
|
||||||
|
92F
|
||||||
|
548
|
||||||
|
32F
|
||||||
|
36F
|
||||||
|
588
|
||||||
|
390
|
||||||
|
5F0
|
||||||
|
684
|
||||||
|
BA2
|
||||||
|
E60
|
||||||
|
854
|
||||||
|
666
|
||||||
|
EBA
|
||||||
|
E00
|
||||||
|
E6A
|
||||||
|
E6F
|
||||||
|
848
|
||||||
|
62F
|
||||||
|
66F
|
||||||
|
4AF
|
||||||
|
5BA
|
||||||
|
8FE
|
||||||
|
7F8
|
||||||
|
9E0
|
||||||
|
FE0
|
||||||
|
EA0
|
||||||
|
C85
|
||||||
|
999
|
||||||
|
CCC
|
||||||
|
FDE
|
||||||
|
EAF
|
||||||
|
A3B
|
||||||
|
96F
|
||||||
|
AAF
|
||||||
|
7AF
|
||||||
|
3DF
|
||||||
|
BFF
|
||||||
|
BFB
|
||||||
|
AF6
|
||||||
|
FEB
|
||||||
|
FD7
|
||||||
|
E96
|
||||||
|
FFF
|
||||||
Binary file not shown.
@@ -55,6 +55,14 @@ public class AppLoader implements ApplicationListener {
|
|||||||
public static final String GAME_NAME = "Terrarum";
|
public static final String GAME_NAME = "Terrarum";
|
||||||
public static final String COPYRIGHT_DATE_NAME = "Copyright 2013-2019 Torvald (minjaesong)";
|
public static final String COPYRIGHT_DATE_NAME = "Copyright 2013-2019 Torvald (minjaesong)";
|
||||||
|
|
||||||
|
// is this jvm good?
|
||||||
|
static {
|
||||||
|
if (System.getProperty("sun.arch.data.model") == null || System.getProperty("sun.arch.data.model").equals("unknown")) {
|
||||||
|
System.err.println("Error: Your JVM is not supported by the application.\nPlease install the desired version.");
|
||||||
|
System.exit(1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <p>
|
* <p>
|
||||||
* Version numbering that follows Semantic Versioning 2.0.0 (https://semver.org/)
|
* Version numbering that follows Semantic Versioning 2.0.0 (https://semver.org/)
|
||||||
@@ -139,12 +147,13 @@ public class AppLoader implements ApplicationListener {
|
|||||||
public static String processor = "(a super-duper virtual processor)";
|
public static String processor = "(a super-duper virtual processor)";
|
||||||
public static String processorVendor = "(andromeda software development)"; // definitely not taken from "that" demogroup
|
public static String processorVendor = "(andromeda software development)"; // definitely not taken from "that" demogroup
|
||||||
public static String renderer = "(a super-fancy virtual photoradiator)";
|
public static String renderer = "(a super-fancy virtual photoradiator)";
|
||||||
public static String rendererVendor = "(radiosity)";
|
public static String rendererVendor = "(aperture science psychovisualcomputation laboratory)";
|
||||||
|
|
||||||
public static int THREADS = ThreadParallel.INSTANCE.getThreadCount();
|
public static int THREADS = ThreadParallel.INSTANCE.getThreadCount();
|
||||||
public static boolean MULTITHREAD;
|
public static boolean MULTITHREAD;
|
||||||
|
|
||||||
public static final boolean is32BitJVM = !System.getProperty("sun.arch.data.model").contains("64");
|
public static final boolean is32BitJVM = !System.getProperty("sun.arch.data.model").contains("64");
|
||||||
|
// some JVMs don't have this property, but they probably don't have "sun.misc.Unsafe" either, so it's no big issue \_(ツ)_/
|
||||||
|
|
||||||
public static int GL_VERSION;
|
public static int GL_VERSION;
|
||||||
public static final int MINIMAL_GL_VERSION = 320;
|
public static final int MINIMAL_GL_VERSION = 320;
|
||||||
@@ -169,7 +178,7 @@ public class AppLoader implements ApplicationListener {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public static void setGAME_LOCALE(String value) {
|
public static void setGAME_LOCALE(String value) {
|
||||||
if (value.isEmpty() || value.equals("")) {
|
if (value.isEmpty()) {
|
||||||
GAME_LOCALE = getSysLang();
|
GAME_LOCALE = getSysLang();
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user