Sonic Mania for Wii

godreborn

Welcome to the Machine
OP
Member
Joined
Oct 10, 2009
Messages
38,471
Trophies
3
XP
29,180
Country
United States
The sonic mania modding gamebanana feild?
https://gamebanana.com/mods/games/6045?_nPage=3

btw, I tested that new build with cmake. there are some really weird issues with dolphin, which the dev showed images of, before I compiled it. it has a purpling effect that I read from another dev is caused by the gpu code of dolphin itself. works fine on the wiiu/wii.
 
  • Like
Reactions: SaulFabre

SaulFabre

I like Yoshis and the Wii/Wii U scene.
Member
Joined
Feb 6, 2019
Messages
3,197
Trophies
2
Age
25
Location
Ecuador
Website
saulfabreg-wiivc.blogspot.com
XP
7,892
Country
Ecuador
https://gamebanana.com/mods/games/6045?_nPage=3

btw, I tested that new build with cmake. there are some really weird issues with dolphin, which the dev showed images of, before I compiled it. it has a purpling effect that I read from another dev is caused by the gpu code of dolphin itself. works fine on the wiiu/wii.
wait, Sonic Mania on Wii now has support for MODS?!
 

godreborn

Welcome to the Machine
OP
Member
Joined
Oct 10, 2009
Messages
38,471
Trophies
3
XP
29,180
Country
United States
fyi, how to compile this now is to git clone the base repo, go into dependencies, git clone the rsdkv5 repo (remember to name it this). then, back out with cd .. to the base repo again. type this: cmake -H. -Bbuild-wii -DGAME_STATIC=ON -DCMAKE_TOOLCHAIN_FILE=/opt/devkitpro/cmake/Wii.cmake I figured out the command, but I don't know if the static on is even needed. I don't think it will hurt it. after that, I think it's just make. it will know to make the wii version. it takes a bit of time at 5%, but it really doesn't take that long. all together. -j or -j$(nproc) in linux might make it go much faster. however, not all things like this. I know ps2 stuff at least sometimes errors if you try to run it with all cores.
Post automatically merged:

the dol will be in build-wii/dependencies/RSDKv5 you can rename that -Bbuild-wii to something else if you wish, just keep -B
 
Last edited by godreborn,

ChiefReginod

Well-Known Member
Member
Joined
Jun 11, 2016
Messages
696
Trophies
0
Location
California
XP
2,516
Country
United States
Latest build of Sonic Mania Plus as of March 28, 2023 :)

With latest commits of:
Mefiresu's RSDKv5 Decompilation for Wii until git 9dc306f
Rubberduckycooly's Sonic Mania Decompilation until git 4ef5437

This still require the Data.rsdk of the game (with the Plus DLC purchased or enabled) to be at root:/RSDKv5/Data.rsdk

Please test this build, thanks ;)
Post automatically merged:


Agreed. I prefer playing the classic Sonic games with Genesis Plus GX.
Thank you so much for posting this! I was having a heck of a time getting anything else to work. I even tried compiling it myself to no avail, but this one booted up straight away.

sonic.jpg


This is a really bad picture, but it actually looks beautiful on my CRT TV in person. It has to be seen to be believed. Feels like a legitimate classic Sonic. :D

waterfall.jpg


Although the waterfalls leave something to be desired... Probably because it was designed for HD screens this time and used actual transparencies. But now I'm wondering if there are any mods to give it the classic look on a CRT for those of us who take their Sonic waterfalls seriously.
 

godreborn

Welcome to the Machine
OP
Member
Joined
Oct 10, 2009
Messages
38,471
Trophies
3
XP
29,180
Country
United States
Thank you so much for posting this! I was having a heck of a time getting anything else to work. I even tried compiling it myself to no avail, but this one booted up straight away.

View attachment 366727

This is a really bad picture, but it actually looks beautiful on my CRT TV in person. It has to be seen to be believed. Feels like a legitimate classic Sonic. :D

View attachment 366728

Although the waterfalls leave something to be desired... Probably because it was designed for HD screens this time and used actual transparencies. But now I'm wondering if there are any mods to give it the classic look on a CRT for those of us who take their Sonic waterfalls seriously.
It no longer compiles with make. I think these repos need to move to cmake, because the base repo has. The wii version has already, and the dev for the 3ds version is going to see if he can look at the cmake files later tonight to update that one. I believe that's the reason an older version of the base repo was required for both.
 
  • Like
Reactions: SaulFabre

ChiefReginod

Well-Known Member
Member
Joined
Jun 11, 2016
Messages
696
Trophies
0
Location
California
XP
2,516
Country
United States
I figured out how to get mods working. Here's an example with the No Special Stage Decorations mod, which helps to speed up the special stages.

Folder structure:
sd:\RSDKv5\mods\modconfig.ini
sd:\RSDKv5\mods\NoSSDecorations\*

You'll need to manually create the modconfig.ini file. It's just a text file with "y" or "n" values to enable or disable each mod, which should match your mod folder names. So in this case it would have this text:

[Mods] NoSSDecorations=y

Note that the "[Mods]" text at the start of the file is necessary for it to work.

It no longer compiles with make. I think these repos need to move to cmake, because the base repo has. The wii version has already, and the dev for the 3ds version is going to see if he can look at the cmake files later tonight to update that one. I believe that's the reason an older version of the base repo was required for both.

I actually got it to compile with the script in this thread, with the only issue being that I had to copy GameMain.h into the RSDKv5 folder after cloning and run it again. I compiled it a handful of times thinking that it wasn't working, but it turned out I just had my Data.rsdk in the wrong place. Such a noob mistake. :lol:
 

godreborn

Welcome to the Machine
OP
Member
Joined
Oct 10, 2009
Messages
38,471
Trophies
3
XP
29,180
Country
United States
I figured out how to get mods working. Here's an example with the No Special Stage Decorations mod, which helps to speed up the special stages.

Folder structure:
sd:\RSDKv5\mods\modconfig.ini
sd:\RSDKv5\mods\NoSSDecorations\*

You'll need to manually create the modconfig.ini file. It's just a text file with "y" or "n" values to enable or disable each mod, which should match your mod folder names. So in this case it would have this text:

[Mods] NoSSDecorations=y

Note that the "[Mods]" text at the start of the file is necessary for it to work.



I actually got it to compile with the script in this thread, with the only issue being that I had to copy GameMain.h into the RSDKv5 folder after cloning and run it again. I compiled it a handful of times thinking that it wasn't working, but it turned out I just had my Data.rsdk in the wrong place. Such a noob mistake. :lol:
I believe GameMain.h is a new file, so older versions of the repo do not have it. I'm surprised that worked honestly. I didn't look at the script, but you can add a git checkout commit to it in order to download a specific version of the repo if the current one fails.
 
  • Like
Reactions: SaulFabre

niuus

Well-Known Member
Member
Joined
Mar 4, 2016
Messages
2,023
Trophies
1
XP
4,458
Country
Venezuela
wait, Sonic Mania on Wii now has support for MODS?!
What?! LOL. Support for mods on the Wii has been there since a long time ago. The mods folder is key, as briefly explained some posts above. I've been using some essential mods for the best Mania experience, I think ever since the first version as I just moved from Wii U.

All the Mania ports use the same structure, as it was intended. I even exchange my files to the Wii port, then PC port, and Wii U port, all the time. Save and mods. If you already ran Mods on other ports, you're already there.

I freaking love these teams of people decompiling games and making console/PC ports of them, it's just so awesome playing these games on different platforms.
Decomps have been one of the best things for the scene lately. Just thinking about Perfect Dark, Zelda and Mario 64 classics running natively on the Wii, is a lot of fun.
 

ChiefReginod

Well-Known Member
Member
Joined
Jun 11, 2016
Messages
696
Trophies
0
Location
California
XP
2,516
Country
United States
Has anyone managed to access the Dev Menu at all?

I added "devMenu=y" to Settings.ini and tried all buttons on both a Wiimote (with nunchuck) and a Pro Controller but nothing worked.
Post automatically merged:

Alright, to enable the Dev Menu you have to add this to the [Game] section of Settings.ini:
devMenu=y

And change this:
enableControllerDebugging=n

To this:
enableControllerDebugging=y

Now you can access it in-game with the "-" minus button.

This also makes it so that you don't need to manually create the modconfig.ini file. Just put your mod folders in the "mods" subfolder and enable or disable them via the Dev Menu. It will automatically create the file.
 
Last edited by ChiefReginod,

luizal

Member
Newcomer
Joined
Dec 5, 2022
Messages
7
Trophies
0
Age
23
XP
61
Country
Brazil
I figured out how to get mods working. Here's an example with the No Special Stage Decorations[/URL] mod, which helps to speed up the special stages.

Folder structure:
sd:\RSDKv5\mods\modconfig.ini
sd:\RSDKv5\mods\NoSSDecorations\*

You'll need to manually create the modconfig.ini file. It's just a text file with "y" or "n" values to enable or disable each mod, which should match your mod folder names. So in this case it would have this text:

[Mods] NoSSDecorations=y

Note that the "[Mods]" text at the start of the file is necessary for it to work.

Would you be so kind as to share the files?
I tried to do it myself and it didn't work.
Thanks for any help you can give.
 

luizal

Member
Newcomer
Joined
Dec 5, 2022
Messages
7
Trophies
0
Age
23
XP
61
Country
Brazil
It's in the post above yours.

I'm sorry. The post was for the guy, the mod to improve the performance of the special stage. I was having trouble quoting him because of a link in his post.

And already taking advantage of this post, what is this .dol file that you are sharing with us used for? Is it a Sonic .dol update?
 

godreborn

Welcome to the Machine
OP
Member
Joined
Oct 10, 2009
Messages
38,471
Trophies
3
XP
29,180
Country
United States
I'm sorry. The post was for the guy, the mod to improve the performance of the special stage. I was having trouble quoting him because of a link in his post.

And already taking advantage of this post, what is this .dol file that you are sharing with us used for? Is it a Sonic .dol update?
It's the game minus the assets.
 

Site & Scene News

Popular threads in this forum

General chit-chat
Help Users
  • BigOnYa @ BigOnYa:
    So a man, wifey laying in bed, and man wants sum and rubs on her a little, she turns and says "Not tonight, I have a gyno apt in the morning." So man rolls over, but after few minutes starts rubbing her again. She says didn't you here me, no messing around, I have a gyno apt tomorrow. " Man says, "Well you don't have a dentist apt tomorrow also do you?"
  • BigOnYa @ BigOnYa:
    Damn I have 8 modded rgh3 x360 slims I've done, I need to get rid of, I figured my family members or friends would want but times have changed. Think I'm gonna stop buying them and modding. Time to Switch it up (pun intended)
  • K3Nv2 @ K3Nv2:
    Yay power outages
  • K3Nv2 @ K3Nv2:
    @BigOnYa, I'm your friend
    +1
  • BigOnYa @ BigOnYa:
    There literally no storms in your area, does it go out alot? You need to just send me your slim n ill rgh3 it free.
  • BigOnYa @ BigOnYa:
    Or grow sum balls and do it yourself, not hard. More of a pain to jailbreak a ps4 than it is the 360, other than little soldering.
  • K3Nv2 @ K3Nv2:
    Problem is my dick gets in the way
  • BigOnYa @ BigOnYa:
    Yea true, would be a pain having that on your forehead
  • K3Nv2 @ K3Nv2:
    The chicks love it
    +1
  • K3Nv2 @ K3Nv2:
    Every damn time there's a loud noise dudes car alarm goes off freaking annoying
  • BigOnYa @ BigOnYa:
    Stun gun the metal of the car (door, bumper, etc), you won't hear it again, promise.
  • realtimesave @ realtimesave:
    damn accidentally ripped my car cover just now
  • realtimesave @ realtimesave:
    happens
  • K3Nv2 @ K3Nv2:
    Or plant drugs get him evicted
  • realtimesave @ realtimesave:
    the one on my other car is all ripped up
  • K3Nv2 @ K3Nv2:
    Not your $400 car cover :ohnoes:
  • BigOnYa @ BigOnYa:
    There you go, thinking with your "dickhead"
  • realtimesave @ realtimesave:
    some day the wind will blow so hard it'll rip in half
  • K3Nv2 @ K3Nv2:
    I think in big inches
    +1
  • BigOnYa @ BigOnYa:
    @realtimesave Can you sew it back together? Or is it not worth trying.
  • realtimesave @ realtimesave:
    nah sewing it will make it come apart more :)
  • realtimesave @ realtimesave:
    that one is pretty old
  • realtimesave @ realtimesave:
    the one on my mercedes is a couple years old. these things don't last very long at all
    +1
    realtimesave @ realtimesave: the one on my mercedes is a couple years old. these things don't last very long at all +1