sm64ex-coop/mods/arena
TheGag96 a1bcd19529 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-07 15:13:19 -07:00
..
actors Allow set_mario_colors on any layer, add recursive descent to geo parsing, fix color flashing in Arena 2022-05-28 01:26:40 -07:00
levels added more info to uncompress error 2022-08-05 18:43:45 -07:00
textures Add arena 2022-05-21 21:05:41 -07:00
aa-arena-constants.lua Add arena 2022-05-21 21:05:41 -07:00
arena-flag.lua Add arena 2022-05-21 21:05:41 -07:00
arena-hud.lua Add arena 2022-05-21 21:05:41 -07:00
arena-item-held.lua Add arena 2022-05-21 21:05:41 -07:00
arena-item.lua Add arena 2022-05-21 21:05:41 -07:00
arena-koth-point.lua Add arena 2022-05-21 21:05:41 -07:00
arena-network.lua Add arena 2022-05-21 21:05:41 -07:00
arena-player.lua Arbitrary shirt, pants, glove colors + settings menu (#145) 2022-08-07 15:13:19 -07:00
arena-proj-bobomb.lua Add arena 2022-05-21 21:05:41 -07:00
arena-proj-cannon-ball.lua Add arena 2022-05-21 21:05:41 -07:00
arena-proj-flame.lua Add arena 2022-05-21 21:05:41 -07:00
arena-sparkle.lua Add arena 2022-05-21 21:05:41 -07:00
arena-spawn.lua Add arena 2022-05-21 21:05:41 -07:00
arena-utils.lua Add arena 2022-05-21 21:05:41 -07:00
camera.lua Add arena 2022-05-21 21:05:41 -07:00
main.lua Arena: made level stuff account for new level 2022-05-25 18:01:05 -07:00