-
Notifications
You must be signed in to change notification settings - Fork 8
/
eedit.cfg
226 lines (163 loc) · 6.98 KB
/
eedit.cfg
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
System.ApplicationID = eedit
; *******************
; * Part 1: Plugins *
; *******************
; NB1: An entry in the plug-in list looks like this:
;
; System.Plugins.InterfaceName[.additional] = PluginName
;
; The InterfaceName should be the same as the main interface
; that is implemented by this plugin (if any). If this plugin doesn't
; implement a specific interface (like BugPlug) then just use a logical
; name that is different from all other interfaces.
; If you use 'Systems.Plugins.InterfaceName' then this plugin will
; be marked as the default plugin implementing that interface in the
; object registry. This means that you can do CS_QUERY_REGISTRY (object_reg,
; InterfaceName) to find this plugin.
; If you use 'Systems.Plugins.InterfaceName.bla' then this plugin will
; be registered using the tag 'InterfaceName.bla' in the object registry.
; This is usually used for secondary plugins.
;
; Here are a few common interfaces:
;
; iVFS the virtual file system
; iGraphics3D standard graphics output
; iSoundRender standard sound output
; iConsoleOutput the output console
; iEngine the 3d engine
; iImageIO the image loader
; iLoader the level loader
;
;
; NB2: a specific driver can be omitted, if it is not used.
; For example, if you just omit the sound renderer, you will
; simply hear no sound, but the program will still run
;
; NB3: Plugins will be loaded in the same order they are listed
; here. This means that if, for example, a plugin needs the video
; driver during his initialization, it should come *after*
; video driver in the following section. Unless the plugin has a
; specific dependency in his registry
;Sound renderer
System.Plugins.iSndSysRenderer = crystalspace.sndsys.renderer.openal
; First of all, the Virtual File System plug-in
System.Plugins.iVFS = crystalspace.kernel.vfs
; Video Driver
;System.Plugins.iGraphics3D = crystalspace.graphics3d.null
System.Plugins.iGraphics3D = crystalspace.graphics3d.opengl
;System.Plugins.iGraphics3D = crystalspace.graphics3d.software
; Document parser
System.Plugins.iDocumentSystem = crystalspace.documentsystem.multiplexer
System.Plugins.iDocumentSystem.1 = crystalspace.documentsystem.binary
System.Plugins.iDocumentSystem.2 = crystalspace.documentsystem.tinyxml
; Image Loader
System.Plugins.iImageIO = crystalspace.graphic.image.io.multiplexer
; Level Loader
System.Plugins.iLoader = crystalspace.level.loader
; Binary Sprite Loader
System.Plugins.iLoaderPlugin = crystalspace.mesh.loader.factory.sprite.3d.binary
; Now the Engine plug-in
System.Plugins.iEngine = crystalspace.engine.3d
; Shader Manager
System.Plugins.iShaderManager = crystalspace.graphics3d.shadermanager
; Additional plugins come here
;System.Plugins.iScript = crystalspace.script.python
;System.Plugins.iPerfstat = crystalspace.utilities.perfstat
System.Plugins.iCollideSystem = crystalspace.collisiondetection.opcode
;System.Plugins.iFontServer = crystalspace.font.server.default
;System.Plugins.iFontServer = crystalspace.font.server.freetype2
; For using font multiplexer, uncomment the following three lines
System.Plugins.iFontServer = crystalspace.font.server.multiplexer
System.Plugins.iFontServer.1 = crystalspace.font.server.freetype2
System.Plugins.iFontServer.2 = crystalspace.font.server.default
Fontplex.Fonts.Default.*Fallback = /this/data/ttf/LiberationSans-Regular.ttf
System.Plugins.iBgLoader = crystalspace.bgloader
; Planeshift plugins
System.Plugins.iSoundManager = crystalspace.planeshift.sound.soundmngr
;System.Plugins.iSoundManager = crystalspace.planeshift.sound.dummy
; ******************
; * Part 2: Config *
; ******************
VFS.Config = vfs.cfg
Engine.Lighting.Ambient.White = 30
Engine.Lighting.Ambient.Red = 0
Engine.Lighting.Ambient.Green = 0
Engine.Lighting.Ambient.Blue = 0
Engine.Lighting.LightmapSize = 16
Engine.Lighting.Reflections = 2
Engine.Lighting.CosinusFactor = 0
Engine.Lighting.Radiosity = no
Engine.Lighting.SpriteQuality = 1
Engine.Lighting.Radiosity.Enable = no
Engine.Lighting.Radiosity.DoStaticSpecular = no
Engine.Lighting.Radiosity.StaticSpecularAmount = 0.70
Engine.Lighting.Radiosity.StaticSpecularTightness = 4
Engine.Lighting.Radiosity.ColourBleed = 1.0
Engine.Lighting.Radiosity.StopPriority = 0.1
Engine.Lighting.Radiosity.StopImprovement = 100.0
Engine.Lighting.Radiosity.StopIterations = 10000
Engine.Lighting.Radiosity.SourcePatchSize = 16
; Use libshm if available (X-Windows only)
Video.XSHM = yes
; Simulate another depth (supported only by some video drivers)
;Video.SimulateDepth = 8
; Use system mouse cursor (yes) or software-simulated (no)
Video.SystemMouseCursor = yes
System.Win32.DebugConsole = yes
; Double click time in 1/1000 seconds
MouseDriver.DoubleClickTime = 300
; Maximal distance that mouse can move between clicks for double click to occur
MouseDriver.DoubleClickDist = 2
; For now its used only in DOS/DJGPP port
MouseDriver.MouseSensivity = 1.0
; ******************
; * Part 3: Game *
; ******************
Planeshift.Mount.zipmapdir = /this/art/world/
Planeshift.Mount.modelzip = /this/art/models.zip
Planeshift.Mount.weaponzip = /this/art/things/weapons.zip
Planeshift.Mount.itemzip = /this/art/things/items.zip
Planeshift.Mount.azurezip = /this/art/things/azure_way.zip
Planeshift.Mount.bluezip = /this/art/things/blue_way.zip
Planeshift.Mount.brownzip = /this/art/things/brown_way.zip
Planeshift.Mount.crystalzip = /this/art/things/crystal_way.zip
Planeshift.Mount.darkzip = /this/art/things/dark_way.zip
Planeshift.Mount.redzip = /this/art/things/red_way.zip
Planeshift.Connection.Server = planeshift.fragnetics.com
Planeshift.Connection.Port = 13331
; number of seconds before timeout
Planeshift.Client.User.Connecttimeout = 60
Planeshift.Client.User.Persisttimeout = 3000
Planeshift.Language = english
; number of milliseconds between two update of the sound plugin
Planeshift.Sound.UpdateTime = 50 ; default value 50
Planeshift.Sound.SndSysUpdateTime = 100 ; default value 100
; paths and names of definitions file
Planeshift.Sound.SoundLib = /planeshift/art/soundlib.xml
; physical constants
Planeshift.Sound.SpeedOfSound = 331 ; default value 331
Planeshift.Sound.DopplerFactor = 0.0 ; default value 0.0
Planeshift.Sound.DataCacheTime = 300000 ; default value 300000
Planeshift.Sound.ListenerRollOff = 1.0 ; default value 1.0
; ******************
; * User Config *
; ******************
; Width/height of CrystalSpace visual
Video.ScreenWidth = 1024
Video.ScreenHeight = 768
; Screen depth (currently supports 8, 15, 16, and 32 bits, NO 24 bits!)
Video.ScreenDepth = 32
; Use full-screen mode if available
Video.FullScreen = false
Video.OpenGL.ClipRequired = PS0
Video.OpenGL.ClipOuter = SZP
Video.OpenGL.ClipOptional = PNS
PlaneShift.GUI.Imagefile = /planeshift/data/eedit/imagelist.xml
EEdit.TargetFPS = 60
EEdit.Errors.OnlyEffects = false
EEdit.Errors.ShowErrors = true
EEdit.Errors.ShowWarnings = true
EEdit.Errors.ShowNotifications = true
PlaneShift.GUI.Open File.Visible = true
PlaneShift.GUI.Open File.PosX = 200
PlaneShift.GUI.Open File.PosY = 50