mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2024-11-22 03:55:11 +00:00
More lua doc fixes
This commit is contained in:
parent
d3b9163507
commit
18a5ebafae
5 changed files with 281 additions and 237 deletions
|
@ -276,6 +276,7 @@ def doc_file(processed_file):
|
||||||
for c in constants:
|
for c in constants:
|
||||||
s += doc_constant(c)
|
s += doc_constant(c)
|
||||||
|
|
||||||
|
s += '\n[:arrow_up_small:](#)\n'
|
||||||
s += '\n<br />\n\n'
|
s += '\n<br />\n\n'
|
||||||
return s
|
return s
|
||||||
|
|
||||||
|
|
|
@ -451,7 +451,7 @@ def doc_function(function):
|
||||||
|
|
||||||
s += "\n### Lua Example\n"
|
s += "\n### Lua Example\n"
|
||||||
if rtype != None:
|
if rtype != None:
|
||||||
s += "`local %sValue = %s(%s)`\n" % (rtype, fid, param_str)
|
s += "`local %sValue = %s(%s)`\n" % (rtype.replace('`', ''), fid, param_str)
|
||||||
else:
|
else:
|
||||||
s += "`%s(%s)`\n" % (fid, param_str)
|
s += "`%s(%s)`\n" % (fid, param_str)
|
||||||
|
|
||||||
|
|
|
@ -515,6 +515,8 @@
|
||||||
- SOUND_TERRAIN_WATER
|
- SOUND_TERRAIN_WATER
|
||||||
- SOUND_VIBRATO
|
- SOUND_VIBRATO
|
||||||
|
|
||||||
|
[:arrow_up_small:](#)
|
||||||
|
|
||||||
<br />
|
<br />
|
||||||
|
|
||||||
## [behavior_table.h](#behavior_table.h)
|
## [behavior_table.h](#behavior_table.h)
|
||||||
|
@ -1038,6 +1040,8 @@
|
||||||
| id_bhvIntroScene | 513 |
|
| id_bhvIntroScene | 513 |
|
||||||
| id_bhv_max_count | 514 |
|
| id_bhv_max_count | 514 |
|
||||||
|
|
||||||
|
[:arrow_up_small:](#)
|
||||||
|
|
||||||
<br />
|
<br />
|
||||||
|
|
||||||
## [camera.h](#camera.h)
|
## [camera.h](#camera.h)
|
||||||
|
@ -1220,6 +1224,8 @@
|
||||||
- SHAKE_SHOCK
|
- SHAKE_SHOCK
|
||||||
- SHAKE_SMALL_DAMAGE
|
- SHAKE_SMALL_DAMAGE
|
||||||
|
|
||||||
|
[:arrow_up_small:](#)
|
||||||
|
|
||||||
<br />
|
<br />
|
||||||
|
|
||||||
## [characters.h](#characters.h)
|
## [characters.h](#characters.h)
|
||||||
|
@ -1282,6 +1288,8 @@
|
||||||
| CT_WARIO | 4 |
|
| CT_WARIO | 4 |
|
||||||
| CT_MAX | 5 |
|
| CT_MAX | 5 |
|
||||||
|
|
||||||
|
[:arrow_up_small:](#)
|
||||||
|
|
||||||
<br />
|
<br />
|
||||||
|
|
||||||
## [djui_hud_utils.h](#djui_hud_utils.h)
|
## [djui_hud_utils.h](#djui_hud_utils.h)
|
||||||
|
@ -1301,6 +1309,8 @@
|
||||||
| RESOLUTION_N64 | 1 |
|
| RESOLUTION_N64 | 1 |
|
||||||
| RESOLUTION_COUNT | 2 |
|
| RESOLUTION_COUNT | 2 |
|
||||||
|
|
||||||
|
[:arrow_up_small:](#)
|
||||||
|
|
||||||
<br />
|
<br />
|
||||||
|
|
||||||
## [graph_node.h](#graph_node.h)
|
## [graph_node.h](#graph_node.h)
|
||||||
|
@ -1344,6 +1354,8 @@
|
||||||
- GRAPH_RENDER_PLAYER
|
- GRAPH_RENDER_PLAYER
|
||||||
- GRAPH_RENDER_Z_BUFFER
|
- GRAPH_RENDER_Z_BUFFER
|
||||||
|
|
||||||
|
[:arrow_up_small:](#)
|
||||||
|
|
||||||
<br />
|
<br />
|
||||||
|
|
||||||
## [interaction.c](#interaction.c)
|
## [interaction.c](#interaction.c)
|
||||||
|
@ -1364,6 +1376,8 @@
|
||||||
| INT_HIT_FROM_ABOVE | (1 << 6) |
|
| INT_HIT_FROM_ABOVE | (1 << 6) |
|
||||||
| INT_HIT_FROM_BELOW | (1 << 7) |
|
| INT_HIT_FROM_BELOW | (1 << 7) |
|
||||||
|
|
||||||
|
[:arrow_up_small:](#)
|
||||||
|
|
||||||
<br />
|
<br />
|
||||||
|
|
||||||
## [interaction.h](#interaction.h)
|
## [interaction.h](#interaction.h)
|
||||||
|
@ -1442,6 +1456,8 @@
|
||||||
| INTERACT_IGLOO_BARRIER | (1 << 30) |
|
| INTERACT_IGLOO_BARRIER | (1 << 30) |
|
||||||
| INTERACT_PLAYER | (1 << 31) |
|
| INTERACT_PLAYER | (1 << 31) |
|
||||||
|
|
||||||
|
[:arrow_up_small:](#)
|
||||||
|
|
||||||
<br />
|
<br />
|
||||||
|
|
||||||
## [mario_animation_ids.h](#mario_animation_ids.h)
|
## [mario_animation_ids.h](#mario_animation_ids.h)
|
||||||
|
@ -1659,6 +1675,8 @@
|
||||||
| MARIO_ANIM_FORWARD_SPINNING_FLIP | 207 |
|
| MARIO_ANIM_FORWARD_SPINNING_FLIP | 207 |
|
||||||
| MARIO_ANIM_TRIPLE_JUMP_FLY | 208 |
|
| MARIO_ANIM_TRIPLE_JUMP_FLY | 208 |
|
||||||
|
|
||||||
|
[:arrow_up_small:](#)
|
||||||
|
|
||||||
<br />
|
<br />
|
||||||
|
|
||||||
## [mario_geo_switch_case_ids.h](#mario_geo_switch_case_ids.h)
|
## [mario_geo_switch_case_ids.h](#mario_geo_switch_case_ids.h)
|
||||||
|
@ -1702,6 +1720,8 @@
|
||||||
| MARIO_HAND_HOLDING_WING_CAP | 4 |
|
| MARIO_HAND_HOLDING_WING_CAP | 4 |
|
||||||
| MARIO_HAND_RIGHT_OPEN | 5 |
|
| MARIO_HAND_RIGHT_OPEN | 5 |
|
||||||
|
|
||||||
|
[:arrow_up_small:](#)
|
||||||
|
|
||||||
<br />
|
<br />
|
||||||
|
|
||||||
## [network_player.h](#network_player.h)
|
## [network_player.h](#network_player.h)
|
||||||
|
@ -1719,6 +1739,8 @@
|
||||||
| NPT_SERVER | 2 |
|
| NPT_SERVER | 2 |
|
||||||
| NPT_CLIENT | 3 |
|
| NPT_CLIENT | 3 |
|
||||||
|
|
||||||
|
[:arrow_up_small:](#)
|
||||||
|
|
||||||
<br />
|
<br />
|
||||||
|
|
||||||
## [object_constants.h](#object_constants.h)
|
## [object_constants.h](#object_constants.h)
|
||||||
|
@ -1797,6 +1819,8 @@
|
||||||
- RESPAWN_INFO_TYPE_32
|
- RESPAWN_INFO_TYPE_32
|
||||||
- RESPAWN_INFO_TYPE_NULL
|
- RESPAWN_INFO_TYPE_NULL
|
||||||
|
|
||||||
|
[:arrow_up_small:](#)
|
||||||
|
|
||||||
<br />
|
<br />
|
||||||
|
|
||||||
## [object_list_processor.h](#object_list_processor.h)
|
## [object_list_processor.h](#object_list_processor.h)
|
||||||
|
@ -1827,6 +1851,8 @@
|
||||||
| OBJ_LIST_UNIMPORTANT | 12 |
|
| OBJ_LIST_UNIMPORTANT | 12 |
|
||||||
| NUM_OBJ_LISTS | 13 |
|
| NUM_OBJ_LISTS | 13 |
|
||||||
|
|
||||||
|
[:arrow_up_small:](#)
|
||||||
|
|
||||||
<br />
|
<br />
|
||||||
|
|
||||||
## [os_cont.h](#os_cont.h)
|
## [os_cont.h](#os_cont.h)
|
||||||
|
@ -1880,6 +1906,8 @@
|
||||||
- Y_BUTTON
|
- Y_BUTTON
|
||||||
- Z_TRIG
|
- Z_TRIG
|
||||||
|
|
||||||
|
[:arrow_up_small:](#)
|
||||||
|
|
||||||
<br />
|
<br />
|
||||||
|
|
||||||
## [sm64.h](#sm64.h)
|
## [sm64.h](#sm64.h)
|
||||||
|
@ -2237,6 +2265,8 @@
|
||||||
- WATER_STEP_HIT_WALL
|
- WATER_STEP_HIT_WALL
|
||||||
- WATER_STEP_NONE
|
- WATER_STEP_NONE
|
||||||
|
|
||||||
|
[:arrow_up_small:](#)
|
||||||
|
|
||||||
<br />
|
<br />
|
||||||
|
|
||||||
## [smlua_hooks.h](#smlua_hooks.h)
|
## [smlua_hooks.h](#smlua_hooks.h)
|
||||||
|
@ -2256,6 +2286,8 @@
|
||||||
| HOOK_ON_INTERACT | 9 |
|
| HOOK_ON_INTERACT | 9 |
|
||||||
| HOOK_MAX | 10 |
|
| HOOK_MAX | 10 |
|
||||||
|
|
||||||
|
[:arrow_up_small:](#)
|
||||||
|
|
||||||
<br />
|
<br />
|
||||||
|
|
||||||
## [smlua_model_utils.h](#smlua_model_utils.h)
|
## [smlua_model_utils.h](#smlua_model_utils.h)
|
||||||
|
@ -2640,6 +2672,8 @@
|
||||||
| E_MODEL_WARIOS_WINGED_METAL_CAP | 374 |
|
| E_MODEL_WARIOS_WINGED_METAL_CAP | 374 |
|
||||||
| E_MODEL_MAX | 375 |
|
| E_MODEL_MAX | 375 |
|
||||||
|
|
||||||
|
[:arrow_up_small:](#)
|
||||||
|
|
||||||
<br />
|
<br />
|
||||||
|
|
||||||
## [types.h](#types.h)
|
## [types.h](#types.h)
|
||||||
|
@ -2674,5 +2708,7 @@
|
||||||
| SPTASK_STATE_FINISHED | 3 |
|
| SPTASK_STATE_FINISHED | 3 |
|
||||||
| SPTASK_STATE_FINISHED_DP | 4 |
|
| SPTASK_STATE_FINISHED_DP | 4 |
|
||||||
|
|
||||||
|
[:arrow_up_small:](#)
|
||||||
|
|
||||||
<br />
|
<br />
|
||||||
|
|
||||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -37,6 +37,13 @@ The `gTextures` table contains references to textures. Listed in [GlobalTextures
|
||||||
|
|
||||||
<br />
|
<br />
|
||||||
|
|
||||||
|
## [gObjectAnimations](#gObjectAnimations)
|
||||||
|
The `gObjectAnimations` table contains references to object animations. Listed in [GlobalObjectAnimations](structs.md#GlobalObjectAnimations).
|
||||||
|
|
||||||
|
[:arrow_up_small:](#)
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
## [gGlobalSyncTable](#gGlobalSyncTable)
|
## [gGlobalSyncTable](#gGlobalSyncTable)
|
||||||
The `gGlobalSyncTable` is a table used for networking. Any field set inside of this table is automatically synchronized with all other clients. Do not use this table for player-specific variables, keep those in [gPlayerSyncTable](#gPlayerSyncTable). Player-specific variable will desynchronize within this table since it doesn't automatically translate `playerIndex`.
|
The `gGlobalSyncTable` is a table used for networking. Any field set inside of this table is automatically synchronized with all other clients. Do not use this table for player-specific variables, keep those in [gPlayerSyncTable](#gPlayerSyncTable). Player-specific variable will desynchronize within this table since it doesn't automatically translate `playerIndex`.
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue