-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathOutputConstants.js
73 lines (69 loc) · 2.32 KB
/
OutputConstants.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
// This will output BL constants like ChatColor when you load a world
ModPE.saveWorldFile = function(filename, content) {
java.io.File(android.os.Environment.getExternalStorageDirectory().getPath() + "/games/com.mojang/minecraftWorlds/" + Level.getWorldDir() + "/").mkdirs();
var newFile = new java.io.File(android.os.Environment.getExternalStorageDirectory().getPath() + "/games/com.mojang/minecraftWorlds/" + Level.getWorldDir() + "/", filename);
newFile.createNewFile();
var outWrite = new java.io.OutputStreamWriter(new java.io.FileOutputStream(newFile));
outWrite.append(content);
outWrite.close();
};
var file = [];
function newLevel() {
constantValues();
ModPE.saveWorldFile("const",file.join(";\n"));
}
function constantValues() {
file.push("\nvar ChatColor = {}");
for(let i in ChatColor) {
file.push("ChatColor."+i+" = \""+ChatColor[i]+"\"");
}
file.push("\nvar ItemCategory = {}");
for(let i in ItemCategory) {
file.push("ItemCategory."+i+" = "+ItemCategory[i]);
}
file.push("\nvar ParticleType = {}");
for(let i in ParticleType) {
file.push("ParticleType."+i+" = "+ParticleType[i]);
}
file.push("\nvar EntityType = {}");
for(let i in EntityType) {
file.push("EntityType."+i+" = "+EntityType[i]);
}
file.push("\nvar EntityRenderType = {}");
for(let i in EntityRenderType) {
file.push("EntityRenderType."+i+" = "+EntityRenderType[i]);
}
file.push("\nvar ArmorType = {}");
for(let i in ArmorType) {
file.push("ArmorType."+i+" = "+ArmorType[i]);
}
file.push("\nvar MobEffect = {}");
for(let i in MobEffect) {
file.push("MobEffect."+i+" = "+MobEffect[i]);
}
file.push("\nvar DimensionId = {}");
for(let i in DimensionId) {
file.push("DimensionId."+i+" = "+DimensionId[i]);
}
file.push("\nvar BlockFace = {}");
for(let i in BlockFace) {
file.push("BlockFace."+i+" = "+BlockFace[i]);
}
file.push("\nvar UseAnimation = {}");
for(let i in UseAnimation) {
file.push("UseAnimation."+i+" = "+UseAnimation[i]);
}
file.push("\nvar Enchantment = {}");
for(let i in Enchantment) {
file.push("Enchantment."+i+" = "+Enchantment[i]);
}
file.push("\nvar EnchantType = {}");
for(let i in EnchantType) {
file.push("EnchantType."+i+" = "+EnchantType[i]);
}
file.push("\nvar BlockRenderLayer = {}");
for(let i in BlockRenderLayer) {
file.push("BlockRenderLayer."+i+" = "+BlockRenderLayer[i]);
}
file.push("\n");
}