2022-03-13 06:28:57 +01:00
-------------
-- globals --
-------------
--- @type MarioState[]
2023-07-19 00:00:35 +02:00
--- Array of MarioStates, from 0 to MAX_PLAYERS - 1
--- - Uses the local index, which is different between every player
--- - Index 0 always refers to the local player
2022-03-13 06:28:57 +01:00
gMarioStates = { }
--- @type NetworkPlayer[]
2023-07-19 00:00:35 +02:00
--- Array of NetworkPlayers, from 0 to MAX_PLAYERS - 1
--- - Uses the local index, which is different between every player
--- - Index 0 always refers to the local player
2022-03-13 06:28:57 +01:00
gNetworkPlayers = { }
2022-04-23 03:44:59 +02:00
--- @type Mod[]
2023-07-19 00:00:35 +02:00
--- Array of all mods loaded, starting from 0
--- - All mods are loaded in the same order for every player
--- - Index 0 is the first mod in the list (The top of the mod list)
2022-04-23 03:44:59 +02:00
gActiveMods = { }
2022-03-13 06:28:57 +01:00
--- @type Character[]
gCharacter = { }
--- @type GlobalTextures
gTextures = { }
--- @type GlobalObjectAnimations
gObjectAnimations = { }
--- @type GlobalObjectCollisionData
gGlobalObjectCollisionData = { }
--- @alias SyncTable table
--- @type SyncTable
2023-07-19 00:00:35 +02:00
--- Any keys added and modified to this table will be synced among everyone.
--- - This shouldn't be used to sync player-specific values; Use gPlayerSyncTable for that
--- - Note: Does not support tables as keys
2022-03-13 06:28:57 +01:00
gGlobalSyncTable = { }
--- @type SyncTable[]
2023-07-19 00:00:35 +02:00
--- An array of sync tables. Any change to any sync tables will be synced to everyone else.
--- - This array takes in a local index, however it automatically translates to the global index
--- - Note: Does not support tables as keys
2022-03-13 06:28:57 +01:00
gPlayerSyncTable = { }
2022-04-09 04:39:22 +02:00
--- @type LevelValues
gLevelValues = { }
2022-04-09 08:01:41 +02:00
--- @type BehaviorValues
gBehaviorValues = { }
Arbitrary shirt, pants, glove colors + settings menu (#145)
* Support for more granular player colors
You can now configure RGB values for shirt, pants, gloves, and shoes.
Due to some limitations, configuring shoes does nothing at the moment.
* Remove paletteIndex and friends
Restructured and filled in some remaining code to account for that.
* Add Edit Palette panel to Player panel
* Change PlayerPalette contents to an enum-indexed array, remove shoes
This gets rid of all the hokey code doing switch cases on the
different parts.
* Fix goof with player model selection box
Should actually have affect now even if a custom palette is being used.
* Fix gap in player color display list commands
The extra space was leftover from when I was trying to get shoes
working. Forgot to clean it up.
* Standardize PlayerParts enum, including for lua constants autogen
* djui_panel_player.c: Properly hook sending palette changes on unpause
Editing the palette and then unpausing should send out the packet to
everyone with the new palette changes (and update the palette preset
selection box), but since we weren't hooking that situation before, it
would stay changed only for you. You would have had to press the Back
button for it to work right.
* Allow Lua mods to continue using `paletteIndex`, `overridePaletteIndex`
This lets mod code like this still work unchanged:
if s.team == 2 then
np.overridePaletteIndex = 7
elseif s.team == 1 then
np.overridePaletteIndex = 15
else
np.overridePaletteIndex = np.paletteIndex
end
It's essentially faked, and would work strangely if the value of either
variable was inspected more closely directly. This should at least
handle the typical use case, though.
Every frame, `overridePaletteIndex` is checked to see if it was modified
from its previous value. If so, `overridePalette` is set to the preset
corresponding to the index. `paletteIndex` contains a special value that
when used to assign to `overridePaletteIndex`, it copies `palette` into
`overridePalette` to restore the real colors, which of course may not
follow the presets at all.
* characters.h: Pack `PlayerPalette` to eliminate size differences between computers
* mario_misc.c: Remove remaining "TODO GAG"
2022-08-08 00:13:19 +02:00
--- @type PlayerPalette[]
gPalettePresets = { }
2022-11-30 09:37:43 +01:00
--- @type LakituState
2023-07-19 00:00:35 +02:00
--- The primary struct that controls the camera
--- - Local player only
2022-11-30 09:37:43 +01:00
gLakituState = { }
2023-02-17 00:54:38 +01:00
--- @type PaintingValues
gPaintingValues = { }
2023-03-07 23:46:09 +01:00
--- @type ServerSettings
gServerSettings = { }
2022-03-13 06:28:57 +01:00
-----------
-- hooks --
-----------
2023-07-19 00:00:35 +02:00
--- @param behaviorId BehaviorId | integer? The behavior id of the object to modify. Pass in as `nil` to create a custom object
--- @param objectList ObjectList | integer Object list
--- @param replaceBehavior boolean Whether or not to completely replace the behavior
--- @param initFunction? fun(obj:Object) Run on object creation
--- @param loopFunction? fun(obj:Object) Run every frame
--- @param behaviorName? string Optional
--- @return BehaviorId BehaviorId Use if creating a custom object, otherwise can be ignored
--- Modify an object's behavior or create a new custom object
2023-04-18 06:54:55 +02:00
function hook_behavior ( behaviorId , objectList , replaceBehavior , initFunction , loopFunction , behaviorName )
2022-03-13 06:28:57 +01:00
-- ...
end
2023-07-19 00:00:35 +02:00
--- @param command string The command to run. Should be easy to type
--- @param description string Should describe what the command does and how to use it
--- @param func fun(msg:string): boolean Run upon activating the command. Return `true` to confirm the command has succeeded
--- @return nil
2022-03-13 06:28:57 +01:00
function hook_chat_command ( command , description , func )
-- ...
end
2023-07-19 00:00:35 +02:00
--- @param command string The command to change the description of
--- @param description string The description to change to
2023-06-01 01:56:57 +02:00
function update_chat_command_description ( command , description )
-- ...
end
2023-07-19 00:00:35 +02:00
--- @param hookEventType LuaHookedEventType When a function should run
--- @param func fun(...: any): any The function to run
--- Different hooks can pass in different parameters and have different return values. Be sure to read the hooks guide for more information.
2022-03-13 06:28:57 +01:00
function hook_event ( hookEventType , func )
-- ...
end
2023-07-19 00:00:35 +02:00
--- @class ActionTable
--- @field every_frame fun(m:MarioState):integer?
--- @field gravity fun(m:MarioState):integer?
--- @param actionId integer The action to replace
--- @param funcOrFuncTable fun(m:MarioState):integer? | ActionTable The new behavior of the action
--- @param interactionType? InteractionFlag Optional; The flag that determines how the action interacts with other objects
--- If a function table is used, it must be in the form of `{ act_hook = [func], ... }`. Current action hooks include:
--- - every_frame
--- - gravity
2022-08-08 00:25:00 +02:00
function hook_mario_action ( actionId , funcOrFuncTable , interactionType )
2022-03-13 06:28:57 +01:00
-- ...
end
2023-07-19 00:00:35 +02:00
--- @param syncTable SyncTable Must be the gGlobalSyncTable or gPlayerSyncTable[] or one of their child tables
--- @param field string Field name
--- @param tag any An additional parameter
--- @param func fun(tag:any, oldVal:any, newVal:any) Run when the specified field has been changed
2022-03-13 06:28:57 +01:00
function hook_on_sync_table_change ( syncTable , field , tag , func )
-- ...
end
---------------
-- functions --
---------------
--- @param t number
--- @return number
function sins ( t )
-- ...
end
--- @param t number
--- @return number
function coss ( t )
-- ...
end
--- @param y number
--- @param x number
--- @return integer
function atan2s ( y , x )
-- ...
end
2023-07-19 00:00:35 +02:00
--- @param objFieldTable table<any, "u32"|"s32"|"f32">
2022-03-13 06:28:57 +01:00
--- @return nil
2023-07-19 00:00:35 +02:00
--- Keys must start with `o` and values must be `"u32"`, `"s32"`, or `"f32"`
2022-03-13 06:28:57 +01:00
function define_custom_obj_fields ( objFieldTable )
-- ...
end
2023-07-19 00:00:35 +02:00
--- @param object Object Object to sync
--- @param standardSync boolean Automatically syncs common fields and syncs with distance. If `false`, all syncing must be done with `network_send_object`.
--- @param fieldTable table<string> The fields to sync
2022-03-13 06:28:57 +01:00
--- @return nil
2023-07-19 00:00:35 +02:00
--- All synced fields must start with `o` and there should not be any keys, just values
2022-03-13 06:28:57 +01:00
function network_init_object ( object , standardSync , fieldTable )
-- ...
end
--- @param object Object
--- @param reliable boolean
--- @return nil
2023-07-19 00:00:35 +02:00
--- Sends a sync packet to sync up the object with everyone else
2022-03-13 06:28:57 +01:00
function network_send_object ( object , reliable )
-- ...
end
2022-04-22 09:13:30 +02:00
--- @param reliable boolean
--- @param dataTable table
--- @return nil
2023-07-19 00:00:35 +02:00
--- Note: `dataTable` can only contain strings, integers, numbers, booleans, and nil
2022-04-22 09:13:30 +02:00
function network_send ( reliable , dataTable )
-- ...
end
--- @param toLocalIndex integer
--- @param reliable boolean
--- @param dataTable table
--- @return nil
2023-07-19 00:00:35 +02:00
--- Note: `dataTable` can only contain strings, integers, numbers, booleans, and nil
2022-04-22 09:13:30 +02:00
function network_send_to ( toLocalIndex , reliable , dataTable )
-- ...
end
2022-05-07 12:05:25 +02:00
--- @param textureName string
--- @return TextureInfo
function get_texture_info ( textureName )
-- ...
end
--- @param texInfo TextureInfo
--- @param x number
--- @param y number
--- @param scaleW number
--- @param scaleH number
--- @return nil
function djui_hud_render_texture ( texInfo , x , y , scaleW , scaleH )
-- ...
2022-05-14 04:54:49 +02:00
end
2022-11-03 03:45:20 +01:00
--- @param texInfo TextureInfo
--- @param x number
--- @param y number
--- @param scaleW number
--- @param scaleH number
--- @param tileX number
--- @param tileY number
--- @param tileW number
--- @param tileH number
--- @return nil
function djui_hud_render_texture_tile ( texInfo , x , y , scaleW , scaleH , tileX , tileY , tileW , tileH )
-- ...
end
2022-05-14 04:54:49 +02:00
--- @param texInfo TextureInfo
--- @param prevX number
--- @param prevY number
--- @param prevScaleW number
--- @param prevScaleH number
--- @param x number
--- @param y number
--- @param scaleW number
--- @param scaleH number
--- @return nil
function djui_hud_render_texture_interpolated ( texInfo , prevX , prevY , prevScaleW , prevScaleH , x , y , scaleW , scaleH )
-- ...
end
2022-11-03 03:45:20 +01:00
--- @param texInfo TextureInfo
--- @param prevX number
--- @param prevY number
--- @param prevScaleW number
--- @param prevScaleH number
--- @param x number
--- @param y number
--- @param scaleW number
--- @param scaleH number
--- @param tileX number
--- @param tileY number
--- @param tileW number
--- @param tileH number
--- @return nil
function djui_hud_render_texture_tile_interpolated ( texInfo , prevX , prevY , prevScaleW , prevScaleH , x , y , scaleW , scaleH , tileX , tileY , tileW , tileH )
-- ...
end
2023-01-31 13:24:56 +01:00
2023-04-29 06:00:17 +02:00
--- @param name string
--- @param flags integer
--- @param animYTransDivisor integer
--- @param startFrame integer
--- @param loopStart integer
--- @param loopEnd integer
--- @param values table
--- @param index table
--- @return nil
function smlua_anim_util_register_animation ( name , flags , animYTransDivisor , startFrame , loopStart , loopEnd , values , index )
-- ...
end
2023-07-19 00:00:35 +02:00
--- @class bhvData
--- @field behavior BehaviorId
--- @field behaviorArg integer
--- @param levelNum LevelNum | integer
--- @param func fun(areaIndex:number, bhvData:bhvData, macroBhvIds:BehaviorId[], macroBhvArgs:integer[])
2023-01-31 13:24:56 +01:00
--- @return nil
2023-04-10 12:25:26 +02:00
--- When `func` is called, arguments are filled depending on the level command:
--- - `AREA` command: only `areaIndex` is filled. It's a number.
--- - `OBJECT` command: only `bhvData` is filled. `bhvData` is a table with two fields: `behavior` and `behaviorArg`.
--- - `MACRO` command: only `macroBhvIds` and `macroBhvArgs` are filled. `macrobhvIds` is a list of behavior ids. `macroBhvArgs` is a list of behavior params. Both lists have the same size and start at index 0.
2023-01-31 13:24:56 +01:00
function level_script_parse ( levelNum , func )
-- ...
end
2023-07-19 00:18:02 +02:00
--- @param contents ExclamationBoxContents[]
--- @return nil
--- The parameter should be a table containing several subtables with the following keys
--- - index: The index of the content (used by oBehParam2ndByte)
--- - unused: Unused
--- - firstByte: The spawned object's oBehParam's 1st byte
--- - emodel: The spawned object's model
--- - behaviorId: The spawned object's behavior ID
function set_exclamation_box_new_contents ( contents )
-- ...
end