Difference between revisions of "Game settings.tbl"

From FreeSpace Wiki
Jump to: navigation, search
(Documented $Default Detail Level)
(Add #Ignored Campaign File Names and $Full color head animations:)
Line 1: Line 1:
 
{{SCP_table}}
 
{{SCP_table}}
  
{{TableVersion|9089}}
+
{{TableVersion|9516}}
  
 
The '''game_settings.tbl''', also known as mod.tbl, defines options that can be changed globally.
 
The '''game_settings.tbl''', also known as mod.tbl, defines options that can be changed globally.
Line 16: Line 16:
 
===$Default Campaign File Name:===
 
===$Default Campaign File Name:===
 
Defines which campaign will be selected by default for new pilots. A file extension is not needed and, if present, is removed by the code.
 
Defines which campaign will be selected by default for new pilots. A file extension is not needed and, if present, is removed by the code.
 +
*Syntax: '''''String'''''<br>
 +
 +
 +
===#Ignored Campaign File Names===
 +
Defines which campaigns, if present, will not appear in the Campaign Room. Only single-player campaigns can be ignored. ''File extensions are required.''
 +
 +
 +
====$Campaign File Name:====
 +
File name of the campaign to ignore. Multiple entries may exist.
 
*Syntax: '''''String'''''<br>
 
*Syntax: '''''String'''''<br>
  
Line 34: Line 43:
 
*Syntax: '''''Boolean'''''<br>
 
*Syntax: '''''Boolean'''''<br>
 
*Default Value: '''''YES'''''
 
*Default Value: '''''YES'''''
 +
 +
 +
===$Full color head animations:===
 +
Enables full-color head ANIs. Normal head ANIs will appear in gray.
 +
*Syntax: '''''Boolean'''''<br>
 +
*Default Value: '''''NO'''''
  
  
Line 106: Line 121:
 
     #CAMPAIGN SETTINGS
 
     #CAMPAIGN SETTINGS
 
     $Default Campaign File Name: NewCampaignFile
 
     $Default Campaign File Name: NewCampaignFile
 +
   
 +
    #Ignored Campaign File Names
 +
    $Campaign File Name: FreeSpace2.fc2
 
      
 
      
 
     #HUD SETTINGS
 
     #HUD SETTINGS

Revision as of 23:11, 2 February 2013

This feature requires FreeSpace Open

Revision information.....

FSO Revision: 9516
Note: Please update the version when the page is updated. If your edit had nothing to do with new code entries then please do not edit the version


The game_settings.tbl, also known as mod.tbl, defines options that can be changed globally.


This table is one of the Modular Tables and can be extended with xxx-mod.tbm

List of Tables

#CAMPAIGN SETTINGS

Optional. This group contains various Campaign related settings and overrides.


$Default Campaign File Name:

Defines which campaign will be selected by default for new pilots. A file extension is not needed and, if present, is removed by the code.

  • Syntax: String


#Ignored Campaign File Names

Defines which campaigns, if present, will not appear in the Campaign Room. Only single-player campaigns can be ignored. File extensions are required.


$Campaign File Name:

File name of the campaign to ignore. Multiple entries may exist.

  • Syntax: String


#HUD Settings

Optional. This group contains various HUD behavior settings and overrides


$Directive Wait Time:

  • Defines how long the game will wait before displaying a directive.
  • Syntax: Integer
  • Values: Greater than or equal to 0 ms


$Cutscene Camera Disables HUD:

Switches off the HUD when the cutscene camera is enabled. This option is on by default.

  • Syntax: Boolean
  • Default Value: YES


$Full color head animations:

Enables full-color head ANIs. Normal head ANIs will appear in gray.

  • Syntax: Boolean
  • Default Value: NO


#SEXP SETTINGS

Optional. This group contains SEXP settings and overrides.


$Loop SEXPs Then Arguments:

Flips how when-argument settings loop. See: SEXP Argument changes via mod.tbl

  • Syntax: Boolean
  • Default Value: NO


$Use Alternate Chaining Behavior:

When set, this makes the event chaining behavior act as people expected it to be in Mantis #82.

  • Syntax: Boolean
  • Default Value: NO


#GRAPHICS SETTINGS

Optional. This group contains settings related to graphics.

$Enable External Shaders:

Enables the use of external shader files. By default, the engine will use the built-in shaders.

  • Syntax: Boolean
  • Default Value: NO


$Default Detail Level:

FS2 Open, 3.6.16:

Determines which graphics detail level preset (low, medium, high, very high) acts as the default for new pilots.

  • Syntax: Integer (0-3)
  • Default Value: 3 (very high)


#OTHER SETTINGS

Optional. This group contains miscellaneous settings.


$Fixed Turret Collisions:

Makes all hits to a turret's barrels count as hits to the turret subsystem. By default, this does not happen unless the point of impact falls inside the model radius of the turret's base.

  • Syntax: Boolean
  • Default Value: NO


$Damage Impacted Subsystem First:

If set, a hit to a physical subsystem will always deal damage to that subsystem first, even if another subsystem is closer to the point of impact. By default, the closest subsystem will always receive damage first.

  • Syntax: Boolean
  • Default Value: NO

$Default ship select effect:

FS2 Open, 3.6.16:
  • This specifies which effect to use for ship select animations when no .ani can be found, or the -ship_choice_3d commandline flag is active. This will default to the FS2 effect.
  • Possible options are "FS1" and "off"

$Default weapon select effect:

FS2 Open, 3.6.16:
  • This specifies which effect to use for weapon select animations when no .ani can be found, or the -weapon_choice_3d commandline flag is active. This will default to the FS2 effect.
  • Possible options are "FS1" and "off"

$Weapons inherit parent collision group:

FS2 Open, 3.6.16:
  • When set to true, Weapons fired by a ship will inherit their parents' collision group setting. Default is false.

#END

Required. The last line of the table must be #END


Sample Entry

   #CAMPAIGN SETTINGS
   $Default Campaign File Name: NewCampaignFile
   
   #Ignored Campaign File Names
   $Campaign File Name: FreeSpace2.fc2
   
   #HUD SETTINGS
   $Directive Wait Time: 5000
   
   #SEXP SETTINGS
   $Loop SEXPs Then Arguments: True
   
   #OTHER SETTINGS
   $Self Praise Percentage: 75
   
   #END