Commit graph

3899 commits

Author SHA1 Message Date
PeachyPeachSM64
d16c495a51 Move unused fields to hidden so mods can still use them 2026-06-15 23:30:31 +02:00
PeachyPeachSM64
fa7ebb29e5 keep that for now
Some checks are pending
Build coop / build-linux (push) Waiting to run
Build coop / build-steamos (push) Waiting to run
Build coop / build-windows (push) Waiting to run
Build coop / build-macos-arm (push) Waiting to run
Build coop / build-macos-intel (push) Waiting to run
2026-06-15 18:58:03 +02:00
Isaac0-dev
5303357146
fix custom level data memory leak (#1256)
Some checks are pending
Build coop / build-linux (push) Waiting to run
Build coop / build-steamos (push) Waiting to run
Build coop / build-windows (push) Waiting to run
Build coop / build-macos-arm (push) Waiting to run
Build coop / build-macos-intel (push) Waiting to run
this fixes the giant memory leak that happens due to not freeing custom level data when closing a lobby.
`DynOS_Lvl_ModShutdown` was not freeing the data nodes for the level data, it was only freeing the surface data.
To fix this, I have made it use `DynOS_Gfx_Free` to free the `GfxData` correctly. I found that the level script VM will still be trying to warp from the custom level after `DynOS_Lvl_ModShutdown` is executed, so I added a schedule to simply free it the next frame.
I've made it force the level script to change to a vanilla level during mod shutdown. This is critical to ensure the VM doesn't continue to read from a freed level script.

Removed the explicit deletion of data nodes in `DynOS_MovtexQC_ModShutdown` because `DynOS_Gfx_Free` already frees that, and it's actually data owned by the data node, so it's more appropriate in `DynOS_Gfx_Free`
2026-06-15 11:22:03 +10:00
PeachyPeachSM64
bdf30bc88e Remove unused and filler fields from Lua
Some checks are pending
Build coop / build-linux (push) Waiting to run
Build coop / build-steamos (push) Waiting to run
Build coop / build-windows (push) Waiting to run
Build coop / build-macos-arm (push) Waiting to run
Build coop / build-macos-intel (push) Waiting to run
2026-06-14 19:42:05 +02:00
PeachyPeach
06ce5a2d3f
Custom object fields enhancements (#1230)
* Define global custom object fields

* _global_custom_object_fields

* improve custom object fields

* fix cobject pairs + add custom object fields; remove unused stuff

* mucher better

* paramater

* review 1

* review 2

* Fix 'obj_get_*_with_*_field_*' functions with custom fields
2026-06-14 16:28:52 +02:00
PeachyPeachSM64
289b11f27c Fix enum types in autogen [build] 2026-06-14 14:40:56 +02:00
PeachyPeach
9e362bf13a
Fix Mario knockback (#1301)
Some checks failed
Build coop / build-linux (push) Has been cancelled
Build coop / build-steamos (push) Has been cancelled
Build coop / build-windows (push) Has been cancelled
Build coop / build-macos-arm (push) Has been cancelled
Build coop / build-macos-intel (push) Has been cancelled
2026-06-07 08:14:14 +10:00
PeachyPeachSM64
9b3cb36f88 BAD_RETURN 2026-06-05 20:32:55 +02:00
PeachyPeachSM64
875e9f2805 bhv_spawn_star_no_level_exit is not a behavior function and does not use gCurrentObject 2026-06-05 20:18:35 +02:00
EmeraldLockdown
6f87509892 Signing changes 2026-05-31 22:07:01 -05:00
PeachyPeach
b8fde28886
Fix Mario clones stealing bodystate from player Marios (#1286)
When spawning fake Marios, these objects would steal the bodystate from valid Marios, resulting in nametags rendering in the wrong place and PvP attacks using these fake as origin.
2026-06-01 10:29:18 +10:00
PeachyPeachSM64
d17a004de9 Fix sync objects with non-overridden vanilla behaviors not properly synced 2026-06-01 01:57:31 +02:00
Agent X
2ed8b3252f
Achieve 100% function documentation (1972/1972 smlua functions) (#1289)
Some checks are pending
Build coop / build-linux (push) Waiting to run
Build coop / build-steamos (push) Waiting to run
Build coop / build-windows (push) Waiting to run
Build coop / build-macos-arm (push) Waiting to run
Build coop / build-macos-intel (push) Waiting to run
* Achieve 100% function documentation

Jeez man

* Fix borked character

* Fix an error I must have made a while ago
2026-05-31 16:15:18 -04:00
Agent X
46859be47d
Expose DJUI gfx scale function (#1292) 2026-05-31 15:05:41 -05:00
Agent X
949088df6e Bump version to v1.5.1 2026-05-31 16:03:46 -04:00
Agent X
db2195249f
Add function to center free camera (#1288)
Some checks are pending
Build coop / build-linux (push) Waiting to run
Build coop / build-steamos (push) Waiting to run
Build coop / build-windows (push) Waiting to run
Build coop / build-macos-arm (push) Waiting to run
Build coop / build-macos-intel (push) Waiting to run
2026-05-31 15:11:13 +10:00
ManIsCat2
95523dfb14
fix (#1287)
Some checks are pending
Build coop / build-linux (push) Waiting to run
Build coop / build-steamos (push) Waiting to run
Build coop / build-windows (push) Waiting to run
Build coop / build-macos-arm (push) Waiting to run
Build coop / build-macos-intel (push) Waiting to run
2026-05-30 19:31:49 -04:00
PeachyPeachSM64
6e5dec2431 Fix hook_behavior not returning the custom id 2026-05-30 23:40:36 +02:00
PeachyPeachSM64
b6a20eeee6 reran autogen
Some checks are pending
Build coop / build-linux (push) Waiting to run
Build coop / build-steamos (push) Waiting to run
Build coop / build-windows (push) Waiting to run
Build coop / build-macos-arm (push) Waiting to run
Build coop / build-macos-intel (push) Waiting to run
2026-05-30 20:10:52 +02:00
PeachyPeachSM64
31c46844a0 Handle properly japanese for custom hud font
- Fix buffer overflow
- Use texture_font_jp as placeholder since there is no jp version of the
  custom hud fonts
2026-05-30 20:00:48 +02:00
Agent X
a06bd34d40
Add "Reset Binds" button to N64 and Extra controls menus and allow quick unbind (#1263)
* Add implementation of keybind resetting

* Fix X/Y buttons not being reset in the proper case

* more binds improvements

- Make the reset binds buttons not reload the whole djui
- Press Z button/right mouse button to quick unbind
- Fix bug where binding a key automatically triggered its effect:
  - binding B or Esc would close the buttons menu
  - binding the console button would immediately open the console
  - binding Z would clear the button

* fix edge case

* Give disconnect key a default value (F12)

---------

Co-authored-by: PeachyPeachSM64 <72323920+PeachyPeachSM64@users.noreply.github.com>
2026-05-30 12:52:36 -04:00
Emily♥
15af400a01
Add djui_console_is_open (#1278)
* Add djui_console_is_open

Adds a lua function that returns if the djui console is open or not. Useful with the existing function djui_console_toggle() for disabling the djui console (mainly to prevent reading chat messages, as opposed to the only other solution which is to fill the console with spam). It doesn't affect the console used with the --console launch parameter in case debugging is necessary.

* Fix function description

please I need this

* Fix function description on docs

Silly me forgot to actually change the description where it matters
2026-05-30 12:01:52 -04:00
PeachyPeachSM64
aea840bda2 Fix nametags using alpha
Some checks are pending
Build coop / build-linux (push) Waiting to run
Build coop / build-steamos (push) Waiting to run
Build coop / build-windows (push) Waiting to run
Build coop / build-macos-arm (push) Waiting to run
Build coop / build-macos-intel (push) Waiting to run
2026-05-30 02:11:52 +02:00
EmeraldLockdown
54cb1b96ea Fix romhack cam being controllable in pause menu
This implements what is done in all other camera modes. Simply check the playmode, if it's the pause play mode, then don't rotate the camera. And just like that it is solved!
2026-05-29 19:09:02 -05:00
EmeraldLockdown
a11eee5a8f Reset freecam camera momentum on level warp
this fixes a bug where freecam could have a low deccel value, pause and stop hosting, and preserve a bunch of momentum into the main menu
2026-05-29 18:53:41 -05:00
PeachyPeachSM64
56fbe4dd0f Fix syncId for objects spawned from level script
For some reason the logic behind the sync id attribution was not the
same for custom objects/behaviors, resulting in duplicate sync ids,
causing various errors when loading the level and when calling
network_send_object
2026-05-30 01:28:17 +02:00
EmeraldLockdown
7e2aa19f02 Fix infinite staircase using all marios to decide to play music or not
Simple fix was only using the local mario to check, not all marios.
2026-05-29 18:24:47 -05:00
Agent X
101d4eeae3 Fix mod menu buttons getting cut off 2026-05-29 19:23:53 -04:00
EmeraldLockdown
856590ea1a Fix a crash in yoshi bhv 2026-05-29 18:14:24 -05:00
Isaac0-dev
9a8cb07c6d whoops
Some checks are pending
Build coop / build-macos-intel (push) Waiting to run
Build coop / build-linux (push) Waiting to run
Build coop / build-steamos (push) Waiting to run
Build coop / build-windows (push) Waiting to run
Build coop / build-macos-arm (push) Waiting to run
2026-05-29 09:39:42 +10:00
Isaac0-dev
42cca98b83 fix a warning 2026-05-29 09:15:18 +10:00
PeachyPeach
358a60d74d
Add default values for mod_storage_load functions (#1276) 2026-05-28 08:44:35 +10:00
Isaac0-dev
1409c2aeed
address some error logging in object syncing code (#1266)
* allow bhvCoinFormationSpawn and bhvYellowCoin behavior mismatch

* yikes

* cleanup

* fix logs, and proper check for deleted objects
2026-05-27 17:06:32 -05:00
PeachyPeachSM64
b46f1a26cf Fix inconsistencies with tabs and remove trailing whitespaces
Some checks are pending
Build coop / build-macos-intel (push) Waiting to run
Build coop / build-linux (push) Waiting to run
Build coop / build-steamos (push) Waiting to run
Build coop / build-windows (push) Waiting to run
Build coop / build-macos-arm (push) Waiting to run
2026-05-26 23:51:58 +02:00
Agent X
4c093ea859
Fix UNUSED keyword in smlua function autogen (#1273)
Some checks are pending
Build coop / build-macos-intel (push) Waiting to run
Build coop / build-linux (push) Waiting to run
Build coop / build-steamos (push) Waiting to run
Build coop / build-windows (push) Waiting to run
Build coop / build-macos-arm (push) Waiting to run
2026-05-26 19:00:58 +02:00
Isaac0-dev
fd67cacdd7 fix djui coords being snapped to the wrong pixels
Some checks are pending
Build coop / build-macos-intel (push) Waiting to run
Build coop / build-linux (push) Waiting to run
Build coop / build-steamos (push) Waiting to run
Build coop / build-windows (push) Waiting to run
Build coop / build-macos-arm (push) Waiting to run
By checking if the coordinates are from djui.
2026-05-26 13:06:10 +10:00
PeachyPeach
69b6728238
Add value to djui sliders (#1271)
Some checks are pending
Build coop / build-macos-intel (push) Waiting to run
Build coop / build-linux (push) Waiting to run
Build coop / build-steamos (push) Waiting to run
Build coop / build-windows (push) Waiting to run
Build coop / build-macos-arm (push) Waiting to run
2026-05-26 10:18:57 +10:00
Agent X
943bbd29e2
Add get_current_play_mode() and get_delayed_warp_op() (#1270) 2026-05-25 19:31:02 -04:00
PeachyPeachSM64
97d3ac6638 guard unsafe mode behind dev mode 2026-05-26 00:43:42 +02:00
EmeraldLockdown
44779560f7
Fix dx11 compilation issues (#1268)
Some checks are pending
Build coop / build-macos-intel (push) Waiting to run
Build coop / build-linux (push) Waiting to run
Build coop / build-steamos (push) Waiting to run
Build coop / build-windows (push) Waiting to run
Build coop / build-macos-arm (push) Waiting to run
2026-05-25 10:54:29 -05:00
Agent X
8425d73d3e Compensate new mod/dynos panel button sizes for smaller resolutions 2026-05-25 10:42:56 -04:00
Blockyyy
94028254e5
Button to open the website, buttons to open mod/dynos folder (#1208)
new "Browse mods" button, which opens the website, this also adds an "open mods folder" button and a "open dynos folder" button
two new functions also have been created for this "open_folder" and "open_url"
2026-05-25 21:35:52 +10:00
Isaac0-dev
f39b7978b3 add a new flag as a precaution
Some checks are pending
Build coop / build-linux (push) Waiting to run
Build coop / build-steamos (push) Waiting to run
Build coop / build-windows (push) Waiting to run
Build coop / build-macos-arm (push) Waiting to run
Build coop / build-macos-intel (push) Waiting to run
to prevent people accidentally compiling unsafe code.
2026-05-25 19:14:11 +10:00
EmeraldLockdown
f7b9751976 resolve issue with chatbox theme not being reset on theme change 2026-05-24 23:26:52 -05:00
EmeraldLockdown
1513443fd5
Undo some "fixes" introduced in yoshi pr (#1265)
Some checks are pending
Build coop / build-macos-intel (push) Waiting to run
Build coop / build-linux (push) Waiting to run
Build coop / build-steamos (push) Waiting to run
Build coop / build-windows (push) Waiting to run
Build coop / build-macos-arm (push) Waiting to run
2026-05-25 10:40:42 +10:00
PeachyPeachSM64
cafab8e592 Fix player name color codes leaking into in-game console logs 2026-05-25 00:21:27 +02:00
EmeraldLockdown
a21bec878c
fix (#1264)
Some checks are pending
Build coop / build-linux (push) Waiting to run
Build coop / build-steamos (push) Waiting to run
Build coop / build-windows (push) Waiting to run
Build coop / build-macos-arm (push) Waiting to run
Build coop / build-macos-intel (push) Waiting to run
2026-05-24 15:28:19 +02:00
Agent X
3aae58949a Fix black frame between transitions
Some checks are pending
Build coop / build-macos-intel (push) Waiting to run
Build coop / build-linux (push) Waiting to run
Build coop / build-steamos (push) Waiting to run
Build coop / build-windows (push) Waiting to run
Build coop / build-macos-arm (push) Waiting to run
2026-05-23 21:52:54 -04:00
Agent X
8384b5d423 Revert this
Some checks are pending
Build coop / build-linux (push) Waiting to run
Build coop / build-steamos (push) Waiting to run
Build coop / build-windows (push) Waiting to run
Build coop / build-macos-arm (push) Waiting to run
Build coop / build-macos-intel (push) Waiting to run
2026-05-23 18:26:31 -04:00
Agent X
632c8324d2 Fix fullbright and smlua_to_boolean 2026-05-23 16:24:44 -04:00