Pioneer
Loading...
Searching...
No Matches
Variables
enum_table.cpp File Reference
#include "enum_table.h"
#include "Body.h"
#include "DynamicBody.h"
#include "Ship.h"
#include "ShipAICmd.h"
#include "ShipType.h"
#include "SpaceStation.h"
#include "SystemView.h"
#include "galaxy/Polit.h"
#include "galaxy/SystemBody.h"
#include "lua/LuaEngine.h"
#include "lua/LuaFileSystem.h"
#include "pigui/Face.h"
#include "scenegraph/Model.h"
#include "ship/PlayerShipController.h"
#include "ship/Propulsion.h"
#include "ship/ShipController.h"
Include dependency graph for enum_table.cpp:

Variables

const struct EnumItem ENUM_PhysicsObjectType []
 
const struct EnumItem ENUM_ShipAIError []
 
const struct EnumItem ENUM_ShipFlightState []
 
const struct EnumItem ENUM_ShipJumpStatus []
 
const struct EnumItem ENUM_ShipAlertStatus []
 
const struct EnumItem ENUM_ShipAICmdName []
 
const struct EnumItem ENUM_DualLaserOrientation []
 
const struct EnumItem ENUM_ShipTypeTag []
 
const struct EnumItem ENUM_DockingRefusedReason []
 
const struct EnumItem ENUM_ProjectableTypes []
 
const struct EnumItem ENUM_ProjectableBases []
 
const struct EnumItem ENUM_SystemViewMode []
 
const struct EnumItem ENUM_SystemViewColorIndex []
 
const struct EnumItem ENUM_PolitEcon []
 
const struct EnumItem ENUM_PolitGovType []
 
const struct EnumItem ENUM_BodyType []
 
const struct EnumItem ENUM_BodySuperType []
 
const struct EnumItem ENUM_DetailLevel []
 
const struct EnumItem ENUM_FileSystemRoot []
 
const struct EnumItem ENUM_PiGuiFaceFlags []
 
const struct EnumItem ENUM_ModelDebugFlags []
 
const struct EnumItem ENUM_CruiseDirection []
 
const struct EnumItem ENUM_FollowMode []
 
const struct EnumItem ENUM_ShipTypeThruster []
 
const struct EnumItem ENUM_PropulsionFuelStatus []
 
const struct EnumItem ENUM_ShipControllerFlightControlState []
 
const struct EnumTable ENUM_TABLES []
 
const struct EnumTable ENUM_TABLES_PUBLIC []
 

Variable Documentation

◆ ENUM_BodySuperType

const struct EnumItem ENUM_BodySuperType[]
Initial value:
= {
{ "NONE", int(SystemBody::SUPERTYPE_NONE) },
{ "STAR", int(SystemBody::SUPERTYPE_STAR) },
{ "ROCKY_PLANET", int(SystemBody::SUPERTYPE_ROCKY_PLANET) },
{ "GAS_GIANT", int(SystemBody::SUPERTYPE_GAS_GIANT) },
{ "STARPORT", int(SystemBody::SUPERTYPE_STARPORT) },
{ 0, 0 },
}
@ SUPERTYPE_ROCKY_PLANET
Definition SystemBody.h:76
@ SUPERTYPE_STAR
Definition SystemBody.h:75
@ SUPERTYPE_NONE
Definition SystemBody.h:74
@ SUPERTYPE_GAS_GIANT
Definition SystemBody.h:77
@ SUPERTYPE_STARPORT
Definition SystemBody.h:78

◆ ENUM_BodyType

const struct EnumItem ENUM_BodyType[]

◆ ENUM_CruiseDirection

const struct EnumItem ENUM_CruiseDirection[]
Initial value:
= {
{ "CRUISE_FWD", int(PlayerShipController::CRUISE_FWD) },
{ "CRUISE_UP", int(PlayerShipController::CRUISE_UP) },
{ 0, 0 },
}
@ CRUISE_FWD
Definition PlayerShipController.h:59
@ CRUISE_UP
Definition PlayerShipController.h:60

◆ ENUM_DetailLevel

const struct EnumItem ENUM_DetailLevel[]
Initial value:
= {
{ "VERY_LOW", int(LuaEngine::DETAIL_VERY_LOW) },
{ "LOW", int(LuaEngine::DETAIL_LOW) },
{ "MEDIUM", int(LuaEngine::DETAIL_MEDIUM) },
{ "HIGH", int(LuaEngine::DETAIL_HIGH) },
{ "VERY_HIGH", int(LuaEngine::DETAIL_VERY_HIGH) },
{ 0, 0 },
}
@ DETAIL_HIGH
Definition LuaEngine.h:14
@ DETAIL_VERY_HIGH
Definition LuaEngine.h:15
@ DETAIL_MEDIUM
Definition LuaEngine.h:13
@ DETAIL_VERY_LOW
Definition LuaEngine.h:11
@ DETAIL_LOW
Definition LuaEngine.h:12

◆ ENUM_DockingRefusedReason

const struct EnumItem ENUM_DockingRefusedReason[]

◆ ENUM_DualLaserOrientation

const struct EnumItem ENUM_DualLaserOrientation[]
Initial value:
= {
{ "HORIZONTAL", int(ShipType::DUAL_LASERS_HORIZONTAL) },
{ "VERTICAL", int(ShipType::DUAL_LASERS_VERTICAL) },
{ 0, 0 },
}
@ DUAL_LASERS_HORIZONTAL
Definition ShipType.h:14
@ DUAL_LASERS_VERTICAL
Definition ShipType.h:15

◆ ENUM_FileSystemRoot

const struct EnumItem ENUM_FileSystemRoot[]
Initial value:
= {
{ "USER", int(LuaFileSystem::ROOT_USER) },
{ "DATA", int(LuaFileSystem::ROOT_DATA) },
{ 0, 0 },
}
@ ROOT_USER
Definition LuaFileSystem.h:11
@ ROOT_DATA
Definition LuaFileSystem.h:12

◆ ENUM_FollowMode

const struct EnumItem ENUM_FollowMode[]
Initial value:
= {
{ "FOLLOW_POS", int(PlayerShipController::FOLLOW_POS) },
{ "FOLLOW_ORI", int(PlayerShipController::FOLLOW_ORI) },
{ 0, 0 },
}
@ FOLLOW_ORI
Definition PlayerShipController.h:65
@ FOLLOW_POS
Definition PlayerShipController.h:64

◆ ENUM_ModelDebugFlags

const struct EnumItem ENUM_ModelDebugFlags[]
Initial value:
= {
{ "COLLMESH", int(SceneGraph::Model::DEBUG_COLLMESH) },
{ "WIREFRAME", int(SceneGraph::Model::DEBUG_WIREFRAME) },
{ "DOCKING", int(SceneGraph::Model::DEBUG_DOCKING) },
{ "GEOMBBOX", int(SceneGraph::Model::DEBUG_GEOMBBOX) },
{ 0, 0 },
}
@ DEBUG_GEOMBBOX
Definition Model.h:175
@ DEBUG_COLLMESH
Definition Model.h:171
@ DEBUG_NONE
Definition Model.h:169
@ DEBUG_TAGS
Definition Model.h:173
@ DEBUG_DOCKING
Definition Model.h:174
@ DEBUG_WIREFRAME
Definition Model.h:172
@ DEBUG_BBOX
Definition Model.h:170

◆ ENUM_PhysicsObjectType

const struct EnumItem ENUM_PhysicsObjectType[]
Initial value:
= {
{ "BODY", int(ObjectType::BODY) },
{ "MODELBODY", int(ObjectType::MODELBODY) },
{ "SHIP", int(ObjectType::SHIP) },
{ "PLAYER", int(ObjectType::PLAYER) },
{ "SPACESTATION", int(ObjectType::SPACESTATION) },
{ "PLANET", int(ObjectType::PLANET) },
{ "STAR", int(ObjectType::STAR) },
{ "CARGOBODY", int(ObjectType::CARGOBODY) },
{ "MISSILE", int(ObjectType::MISSILE) },
{ 0, 0 },
}

◆ ENUM_PiGuiFaceFlags

const struct EnumItem ENUM_PiGuiFaceFlags[]
Initial value:
= {
{ "RAND", int(PiGui::Face::RAND) },
{ "MALE", int(PiGui::Face::MALE) },
{ "FEMALE", int(PiGui::Face::FEMALE) },
{ "ARMOUR", int(PiGui::Face::ARMOUR) },
{ 0, 0 },
}
@ RAND
Definition Face.h:23
@ ARMOUR
Definition Face.h:28
@ MALE
Definition Face.h:24
@ FEMALE
Definition Face.h:25

◆ ENUM_PolitEcon

const struct EnumItem ENUM_PolitEcon[]
Initial value:
= {
{ "NONE", int(Polit::ECON_NONE) },
{ "VERY_CAPITALIST", int(Polit::ECON_VERY_CAPITALIST) },
{ "CAPITALIST", int(Polit::ECON_CAPITALIST) },
{ "MIXED", int(Polit::ECON_MIXED) },
{ "PLANNED", int(Polit::ECON_PLANNED) },
{ 0, 0 },
}
@ ECON_NONE
Definition Polit.h:17
@ ECON_PLANNED
Definition Polit.h:21
@ ECON_VERY_CAPITALIST
Definition Polit.h:18
@ ECON_CAPITALIST
Definition Polit.h:19
@ ECON_MIXED
Definition Polit.h:20

◆ ENUM_PolitGovType

const struct EnumItem ENUM_PolitGovType[]
Initial value:
= {
{ "NONE", int(Polit::GOV_NONE) },
{ "EARTHCOLONIAL", int(Polit::GOV_EARTHCOLONIAL) },
{ "EARTHDEMOC", int(Polit::GOV_EARTHDEMOC) },
{ "EMPIRERULE", int(Polit::GOV_EMPIRERULE) },
{ "CISLIBDEM", int(Polit::GOV_CISLIBDEM) },
{ "CISSOCDEM", int(Polit::GOV_CISSOCDEM) },
{ "LIBDEM", int(Polit::GOV_LIBDEM) },
{ "CORPORATE", int(Polit::GOV_CORPORATE) },
{ "SOCDEM", int(Polit::GOV_SOCDEM) },
{ "EARTHMILDICT", int(Polit::GOV_EARTHMILDICT) },
{ "MILDICT1", int(Polit::GOV_MILDICT1) },
{ "MILDICT2", int(Polit::GOV_MILDICT2) },
{ "EMPIREMILDICT", int(Polit::GOV_EMPIREMILDICT) },
{ "COMMUNIST", int(Polit::GOV_COMMUNIST) },
{ "PLUTOCRATIC", int(Polit::GOV_PLUTOCRATIC) },
{ "DISORDER", int(Polit::GOV_DISORDER) },
{ 0, 0 },
}
@ GOV_PLUTOCRATIC
Definition Polit.h:41
@ GOV_CISLIBDEM
Definition Polit.h:31
@ GOV_MILDICT2
Definition Polit.h:38
@ GOV_MILDICT1
Definition Polit.h:37
@ GOV_NONE
Definition Polit.h:27
@ GOV_EARTHDEMOC
Definition Polit.h:29
@ GOV_CORPORATE
Definition Polit.h:34
@ GOV_EARTHCOLONIAL
Definition Polit.h:28
@ GOV_COMMUNIST
Definition Polit.h:40
@ GOV_EMPIREMILDICT
Definition Polit.h:39
@ GOV_EMPIRERULE
Definition Polit.h:30
@ GOV_EARTHMILDICT
Definition Polit.h:36
@ GOV_SOCDEM
Definition Polit.h:35
@ GOV_CISSOCDEM
Definition Polit.h:32
@ GOV_DISORDER
Definition Polit.h:42
@ GOV_LIBDEM
Definition Polit.h:33

◆ ENUM_ProjectableBases

const struct EnumItem ENUM_ProjectableBases[]
Initial value:
= {
{ "SYSTEMBODY", int(Projectable::SYSTEMBODY) },
{ "BODY", int(Projectable::BODY) },
{ "SHIP", int(Projectable::SHIP) },
{ "PLAYER", int(Projectable::PLAYER) },
{ "PLANNER", int(Projectable::PLANNER) },
{ 0, 0 },
}
@ BODY
Definition SystemView.h:55
@ SHIP
Definition SystemView.h:56
@ PLAYER
Definition SystemView.h:57
@ PLANNER
Definition SystemView.h:58
@ SYSTEMBODY
Definition SystemView.h:54

◆ ENUM_ProjectableTypes

const struct EnumItem ENUM_ProjectableTypes[]
Initial value:
= {
{ "NONE", int(Projectable::NONE) },
{ "OBJECT", int(Projectable::OBJECT) },
{ "L4", int(Projectable::L4) },
{ "L5", int(Projectable::L5) },
{ "APOAPSIS", int(Projectable::APOAPSIS) },
{ "PERIAPSIS", int(Projectable::PERIAPSIS) },
{ 0, 0 },
}
@ L5
Definition SystemView.h:49
@ L4
Definition SystemView.h:48
@ PERIAPSIS
Definition SystemView.h:51
@ OBJECT
Definition SystemView.h:47
@ APOAPSIS
Definition SystemView.h:50
@ NONE
Definition SystemView.h:46

◆ ENUM_PropulsionFuelStatus

const struct EnumItem ENUM_PropulsionFuelStatus[]
Initial value:
= {
{ "OK", int(Propulsion::FUEL_OK) },
{ "WARNING", int(Propulsion::FUEL_WARNING) },
{ "EMPTY", int(Propulsion::FUEL_EMPTY) },
{ 0, 0 },
}
@ FUEL_OK
Definition Propulsion.h:81
@ FUEL_EMPTY
Definition Propulsion.h:83
@ FUEL_WARNING
Definition Propulsion.h:82

◆ ENUM_ShipAICmdName

const struct EnumItem ENUM_ShipAICmdName[]
Initial value:
= {
{ "CMD_NONE", int(AICommand::CmdName::CMD_NONE) },
{ "CMD_DOCK", int(AICommand::CmdName::CMD_DOCK) },
{ "CMD_FLYTO", int(AICommand::CmdName::CMD_FLYTO) },
{ "CMD_FLYAROUND", int(AICommand::CmdName::CMD_FLYAROUND) },
{ "CMD_KILL", int(AICommand::CmdName::CMD_KILL) },
{ "CMD_KAMIKAZE", int(AICommand::CmdName::CMD_KAMIKAZE) },
{ "CMD_HOLDPOSITION", int(AICommand::CmdName::CMD_HOLDPOSITION) },
{ "CMD_FORMATION", int(AICommand::CmdName::CMD_FORMATION) },
{ 0, 0 },
}
@ CMD_KILL
Definition ShipAICmd.h:27
@ CMD_HOLDPOSITION
Definition ShipAICmd.h:29
@ CMD_FLYTO
Definition ShipAICmd.h:25
@ CMD_FORMATION
Definition ShipAICmd.h:30
@ CMD_NONE
Definition ShipAICmd.h:23
@ CMD_KAMIKAZE
Definition ShipAICmd.h:28
@ CMD_FLYAROUND
Definition ShipAICmd.h:26
@ CMD_DOCK
Definition ShipAICmd.h:24

◆ ENUM_ShipAIError

const struct EnumItem ENUM_ShipAIError[]
Initial value:
= {
{ "NONE", int(Ship::AIERROR_NONE) },
{ "GRAV_TOO_HIGH", int(Ship::AIERROR_GRAV_TOO_HIGH) },
{ "REFUSED_PERM", int(Ship::AIERROR_REFUSED_PERM) },
{ "PRESS_TOO_HIGH", int(Ship::AIERROR_PRESS_TOO_HIGH) },
{ "ORBIT_IMPOSSIBLE", int(Ship::AIERROR_ORBIT_IMPOSSIBLE) },
{ 0, 0 },
}
@ AIERROR_GRAV_TOO_HIGH
Definition DynamicBody.h:68
@ AIERROR_ORBIT_IMPOSSIBLE
Definition DynamicBody.h:71
@ AIERROR_NONE
Definition DynamicBody.h:67
@ AIERROR_REFUSED_PERM
Definition DynamicBody.h:69
@ AIERROR_PRESS_TOO_HIGH
Definition DynamicBody.h:70

◆ ENUM_ShipAlertStatus

const struct EnumItem ENUM_ShipAlertStatus[]
Initial value:
= {
{ "NONE", int(Ship::ALERT_NONE) },
{ "SHIP_NEARBY", int(Ship::ALERT_SHIP_NEARBY) },
{ "SHIP_FIRING", int(Ship::ALERT_SHIP_FIRING) },
{ "MISSILE_DETECTED", int(Ship::ALERT_MISSILE_DETECTED) },
{ 0, 0 },
}
@ ALERT_SHIP_FIRING
Definition Ship.h:181
@ ALERT_SHIP_NEARBY
Definition Ship.h:180
@ ALERT_MISSILE_DETECTED
Definition Ship.h:182
@ ALERT_NONE
Definition Ship.h:179

◆ ENUM_ShipControllerFlightControlState

const struct EnumItem ENUM_ShipControllerFlightControlState[]
Initial value:
= {
{ "CONTROL_MANUAL", int(FlightControlState::CONTROL_MANUAL) },
{ "CONTROL_FIXSPEED", int(FlightControlState::CONTROL_FIXSPEED) },
{ "CONTROL_FIXHEADING_FORWARD", int(FlightControlState::CONTROL_FIXHEADING_FORWARD) },
{ "CONTROL_FIXHEADING_BACKWARD", int(FlightControlState::CONTROL_FIXHEADING_BACKWARD) },
{ "CONTROL_FIXHEADING_NORMAL", int(FlightControlState::CONTROL_FIXHEADING_NORMAL) },
{ "CONTROL_FIXHEADING_ANTINORMAL", int(FlightControlState::CONTROL_FIXHEADING_ANTINORMAL) },
{ "CONTROL_FIXHEADING_RADIALLY_INWARD", int(FlightControlState::CONTROL_FIXHEADING_RADIALLY_INWARD) },
{ "CONTROL_FIXHEADING_RADIALLY_OUTWARD", int(FlightControlState::CONTROL_FIXHEADING_RADIALLY_OUTWARD) },
{ "CONTROL_FIXHEADING_KILLROT", int(FlightControlState::CONTROL_FIXHEADING_KILLROT) },
{ "CONTROL_AUTOPILOT", int(FlightControlState::CONTROL_AUTOPILOT) },
{ 0, 0 },
}
@ CONTROL_FIXHEADING_RADIALLY_INWARD
Definition ShipController.h:23
@ CONTROL_FIXHEADING_ANTINORMAL
Definition ShipController.h:22
@ CONTROL_AUTOPILOT
Definition ShipController.h:26
@ CONTROL_FIXHEADING_KILLROT
Definition ShipController.h:25
@ CONTROL_FIXHEADING_NORMAL
Definition ShipController.h:21
@ CONTROL_FIXSPEED
Definition ShipController.h:18
@ CONTROL_MANUAL
Definition ShipController.h:17
@ CONTROL_FIXHEADING_BACKWARD
Definition ShipController.h:20
@ CONTROL_FIXHEADING_FORWARD
Definition ShipController.h:19
@ CONTROL_FIXHEADING_RADIALLY_OUTWARD
Definition ShipController.h:24

◆ ENUM_ShipFlightState

const struct EnumItem ENUM_ShipFlightState[]
Initial value:
= {
{ "FLYING", int(Ship::FLYING) },
{ "DOCKING", int(Ship::DOCKING) },
{ "UNDOCKING", int(Ship::UNDOCKING) },
{ "DOCKED", int(Ship::DOCKED) },
{ "LANDED", int(Ship::LANDED) },
{ "JUMPING", int(Ship::JUMPING) },
{ "HYPERSPACE", int(Ship::HYPERSPACE) },
{ 0, 0 },
}
@ UNDOCKING
Definition Ship.h:123
@ JUMPING
Definition Ship.h:126
@ DOCKING
Definition Ship.h:122
@ FLYING
Definition Ship.h:121
@ DOCKED
Definition Ship.h:124
@ HYPERSPACE
Definition Ship.h:127
@ LANDED
Definition Ship.h:125

◆ ENUM_ShipJumpStatus

const struct EnumItem ENUM_ShipJumpStatus[]
Initial value:
= {
{ "OK", int(Ship::HYPERJUMP_OK) },
{ "CURRENT_SYSTEM", int(Ship::HYPERJUMP_CURRENT_SYSTEM) },
{ "NO_DRIVE", int(Ship::HYPERJUMP_NO_DRIVE) },
{ "INITIATED", int(Ship::HYPERJUMP_INITIATED) },
{ "DRIVE_ACTIVE", int(Ship::HYPERJUMP_DRIVE_ACTIVE) },
{ "OUT_OF_RANGE", int(Ship::HYPERJUMP_OUT_OF_RANGE) },
{ "INSUFFICIENT_FUEL", int(Ship::HYPERJUMP_INSUFFICIENT_FUEL) },
{ "SAFETY_LOCKOUT", int(Ship::HYPERJUMP_SAFETY_LOCKOUT) },
{ 0, 0 },
}
@ HYPERJUMP_CURRENT_SYSTEM
Definition Ship.h:150
@ HYPERJUMP_INITIATED
Definition Ship.h:152
@ HYPERJUMP_INSUFFICIENT_FUEL
Definition Ship.h:155
@ HYPERJUMP_OK
Definition Ship.h:149
@ HYPERJUMP_SAFETY_LOCKOUT
Definition Ship.h:156
@ HYPERJUMP_OUT_OF_RANGE
Definition Ship.h:154
@ HYPERJUMP_NO_DRIVE
Definition Ship.h:151
@ HYPERJUMP_DRIVE_ACTIVE
Definition Ship.h:153

◆ ENUM_ShipTypeTag

const struct EnumItem ENUM_ShipTypeTag[]
Initial value:
= {
{ "NONE", int(ShipType::TAG_NONE) },
{ "SHIP", int(ShipType::TAG_SHIP) },
{ "STATIC_SHIP", int(ShipType::TAG_STATIC_SHIP) },
{ "MISSILE", int(ShipType::TAG_MISSILE) },
{ 0, 0 },
}
@ TAG_SHIP
Definition ShipType.h:19
@ TAG_MISSILE
Definition ShipType.h:21
@ TAG_STATIC_SHIP
Definition ShipType.h:20
@ TAG_NONE
Definition ShipType.h:18

◆ ENUM_ShipTypeThruster

const struct EnumItem ENUM_ShipTypeThruster[]
Initial value:
= {
{ "REVERSE", int(Thruster::THRUSTER_REVERSE) },
{ "FORWARD", int(Thruster::THRUSTER_FORWARD) },
{ "UP", int(Thruster::THRUSTER_UP) },
{ "DOWN", int(Thruster::THRUSTER_DOWN) },
{ "LEFT", int(Thruster::THRUSTER_LEFT) },
{ "RIGHT", int(Thruster::THRUSTER_RIGHT) },
{ 0, 0 },
}
@ THRUSTER_UP
Definition Propulsion.h:18
@ THRUSTER_REVERSE
Definition Propulsion.h:16
@ THRUSTER_LEFT
Definition Propulsion.h:20
@ THRUSTER_RIGHT
Definition Propulsion.h:21
@ THRUSTER_FORWARD
Definition Propulsion.h:17
@ THRUSTER_DOWN
Definition Propulsion.h:19

◆ ENUM_SystemViewColorIndex

const struct EnumItem ENUM_SystemViewColorIndex[]
Initial value:
= {
{ "GRID", int(SystemView::GRID) },
{ "GRID_LEG", int(SystemView::GRID_LEG) },
{ "SYSTEMBODY", int(SystemView::SYSTEMBODY) },
{ "SYSTEMBODY_ORBIT", int(SystemView::SYSTEMBODY_ORBIT) },
{ "PLAYER_ORBIT", int(SystemView::PLAYER_ORBIT) },
{ "PLANNER_ORBIT", int(SystemView::PLANNER_ORBIT) },
{ "SELECTED_SHIP_ORBIT", int(SystemView::SELECTED_SHIP_ORBIT) },
{ "SHIP_ORBIT", int(SystemView::SHIP_ORBIT) },
{ 0, 0 },
}
@ GRID_LEG
Definition SystemView.h:136
@ GRID
Definition SystemView.h:135
@ SELECTED_SHIP_ORBIT
Definition SystemView.h:141
@ SYSTEMBODY_ORBIT
Definition SystemView.h:138
@ PLAYER_ORBIT
Definition SystemView.h:139
@ PLANNER_ORBIT
Definition SystemView.h:140
@ SYSTEMBODY
Definition SystemView.h:137
@ SHIP_ORBIT
Definition SystemView.h:142

◆ ENUM_SystemViewMode

const struct EnumItem ENUM_SystemViewMode[]
Initial value:
= {
{ "Orrery", int(SystemView::Mode::Orrery) },
{ "Atlas", int(SystemView::Mode::Atlas) },
{ 0, 0 },
}

◆ ENUM_TABLES

const struct EnumTable ENUM_TABLES[]
Initial value:
= {
{ "PhysicsObjectType", ENUM_PhysicsObjectType },
{ "ShipAIError", ENUM_ShipAIError },
{ "ShipFlightState", ENUM_ShipFlightState },
{ "ShipJumpStatus", ENUM_ShipJumpStatus },
{ "ShipAlertStatus", ENUM_ShipAlertStatus },
{ "ShipAICmdName", ENUM_ShipAICmdName },
{ "DualLaserOrientation", ENUM_DualLaserOrientation },
{ "ShipTypeTag", ENUM_ShipTypeTag },
{ "DockingRefusedReason", ENUM_DockingRefusedReason },
{ "ProjectableTypes", ENUM_ProjectableTypes },
{ "ProjectableBases", ENUM_ProjectableBases },
{ "SystemViewMode", ENUM_SystemViewMode },
{ "SystemViewColorIndex", ENUM_SystemViewColorIndex },
{ "PolitEcon", ENUM_PolitEcon },
{ "PolitGovType", ENUM_PolitGovType },
{ "BodyType", ENUM_BodyType },
{ "BodySuperType", ENUM_BodySuperType },
{ "DetailLevel", ENUM_DetailLevel },
{ "FileSystemRoot", ENUM_FileSystemRoot },
{ "PiGuiFaceFlags", ENUM_PiGuiFaceFlags },
{ "ModelDebugFlags", ENUM_ModelDebugFlags },
{ "CruiseDirection", ENUM_CruiseDirection },
{ "FollowMode", ENUM_FollowMode },
{ "ShipTypeThruster", ENUM_ShipTypeThruster },
{ "PropulsionFuelStatus", ENUM_PropulsionFuelStatus },
{ "ShipControllerFlightControlState", ENUM_ShipControllerFlightControlState },
{ 0, 0 },
}
const struct EnumItem ENUM_ShipAICmdName[]
Definition enum_table.cpp:78
const struct EnumItem ENUM_PropulsionFuelStatus[]
Definition enum_table.cpp:288
const struct EnumItem ENUM_BodySuperType[]
Definition enum_table.cpp:223
const struct EnumItem ENUM_ShipFlightState[]
Definition enum_table.cpp:47
const struct EnumItem ENUM_ModelDebugFlags[]
Definition enum_table.cpp:255
const struct EnumItem ENUM_DockingRefusedReason[]
Definition enum_table.cpp:104
const struct EnumItem ENUM_ShipJumpStatus[]
Definition enum_table.cpp:58
const struct EnumItem ENUM_SystemViewMode[]
Definition enum_table.cpp:130
const struct EnumItem ENUM_FileSystemRoot[]
Definition enum_table.cpp:241
const struct EnumItem ENUM_FollowMode[]
Definition enum_table.cpp:272
const struct EnumItem ENUM_DualLaserOrientation[]
Definition enum_table.cpp:90
const struct EnumItem ENUM_ShipAlertStatus[]
Definition enum_table.cpp:70
const struct EnumItem ENUM_DetailLevel[]
Definition enum_table.cpp:232
const struct EnumItem ENUM_ProjectableBases[]
Definition enum_table.cpp:121
const struct EnumItem ENUM_PhysicsObjectType[]
Definition enum_table.cpp:25
const struct EnumItem ENUM_SystemViewColorIndex[]
Definition enum_table.cpp:136
const struct EnumItem ENUM_ShipControllerFlightControlState[]
Definition enum_table.cpp:295
const struct EnumItem ENUM_PolitGovType[]
Definition enum_table.cpp:157
const struct EnumItem ENUM_PolitEcon[]
Definition enum_table.cpp:148
const struct EnumItem ENUM_ShipAIError[]
Definition enum_table.cpp:38
const struct EnumItem ENUM_ProjectableTypes[]
Definition enum_table.cpp:111
const struct EnumItem ENUM_CruiseDirection[]
Definition enum_table.cpp:266
const struct EnumItem ENUM_BodyType[]
Definition enum_table.cpp:177
const struct EnumItem ENUM_ShipTypeThruster[]
Definition enum_table.cpp:278
const struct EnumItem ENUM_ShipTypeTag[]
Definition enum_table.cpp:96
const struct EnumItem ENUM_PiGuiFaceFlags[]
Definition enum_table.cpp:247

◆ ENUM_TABLES_PUBLIC

const struct EnumTable ENUM_TABLES_PUBLIC[]
Initial value:
= {
{ "PhysicsObjectType", ENUM_PhysicsObjectType },
{ "ShipAIError", ENUM_ShipAIError },
{ "ShipFlightState", ENUM_ShipFlightState },
{ "ShipJumpStatus", ENUM_ShipJumpStatus },
{ "ShipAlertStatus", ENUM_ShipAlertStatus },
{ "ShipAICmdName", ENUM_ShipAICmdName },
{ "DualLaserOrientation", ENUM_DualLaserOrientation },
{ "ShipTypeTag", ENUM_ShipTypeTag },
{ "DockingRefusedReason", ENUM_DockingRefusedReason },
{ "ProjectableTypes", ENUM_ProjectableTypes },
{ "ProjectableBases", ENUM_ProjectableBases },
{ "SystemViewMode", ENUM_SystemViewMode },
{ "SystemViewColorIndex", ENUM_SystemViewColorIndex },
{ "PolitEcon", ENUM_PolitEcon },
{ "PolitGovType", ENUM_PolitGovType },
{ "BodyType", ENUM_BodyType },
{ "BodySuperType", ENUM_BodySuperType },
{ "DetailLevel", ENUM_DetailLevel },
{ "FileSystemRoot", ENUM_FileSystemRoot },
{ "PiGuiFaceFlags", ENUM_PiGuiFaceFlags },
{ "ModelDebugFlags", ENUM_ModelDebugFlags },
{ "CruiseDirection", ENUM_CruiseDirection },
{ "FollowMode", ENUM_FollowMode },
{ "ShipTypeThruster", ENUM_ShipTypeThruster },
{ "PropulsionFuelStatus", ENUM_PropulsionFuelStatus },
{ "ShipControllerFlightControlState", ENUM_ShipControllerFlightControlState },
{ 0, 0 },
}