-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathconfig.json
More file actions
320 lines (320 loc) · 9.22 KB
/
Copy pathconfig.json
File metadata and controls
320 lines (320 loc) · 9.22 KB
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
{
"settings": [
{
"name": "Main",
"version": "1.0",
"isActive": true,
"launchArguments": "",
"paths": {
"description": [
"gameFolder: Main game content folder (after install). Path is relative to .exe",
"cdFolder: Main game cd content folder (after install). Path is relative to .exe"
],
"gameFolder": "NETHERW",
"cdFolder": "CD_Files"
},
"multiplayer": {
"serverPort": 3030,
"serverClientPort": 3031,
"clientPort": 3030,
"clientServerPort": 3030,
"clientServerIp": "127.0.0.1"
},
"sound": {
"description": [
"hqSound: sound is transfered from 11025,8bit,mono to 44000,16bit,stereo. using AWE32 record of MIDI",
"oggMusic: music, for this function is hqsound auto enabled",
"oggMusicAlternative: use original and alternative sound tracks",
"fixspeedsound: set true when sounds play double speed",
"maxSimultaniousSounds: Original was 10. Increasing might impact performance",
"speechFolder: location of the ripped CD speech tracks",
"autoShowObjectivesForForeignLanguages: auto displays objective and mission text when not english"
],
"hqSound": true,
"oggMusic": true,
"oggFolder": "music-ogg",
"oggMusicAlternative": false,
"fixSpeedSound": false,
"maxSimultaniousSounds": 20,
"speechFolder": "CD_Files/SPEECH",
"autoShowObjectivesForForeignLanguages": true
},
"graphics": {
"description": [
"displayIndex: Decides which display to use, if it cannot find a display at the index, it will find the first one big enough.",
"windowResWidth: Window resolution, cannot be greater than resolution of chosen display",
"maintainAspectRatio: If set to false, whole window will be used for menu screen etc... stretching content",
"startWindowed: set to true to start windowed. Use Alt-Enter to change in game to windowed mode"
],
"displayIndex": 0,
"windowResWidth": 1920,
"windowResHeight": 1080,
"maintainAspectRatio": true,
"startWindowed": false,
"gameDetail": {
"description": [
"gameResWidth: In Game resolution. If using software render keep this low",
"gameUiScale: Scale of the Game Mini/Map and UI '2' recommended for HD, 3 for higher. (Max 8) Will not allow spell menu to be wider than screen width",
"useHighResGraphics: If set to true, highResGraphicsFolder must be set as well",
"highResGraphicsFolder: Directory with 128x128 textures. Path is relative to .exe",
"useFixedMenuGraphics: If set to true, fixedMenuGraphicsFolder folder must be set as well",
"fixedMenuGraphicsFolder: Directory with fixed menu graphics. Path is relative to .exe",
"useExtendedFonts: If set to true, extendedFontsFolder folder must be set as well",
"extendedFontsFolder: Directory with extended font graphics to support more languages. Path is relative to .exe",
"sky: Turns the sky on or off. Can be changed in-game",
"reflections: Turns the reflections on or off. Can be changed in-game",
"dynamicLighting: Turns the dynamic terrain lighting on or off. Can be changed in-game",
"viewDistanceScale: Increases the view distance (will effect performance). '1' = Original distance, '2' = 2x, '3' = 3x (Max)"
],
"gameResWidth": 1920,
"gameResHeight": 1080,
"gameUiScale": 2,
"useHighResGraphics": false,
"highResGraphicsFolder": "graphics/high-res",
"useFixedMenuGraphics": false,
"fixedMenuGraphicsFolder": "graphics/fixed/menu",
"useExtendedFonts": true,
"extendedFontsFolder": "graphics/fixed/fonts",
"sky": true,
"reflections": true,
"dynamicLighting": true,
"viewDistanceScale": 2
},
"threading": {
"description": [
"isActive : If set to false or deleted, multi-threading will not be used in render",
"sizePercentToThreadRender: 0.0 - 100.0. Decides if a poly is big enough percent on screen to render using threading",
"numberOfRenderThreads: Valid range 1-7. Depends on the number of available cores (Press 'T' to change in game)",
"assignToSpecificCores: When set to true, threads will be assigned to a specifc core (as many as supported)"
],
"isActive": true,
"sizePercentToThreadRender": 10.0,
"numberOfRenderThreads": 3,
"assignToSpecificCores": false
}
},
"game": {
"description": [
"maxGameFps: max frames per second in game. Locks the frame rate. Delete or set to 0 to unlock"
],
"maxGameFps": 24
},
"controls": {
"mouse": [
{
"description": [
"invertYAxis: True By default, the Y axis is inverted in the original game",
"invertXAxis: By default, the X axis is not inverted",
"Mouse Buttons: 1 = Left, 2 = Middle, 3 = Right, 0 = Undefined",
"mouseScaleX: 1.0 = normal, 1.5 = slower, 0.5 faster etc... (Note: Effects joystick steering too)",
"disableLRButtonsMenuOpen: when enable stops the two fire buttons opening the map screen"
],
"name": "Modern",
"isActive": true,
"invertYAxis": true,
"invertXAxis": false,
"mouseScaleX": 1.0,
"mouseScaleY": 1.0,
"disableLRButtonsMenuOpen": true,
"spellLeft": 1,
"spellRight": 3,
"map": 2,
"spellMenu": 4,
"spellMenuMark": 5
}
],
"keyboard": [
{
"description": [
"spellMenu: Ctrl by default. Opens the Spell menu",
"spellMenuMark: LShift By default, Hold down with spell menu open to mark a spell to the mouse button pressed"
],
"name": "Modern",
"isActive": true,
"forward": "W",
"backwards": "S",
"left": "A",
"right": "D",
"map": "TAB",
"spellMenu": "LCTRL",
"spellMenuMark": "LSHIFT"
},
{
"description": [
"spellMenu: Ctrl by default. Opens the Spell menu",
"spellMenuMark: LShift By default, Hold down with spell menu open to mark a spell to the mouse button pressed"
],
"name": "Classic",
"isActive": false,
"forward": "UP",
"backwards": "DOWN",
"left": "LEFT",
"right": "RIGHT",
"map": "RETURN",
"spellMenu": "RCTRL",
"spellMenuMark": "RSHIFT"
}
],
"gamePad": [
{
"name": "XBox Controller",
"isActive": true,
"controllerId": 0,
"buttonMiniMap": 3,
"buttonSpell": 1,
"buttonPauseMenu": 7,
"buttonEsc": 8,
"buttonFireL": 5,
"buttonFireR": 6,
"buttonMenuSelect": 1,
"triggerDeadZone": 3000,
"hapticEnabled": true,
"hapticMaxGain": 75,
"hatNav": 0,
"hatMov": 0,
"hatNavInv": false,
"hatMovInv": false,
"axisLong": 2,
"axisLongDeadZone": 12000,
"axisLongNavDeadZone": 6000,
"axisLongInv": true,
"axisTrans": 1,
"axisTransInv": false,
"axisTransDeadZone": 12000,
"axisTransNavDeadZone": 6000,
"axisNavNs": 2,
"axisNavNsInv": false,
"axisNavEw": 1,
"axisNavEwInv": false,
"axisFireR": 6,
"axisFireL": 5,
"axisYaw": 3,
"axisYawInv": false,
"axisYawDeadZone": 3000,
"axisYawSensitivity": {
"zones": [
{
"start": 0,
"end": 8000,
"factor": 0.1
},
{
"start": 8000,
"end": 15000,
"factor": 0.2
},
{
"start": 15000,
"end": 20000,
"factor": 0.3
},
{
"start": 20000,
"end": 25000,
"factor": 0.35
},
{
"start": 25000,
"end": 26000,
"factor": 0.4
},
{
"start": 26000,
"end": 27000,
"factor": 0.5
},
{
"start": 27000,
"end": 28000,
"factor": 0.6
},
{
"start": 28000,
"end": 29000,
"factor": 0.7
},
{
"start": 29000,
"end": 30000,
"factor": 0.8
},
{
"start": 30000,
"end": 31000,
"factor": 0.9
},
{
"start": 31000,
"end": 32767,
"factor": 1.0
}
]
},
"axisPitch": 4,
"axisPitchInv": false,
"axisPitchDeadZone": 3000,
"axisPitchSensitivity": {
"zones": [
{
"start": 0,
"end": 8000,
"factor": 0.1
},
{
"start": 8000,
"end": 15000,
"factor": 0.2
},
{
"start": 15000,
"end": 20000,
"factor": 0.3
},
{
"start": 20000,
"end": 25000,
"factor": 0.35
},
{
"start": 25000,
"end": 26000,
"factor": 0.4
},
{
"start": 26000,
"end": 27000,
"factor": 0.5
},
{
"start": 27000,
"end": 28000,
"factor": 0.6
},
{
"start": 28000,
"end": 29000,
"factor": 0.7
},
{
"start": 29000,
"end": 30000,
"factor": 0.8
},
{
"start": 30000,
"end": 31000,
"factor": 0.9
},
{
"start": 31000,
"end": 32767,
"factor": 1.0
}
]
}
}
]
}
}
]
}