[TOC] [Prev] [Next] O Files

O files contain all the level objects. They are in text format.


Generalities - Object Types

There are many different object types in Dark Forces:

Type File Description
SPIRIT [none] an object not linked to a viewable file (i.e. invisible)
Its main use is for the PLAYER,
but you can create other invisible items.
SAFE [none] a restart point after the player died.
You should put SAFEs in your levels, to allow the player
to restart not far from where he died.
SPRITE WAX fully animated objects such as enemies.
FRAME FME "one view" objects such as energy power ups.
3D 3DO 3D objects such as mousebots.
SOUND VOC an ambient sound around the object position.


File Format

O Files accept C like /* */ comments.


Magic, Version number and level name

| O 1.1

This is trivial.

| LEVELNAME SECBASE

I'm not sure this level name is used in DF !


Object Tables

As there is a lot of OB information in a level, 4 object tables are created to avoid storing OB names in full at each occurrence.

| PODS 3             # These are the "3D" objects
|  POD: DEATH.3DO    # 00
|  ...
|
| SPRS 10            # These are the SPRITES
|  SPR: OFFCFIN.WAX  # 00
|   ...
|
| FMES 6             # These are the FRAMES
|  FME: IENERGY.FME  # 00
|  ...
|
| SOUNDS 1           # These are the SOUNDS
|  SOUND: BANG.VOC   #00
|  ...

Afterwards, all the objects are referred to by their 0 based index in the object tables.
The object CLASS determines in which table to look.


Object Descriptions

The first data is the total number of objects in the level :

| OBJECTS 185

Then each object is described.
Please note that the object data first line has been split here for visual convenience.

| CLASS: SPIRIT  DATA:  0 X: 131.00 Y:    0.00    Z: 210.00
\                       PCH:   0.00 YAW: 176.34 ROL:   0.00
\                       DIFF: 1
|  SEQ
|   LOGIC:     PLAYER
|   EYE:       TRUE
|  SEQEND
|
| CLASS: SPRITE  DATA:  0 X: 320.62  Y:  20.00   Z:  275.64
\                       PCH: 0.00  YAW: 270.00 ROL:    0.00
\                       DIFF: 1
|  SEQ
|   TYPE:      I_OFFICER
|  SEQEND

CLASS is the type of object, and DATA is the offset in the corresponding object table. (SPIRIT and SAFE have DATA = 0).

X, Y, Z are the position of the object in the level. This is the same coordinate system as found in the LEV file. The Y coordinate is "flipped" as in the LEV file (positive is down, negative is up).

PCH, YAW, ROL are classic spatial orientation. Values are in degrees. For YAW, 0 is north and the value increases clockwise (90 degrees is east). PCH (pitch) and ROL (roll) are only relevant for 3DOs. They have no effect on sprites and other objects.

DIFF is the difficulty level at which the object appears.

DIFF EASY MED HARD
-3 X X X
-2 X X
-1 X
0 X X X
1 X X X
2 X X
3 X


Sequences and Logics

SEQ and SEQEND are delimiters for a series of properties/modifiers to apply to the object which determine its behavior.

The basic thing that most entities will have is a LOGIC: that controls it.

Logics are hardcoded in DARK.EXE. For enemies, they determine its AI, eg. what weapon it uses, its health and intelligence, what sounds it makes.

In addition, logics are important for controlling how frames are displayed from a WAX file.

See Full Logics List

LOGIC alternatives and interchanging
The same sprite may be used with different logics provided they are compatible.

For instance, OFFCFIN.WAX may be used with a LOGIC: I_OFFICER or LOGIC: I_OFFICERB which will generate a blue key when killed instead of the usual ammo clip.

Or you can use OFFCFIN.WAX with LOGIC: STORM1 and although the enemy will appear like an officer, it will behave as a stormtrooper.

The keywords TYPE: and LOGIC: are freely exchangeable, and the ITEM keyword is optional before item logics.

Combined Logics

If you combine enemy logics, the first LOGIC: is in this case the primary logic, which means that to kill the object,
you have to use the firepower needed to kill its first LOGIC: .

Very strange things may happen when combining LOGICs, and some combinations don't work, or even don't work every time! Try Mousebot + Barrel, or Player + Mousebot...

LOGIC: ANIM is designed to be safely combined with many items and scenery objects.


Generators

Generators cause enemies to appear mid-way through a level. Here is a quite self explaining example:

| CLASS: SPRITE  DATA:  4 X: 396.88   Y:  -2.00   Z: 217.48
\                       PCH:   0.00 YAW:   0.00 ROL:   0.00 
\                      DIFF: 1
|  SEQ
|   LOGIC:     GENERATOR STORM1
|   DELAY:     30
|   INTERVAL:  20
|   MIN_DIST:  70
|   MAX_DIST:  200
|   MAX_ALIVE: 3
|   NUM_TERMINATE: 8
|   WANDER_TIME: 40
|  SEQEND

All generated enemies will use the sprite defined, and will appear "awake" (i.e. walking around, not standing still) from the X, Y and Z coordinates of the generator.

LOGIC: is the logic that the generated sprites will have.

Note the GENERATOR keyword.

Note also that only the following logics are allowed to be generated (generating others will cause problems and usually crash the game!)

	I_OFFICER and key variations
	TROOP
	STORM1
	COMMANDO
	BOSSK
	G_GUARD
	REE_YEES
	REE_YEES2
	SEWER1
	INT_DROID
	PROBE_DROID
	REMOTE

DELAY: is the time in seconds that needs to pass from the start of a level before the generator starts operating.

INTERVAL: is the time in seconds between each generation.

For an enemy to be generated, the player must be at a distance from the generator that is between
MIN_DIST and MAX_DIST.

MAX_ALIVE: is the maximum number of enemies from the generator allowed alive at the same time.

NUM_TERMINATE: is the number of enemies to be generated. When this is reached, the generator deactivates.
If set to -1, an infinite amount will be generated, and the generator will never deactivate.

WANDER_TIME: is the time in seconds that a generated sprite walks around before becoming inactive.

Note: in DARK.EXE, there is a keyword "PLUGIN:" among the above generator keywords. Its usage is still unknown.

Sprites aren't generated when the generator is able to see you, however (otherwise it would look like the enemies were walking out of thin air!). The best way to observe a generator working is therefore on the map by using the LACDS cheat.

Also note that you can set MASTER: OFF on a generator (not to be confused with the INF master variable!), and activate it by sending a "master_on" message to the sector that contains it.


All Objects Logics

This is a list of all the objects and other modifiers that can be used in the sequences of objects.

Please also see the end of this section for some unknowns found in DARK.EXE.

Player

| LOGIC:     PLAYER
| EYE:       TRUE

These should always be used together. Technically though, the LOGIC: PLAYER is the entity that you will control and move around, while EYE: TRUE is the object from whose point of view the level is viewed from.
So yes, you can try following enemies and mousebots around with the eye......

Items

Remember that you can use ITEM keyword before these logics.
Message is the message number from TEXT.MSG that is displayed when you pick up the item
(just in case you want to patch).

Logic:Description:Message:Message: #
General
LOGIC: SHIELD20 shield units 114
LOGIC: BATTERYbattery unit 211
LOGIC: CLEATSice cleats 304
LOGIC: GOGGLESinfra red goggles 303
LOGIC: MASKgas mask305
LOGIC: MEDKITmed kit 311
Weapons
LOGIC: RIFLEBlaster rifle / 15 energy units 100 / 101
LOGIC: AUTOGUNRepeater Rifle / 30 power units 103 / 104
LOGIC: FUSIONJeron fusion cutter / 50 power units 107 / 108
LOGIC: MORTARMortar Gun / 3 mortar shells 105 / 106
LOGIC: CONCUSSIONConcussion Rifle / 100 power units 110 / 111
LOGIC: CANNON Assault cannon / 30 plasma units 112 / 113
Ammo
LOGIC: ENERGY15 energy units 200
LOGIC: DETONATOR1 thermal detonator 203
LOGIC: DETONATORS5 thermal detonators 204
LOGIC: POWER10 power units 201
LOGIC: MINE1 mine 207
LOGIC: MINES5 mines 208
LOGIC: SHELL1 mortar shell 205
LOGIC: SHELLS5 mortar shells 206
LOGIC: PLASMA20 Plasma units 202
LOGIC: MISSILE1 missile 209
LOGIC: MISSILES5 missiles 210
Bonuses
LOGIC: SUPERCHARGEweapon supercharge 307
LOGIC: INVINCIBLEshield supercharge 306
LOGIC: LIFEextra life 310
LOGIC: REVIVErevive 308
Keys
LOGIC: BLUEblue key 302
LOGIC: REDred key300
LOGIC: YELLOWyellow key301
LOGIC: CODE1code key 1501
LOGIC: CODE2code key 2502
LOGIC: CODE3code key 3503
LOGIC: CODE4code key 4504
LOGIC: CODE5code key 5 505
LOGIC: CODE6code key 6 506
LOGIC: CODE7code key 7 507
LOGIC: CODE8code key 8508
LOGIC: CODE9code key 9 509
Goal Items
LOGIC: DATATAPEdata tapes 406
LOGIC: PLANSDeath Star plans 400
LOGIC: DT_WEAPONbroken DT weapon 405
LOGIC: NAVANava Card 402
LOGIC: PHRIKPhrik metal 401
LOGIC: PILEYour Gear312

Enemy Logics

Logic:Description:
Imperials
LOGIC: I_OFFICERImperial officer
LOGIC: I_OFFICERROfficer with red key
LOGIC: I_OFFICERBOfficer with blue key
LOGIC: I_OFFICERYOfficer with yellow key
LOGIC: I_OFFICER1Officer with code key 1
LOGIC: I_OFFICER2Officer with code key 2
LOGIC: I_OFFICER3Officer with code key 3
LOGIC: I_OFFICER4Officer with code key 4
LOGIC: I_OFFICER5Officer with code key 5
LOGIC: I_OFFICER6Officer with code key 6
LOGIC: I_OFFICER7Officer with code key 7
LOGIC: I_OFFICER8Officer with code key 8
LOGIC: I_OFFICER9Officer with code key 9
LOGIC: TROOPStormtrooper
LOGIC: STORM1Stormtrooper
LOGIC: COMMANDOImperial Commando
Aliens
LOGIC: BOSSKBossk
LOGIC: G_GUARDGammorean Guard
LOGIC: REE_YEESReeYees with thermal detonators
LOGIC: REE_YEES2ReeYees w/o thermal detonators
LOGIC: SEWER1Sewer creature
Robots
LOGIC: INT_DROIDInterrogator droid
LOGIC: PROBE_DROIDProbe droid
LOGIC: REMOTE Remote
Bosses
LOGIC: BOBA_FETTBoba Fett
LOGIC: KELLKell Dragon
LOGIC: D_TROOP1Phase 1 Dark Trooper
LOGIC: D_TROOP2Phase 2 Dark Trooper
LOGIC: D_TROOP3Phase 3 Dark Trooper (Mohc)

Special Sprite Logics

Note: The WAX files used for the explosions of the Barrel and Land Mine are hardcoded.

Logic:Description:
LOGIC: SCENERYDisplays first cell of wax 0, then all of wax 1 when attacked
LOGIC: ANIMDisplays wax 0 over and over
LOGIC: BARREL Power Generating unit
LOGIC: LAND_MINELand mine

3D Object Logics

Logic:Description:
LOGIC: TURRET gun turret
LOGIC: MOUSEBOTmousebot
LOGIC: WELDERwelding arm

3D Object Motion Logics

There are 2 logics for giving motions to a  3D object:
LOGIC: UPDATE to perpetually rotate a 3D, and 
LOGIC: KEY to give a VUE motion to the 3D

Rotation on X-axisRotation on Y-axis Rotation on Z-axis

LOGIC:   UPDATE 
FLAGS:    8
D_PITCH:  [speed]

LOGIC:    UPDATE 
FLAGS:    16
D_YAW:    [speed]
LOGIC:   UPDATE 
FLAGS:   32
D_ROLL:  [speed] 

Speed is the speed at which the 3D object rotates from -999 (max anti-clockwise) to 999 (max clockwise).

VUE Object

LOGIC:          KEY
VUE:            filename.VUE "id"
VUE_APPEND:     filenam2.VUE "id"
PAUSE:          TRUE
FRAME_RATE:    [frame rate]

filename.VUE is the name of the VUE file to use.

"id" is the name of the identifier within the VUE file to use

VUE_APPEND: is an optional VUE to be played after the first VUE.

PAUSE: TRUE will cause the VUE to pause each time it is played until a "wakeup" message is sent to the sector containing the 3D object. Objects with "PAUSE: TRUE" will also be "woken up" if their RADIUS is shot.

Frame rate is in frames per second.


Other Sequence Modifiers

BOSS: TRUE
This can be set to the following logics:

	BOBA_FETT
	KELL
	D_TROOP1
	D_TROOP2
	D_TROOP3

When you kill the enemy, an elevator called "boss" will move to its next stop
(unless it is LOGIC: D_TROOP3, where the elevator must be called "mohc"). This is similar to the movement of "complete" when a goal item is picked up. Using this modifier, you can cause something to happen when the player has killed the boss, for instance the player could be locked in a certain area until he has killed the boss and then a door will be opened letting him out.


RADIUS:[horizontal distance]

This defines the radius of the object's cylindrical "hit box". Frames and sprites have collision detection by default, but 3D objects don't, so you have to set one if you want the object to seem "solid". You can use this with a Spirit to create an invisible obstacle.


HEIGHT:[vertical distance]

Similar to radius, height defines the vertical size of the object's "hit box". A positive value is up and a negative value is down, relative to the object's origin. Using radius and height together, an object will have a cylinder-shaped hit box for the purpose of collision detection.


RADIUS and HEIGHT can be used with items and enemies to increase their default "hit box" size.


Unknown

These are found in DARK.EXE. It is likely that some are only used internally by the DF engine. We would appreciate any help working out any possible usable ones!

VISIBLE:
SHADED:
LIGHT:
PARENT:
D_X:
D_Y:
D_Z:
D_VIEW_PITCH:
D_VIEW_YAW:
D_VIEW_ROLL:
VIEW_PITCH:
VIEW_YAW:
VIEW_ROLL:
EYE_D_XYZ:
EYE_D_PYR:
SYNC:
PLUGIN:

STORM
DISPATCH
THINKER
FOLLOW
FOLLOW_Y
RANDOM_YAW
MOVER
SHAKER
PERSONALITY