Commit graph

4229 commits

Author SHA1 Message Date
Gudine
c97f2dd033
Makes Character Select compatible with Personal Star Counter (#348) 2024-10-06 09:33:07 +10:00
xLuigiGamerx
49be9d159b
Allowed Dynos to use geo_mario_cap_display_list (#337)
* Allowed Dynos to use geo_mario_cap_display_list

* Fixed [CS] Extra Characters breaking voices in other CS mods
2024-09-24 10:04:50 +10:00
John S
7a9d690305
Update smlua_cobject_map.c (#336) 2024-09-23 14:20:40 +10:00
Rory Coughlan
9bb89067f2 Make patches work when using git submodules (#285) 2024-09-13 21:20:53 +10:00
Isaac0-dev
4aa2a20f72
fixes, clean up and some new features (#259)
- Only inited `smlua_audio_utils` if needed, since there will probably be plenty of people who play without ever using mods with custom audio.
- Fixed the pause anywhere setting - this ended up not being fully accurate to ex-coop, which it was originally intended to be.
- Stopped regenerating dynos collision bin on start up every time therefore giving a slight start up speed boost for some people.
- Added a config file setting that lets people choose to compress dynos bins on startup (disabled by default).
- Fixed a warning that shows on non macs during compiling.
- Properly fixed the chat box focus.
- Made the public lobby rules panel "temporary".
- Added a cleaner loading screen design.
- Added an ex-coop theme easter egg, can only be activated from the config file.
- Cleaned up the Lua traceback logging, now shows the folder and file the error occurred in, rather than the full path.
- Added a way to set `gCheckingSurfaceCollisionsForCamera`, so mods can specify to surface finding functions to ignore `SURFACE_FLAG_NO_CAM_COLLISION` internally.
- Rewrote the way smlua pushes CObjects/CPointers to Lua. Now using the C Lua API entirely to connect to Lua.
	- Fixed a use-after-free bug that could easily crash the game through Lua (explained further in one of my comments below).
- Fixed a common crash in `audio_sanity_check`.
2024-09-12 19:09:01 +10:00
EmeraldLockdown
c3d3f8545a
HOOK_ON_NAMETAGS_RENDER (#213) 2024-09-12 19:01:16 +10:00
AloXado320
6b4784d0ee
Fix sequences_offsets file reference (#314) 2024-09-10 07:57:47 -04:00
EmeraldLockdown
39e035239c
Add djui_attempting_to_open_playerlist (#195) 2024-09-06 17:08:22 -04:00
GhostlyDark
8636d26726
Fix incorrect skybox paths for DynOS builtin tex (#300) 2024-09-06 16:50:16 -04:00
Agent X
7fe3d281c6 Fix piranha plant bubble crash on ARM 2024-09-06 16:43:12 -04:00
Agent X
63ee843b60 Fix [CS] Extra Characters breaking other mods
Moment, I don't think there's anything else.
2024-09-05 19:27:31 -04:00
Agent X
8b723b8e85 Fix incorrect texture path in DynOS builtin textures 2024-09-04 17:26:27 -04:00
Essem
39aaed235b
Fix build on Linux (#295) 2024-09-02 17:00:03 -04:00
Agent X
4e01841693 . 2024-09-01 20:41:39 -04:00
ThePlayerRolo
b18af26c61
Fix Compiler Bug. (#289)
* Add files via upload

* Update djui_panel_mod_menu.c

* Update djui_panel_mod_menu.c
2024-09-01 20:40:55 -04:00
Agent X
9bd8b7f017 Fix FOV jank 2024-09-01 19:19:10 -04:00
Agent X
044413653e This is no longer needed 2024-09-01 19:02:58 -04:00
Agent X
a4ed5ddb53 v1.0.3 2024-09-01 19:00:38 -04:00
Agent X
dad54c3dd3 Fix socket warning text cutting off early 2024-09-01 19:00:04 -04:00
Agent X
e6edb61dfb Bump online version 2024-09-01 17:51:20 -04:00
Agent X
4a971580ea Update mod_storage.cpp 2024-09-01 16:09:47 -04:00
Agent X
d9512a392a Revert "Sanity check MSAA"
This reverts commit 627ea49c14.
2024-09-01 15:19:26 -04:00
Agent X
c94990f743 v1.0.2 2024-09-01 14:17:52 -04:00
Agent X
02be2d6f98 Merge branch 'main' into dev 2024-09-01 13:45:37 -04:00
Agent X
a084e5c62e Update Character Select 2024-09-01 13:44:55 -04:00
ThePlayerRolo
af509462a4
Add files via upload (#286) 2024-09-01 13:43:08 -04:00
EmeraldLockdown
af8dc6995d
Allow user to change music in menu (#212)
* Allow user to change music in menu

* Remove annoying newline

* Fully reset menu

* No need for sSoundBox

* Add music to castle grounds

* Add translations

* oops

* Why did that not save!!

* Update lang/Polish.ini

Co-authored-by: Radek Krzyśków <46760021+Flower35@users.noreply.github.com>

* Update lang/Czech.ini

Co-authored-by: Radek Krzyśków <46760021+Flower35@users.noreply.github.com>

* Update lang/Russian.ini

Co-authored-by: Radek Krzyśków <46760021+Flower35@users.noreply.github.com>

---------

Co-authored-by: Radek Krzyśków <46760021+Flower35@users.noreply.github.com>
2024-09-01 13:15:04 -04:00
roddy
db3a7e3483
Update sockets and structs for full IPv6 support (#198)
* Initial IPv6 support

The address struct was changed to use sockaddr_in6 instead of sockaddr_in. Resolving domains also uses getaddrinfo() instead of the deprecated gethostbyname(), and if the returned address is IPv4, transform it to an IPv6-mapped address to make it work with the AF_INET6 socket.

* Direct Connection input box behaviour change

This makes the Direct Connection input box accept all types of addresses. IPv4, IPv6 and hostnames are now supported. Direct IPv6 addresses must be enclosed in square brackets [IPv6]:port to be able to separate IP from port, otherwise it will be treated as an IPv4 address or hostname.

* sanity checks

This fixes a weird error while reconnecting when using direct IPv6 addresses. getaddrinfo() doesn't like square brackets on the host IP, so remove those when found.
This commit also fixes a problem where gGetHostName wasn't being properly set when connecting through a hostname.

* cleanup and bugfix

Small code cleanup removing some debugging comments. This also fixes a bug where initializing the game without the --join argument (which initializes network as NT_NONE) was still calling a piece of code where it was resolving a domain and copying an empty gGetHostName to configJoinIp, which made coop_join_ip be cleared on the config file.

* fix rare cases of binding errors

Due to some options in the sockaddr_in6 struct that doesn't need to be set, rare cases can happen that there will be some random data that will interfere with such values. This made binding randomly or persistently fail. This commit makes that before binding, make sure to fill the entire struct with 0 before setting it up.

* Translations for WARN_SOCKET

This provides translations for the new text when hosting a server. I cannot guarantee the accuracy of the translations, except English, Portuguese and German, where it was written by native speakers.

* Update socket_windows.c

yeah right. resolving conflicts and stuff.
2024-09-01 12:48:24 -04:00
Jordan Russell
de47af0461
Mumble Positional Audio Integration (#247)
* added shared memory for mumble integration
update mumble struct with player and camera data

* osx compile fixes

* renamed methods

* fixed inversed unit vectors

* made mumble camera position mario

* cleaned up spacing

* added separate context for main menu

* added checks to avoid improperly changing contexts
2024-09-01 12:45:43 -04:00
frog8412
186e25d72f
Fixed "RULES" text in Rules menu for Russian language (#262)
These kind of texts don't have cyrillic letters, so they display weirdly
2024-09-01 12:45:22 -04:00
Agent X
8fc8354124 Update built-in mods 2024-09-01 12:44:29 -04:00
Agent X
e73a95368c Make ending level be named "Ending" instead of "Peach's Castle" 2024-08-31 22:27:23 -04:00
Agent X
6e38084cf9 Make C buttons work for moving the first person player camera 2024-08-31 22:27:06 -04:00
Agent X
256539a925 Fix Mod Menu panel height bug 2024-08-31 22:26:33 -04:00
Agent X
a6d56efa33 WAAAOOOW when deleting save file 2024-07-22 12:44:25 -04:00
Agent X
7a9d32551c Sanity check FPS Display to prevent crash 2024-07-22 12:43:59 -04:00
Cooliokid956
c509dab0cf
Add rotation interpolation (#208)
* Interpolate rotation

* Autogen'd

* Resolution 1

* Resolution 2

* Resolution 3

* Resolution 4

* Fixed jitter at low angular velocities

More in the comment below
2024-07-21 18:58:38 -04:00
Blockyyy
1ac9ce8e4c
sequence_player_set_tempo, sequence_player_set_transposition (#224)
* Made Sequence function

* snake case
2024-07-21 18:56:18 -04:00
Mechstreme
73e9dd2c40
Fix bettercam zoom & pan level affecting main menu (#221) 2024-07-21 18:56:09 -04:00
Agent X
b78c438871 Merge branch 'main' into dev 2024-07-21 18:55:29 -04:00
JairoThePlumber
e4bdb1fb17
Fix Cheats Menu Mod Again (#238)
The Same Bug from Last Time is there but effects the first box instead, so I went to check and fixed what went wrong with the mod
2024-07-21 18:54:45 -04:00
Agent X
c9f07a8efc Whoops 2024-07-19 20:10:38 -04:00
Agent X
948f2bfe23 Small improvement to is_game_paused() 2024-07-19 12:09:05 -04:00
Agent X
627ea49c14 Sanity check MSAA 2024-07-18 14:42:53 -04:00
Agent X
5ba48c0329 Fix typos 2024-07-17 16:22:43 -04:00
Agent X
f0da60fa16 Update Character Select to v1.9.1 2024-07-17 16:05:09 -04:00
Agent X
c153162fa9 Disable demos for now, this whole main menu needs a rewrite 2024-07-17 16:05:09 -04:00
EmeraldLockdown
ba8d4b9c42
Enchantments for cross compiling intel on arm, and intel enchantments (#220) 2024-07-17 15:43:49 -04:00
Agent X
78d287406d DJUI interactable crash fix 2024-07-17 12:25:16 -04:00
Agent X
b015468728 Remove redundant checkbox 2024-07-17 12:10:12 -04:00