2012-01-12 18:23:00 +03:00
|
|
|
// This is schema for checking game settings from settings.json
|
|
|
|
// Any new settings should be added in this file for correct serialization and initialization
|
|
|
|
{
|
|
|
|
"general" : {
|
|
|
|
"type" : "object",
|
|
|
|
"properties" : {
|
|
|
|
"classicCreatureWindow" : {
|
|
|
|
"type" : "bool",
|
|
|
|
"default" : false
|
|
|
|
},
|
|
|
|
"playerName" : {
|
|
|
|
"type":"string",
|
2012-10-02 17:22:58 +03:00
|
|
|
"default" : "Player"
|
2012-01-12 18:23:00 +03:00
|
|
|
},
|
|
|
|
"showfps" : {
|
|
|
|
"type" : "bool",
|
|
|
|
"default" : false
|
|
|
|
},
|
|
|
|
"music" : {
|
|
|
|
"type" : "number",
|
|
|
|
"default" : 88
|
|
|
|
},
|
|
|
|
"sound" : {
|
|
|
|
"type" : "number",
|
|
|
|
"default" : 88
|
2012-11-11 15:23:31 +03:00
|
|
|
},
|
|
|
|
"enableRMG" : {
|
|
|
|
"type" : "bool",
|
|
|
|
"default" : false
|
|
|
|
}
|
2012-01-12 18:23:00 +03:00
|
|
|
},
|
|
|
|
"default" : {}
|
|
|
|
},
|
|
|
|
"video" : {
|
|
|
|
"type" : "object",
|
|
|
|
"properties" : {
|
|
|
|
"screenRes" : {
|
|
|
|
"type" : "object",
|
|
|
|
"properties" : {
|
|
|
|
"width" : { "type" : "number" },
|
|
|
|
"height" : { "type" : "number" }
|
|
|
|
},
|
2012-05-18 20:35:46 +03:00
|
|
|
"default": {"width" : 800, "height": 600 }
|
2012-01-12 18:23:00 +03:00
|
|
|
},
|
|
|
|
"bitsPerPixel" : {
|
|
|
|
"type" : "number",
|
|
|
|
"default" : 24
|
|
|
|
},
|
|
|
|
"fullscreen" : {
|
|
|
|
"type" : "bool",
|
|
|
|
"default" : false
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"default" : {}
|
|
|
|
},
|
|
|
|
"adventure" : {
|
|
|
|
"type" : "object",
|
|
|
|
"properties" : {
|
|
|
|
"heroSpeed" : {
|
|
|
|
"type" : "number",
|
|
|
|
"default" : 2
|
|
|
|
},
|
|
|
|
"enemySpeed" : {
|
|
|
|
"type" : "number",
|
|
|
|
"default" : 2
|
|
|
|
},
|
|
|
|
"scrollSpeed" : {
|
|
|
|
"type" : "number",
|
|
|
|
"default" : 1
|
|
|
|
},
|
|
|
|
"heroReminder" : {
|
|
|
|
"type" : "bool",
|
|
|
|
"default" : true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"default" : {}
|
|
|
|
},
|
|
|
|
"battle" : {
|
|
|
|
"type" : "object",
|
|
|
|
"properties" : {
|
|
|
|
"animationSpeed" : {
|
|
|
|
"type" : "number",
|
|
|
|
"default" : 2
|
|
|
|
},
|
|
|
|
"mouseShadow" : {
|
|
|
|
"type":"bool",
|
|
|
|
"default" : true
|
|
|
|
},
|
|
|
|
"cellBorders" : {
|
|
|
|
"type" : "bool",
|
|
|
|
"default" : false
|
|
|
|
},
|
|
|
|
"stackRange" : {
|
|
|
|
"type" : "bool",
|
|
|
|
"default" : true
|
|
|
|
},
|
|
|
|
"showQueue" : {
|
|
|
|
"type" : "bool",
|
|
|
|
"default" : true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"default" : {}
|
|
|
|
},
|
|
|
|
"server" : {
|
|
|
|
"type" : "object",
|
|
|
|
"properties" : {
|
|
|
|
"server" : {
|
|
|
|
"type":"string",
|
|
|
|
"default" : "127.0.0.1"
|
|
|
|
},
|
|
|
|
"port" : {
|
|
|
|
"type" : "number",
|
|
|
|
"default" : 3030
|
|
|
|
},
|
|
|
|
"localInformation" : {
|
|
|
|
"type" : "number",
|
|
|
|
"default" : 2
|
|
|
|
},
|
|
|
|
"playerAI" : {
|
|
|
|
"type" : "string",
|
2012-02-14 21:04:45 +03:00
|
|
|
"default" : "VCAI"
|
2012-01-12 18:23:00 +03:00
|
|
|
},
|
|
|
|
"neutralAI" : {
|
|
|
|
"type" : "string",
|
|
|
|
"default" : "StupidAI"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"default" : {}
|
|
|
|
}
|
|
|
|
}
|