Hacking Custom Nintendont System Menu Channels for Wii/vWii

pitipablo

Active Member
Newcomer
Joined
Jul 5, 2016
Messages
26
Trophies
0
Age
43
XP
50
Country
France
You're the king of wii !! I don't find the words to thank you :)))))

Is this file ready to work on sd or should i change some settings ?

Really sorry...i'm a noob...
 

ned

Well-Known Member
Member
Joined
Dec 21, 2014
Messages
591
Trophies
0
Age
38
XP
221
Country
Hello,

Ok for 382, i will try :)

But what need i to change in main.c to output nintendont in 1280x720p ?

Could you reupload a quadforce channel for f-zero ax : Version 5: Download (UFAX) (it's a dropbox suspended account...) ?

Thank you.

Nothing as I said the highest resolution it can render is 720x1152 interlaced the progressive equivilant being 720x576, don't confuse horizontal resolution with vertical, just because it says 720 doesn't make it 720p, 720 horizontal is the 16:9 dvd standard and 704 is 4:3 irc
 

pitipablo

Active Member
Newcomer
Joined
Jul 5, 2016
Messages
26
Trophies
0
Age
43
XP
50
Country
France
AbdallahTerro,

Just a last favor. Please, upload sources of v3.387

3.382 is missing lot of options...

Thank you !=
 

pitipablo

Active Member
Newcomer
Joined
Jul 5, 2016
Messages
26
Trophies
0
Age
43
XP
50
Country
France
Ned,

Thank you for your help.

I joined a nintendon-t screen with all the options i want to activate in the nintendont autoboot version.

I shall edit main.c file but i don't know which lines of this file i need to edit for activate them like on the photo.

Without video width on 720, i'm not on full screen but with borders at the left and the right.

Thank you :)
 

Attachments

  • Nintendont.jpg
    Nintendont.jpg
    129.3 KB · Views: 208

AbdallahTerro

da KiNG
OP
Member
Joined
Jan 14, 2012
Messages
6,052
Trophies
0
Location
Ideas factory :)
Website
ccabz.wordpress.com
XP
3,123
Country
Ned,

Thank you for your help.

I joined a nintendon-t screen with all the options i want to activate in the nintendont autoboot version.

I shall edit main.c file but i don't know which lines of this file i need to edit for activate them like on the photo.

Without video width on 720, i'm not on full screen but with borders at the left and the right.

Thank you :)
you need to change 4 options as per the screenshot you posted:
Force progressive, Force Widescreen, Native Controls (using GC controller on wii with GC ports), and finally video width, in addition to the gamepath and gameid ofc.
I'll make these options set when I upload 387 later
 

AbdallahTerro

da KiNG
OP
Member
Joined
Jan 14, 2012
Messages
6,052
Trophies
0
Location
Ideas factory :)
Website
ccabz.wordpress.com
XP
3,123
Country
I can't do nothing to help except thzn you again.

Thank you, thank you, thank you....:)
based on official nintendont - got it from git
http://www.mediafire.com/download/lc4akwvutyoxi0k/Nintendont-387-autoboot.7z
I made all the options you want as default

only thing left is change the ID and path in these lines

ncfg->GameID=0x47414645;//GAFE
strcpy(ncfg->GamePath,"/Games/GAFE01 - Animal Crossing/game.iso");

and load build.bat

the loader.dol will go into the wad and all should work fine
 
Last edited by AbdallahTerro,

pitipablo

Active Member
Newcomer
Joined
Jul 5, 2016
Messages
26
Trophies
0
Age
43
XP
50
Country
France
Hello,

It's me again...

I do what you advise, but :
- wavebirds are not recognised
- full screen is not working. I have black borders in each side. Not like the nintendont i use..

Please, i don't know what to do...

Thank you :)
 

AbdallahTerro

da KiNG
OP
Member
Joined
Jan 14, 2012
Messages
6,052
Trophies
0
Location
Ideas factory :)
Website
ccabz.wordpress.com
XP
3,123
Country
Hello,

It's me again...

I do what you advise, but :
- wavebirds are not recognised
- full screen is not working. I have black borders in each side. Not like the nintendont i use..

Please, i don't know what to do...

Thank you :)
take a screenshot
and compile after commenting the native ctrl (add // before this line)
 

pitipablo

Active Member
Newcomer
Joined
Jul 5, 2016
Messages
26
Trophies
0
Age
43
XP
50
Country
France
Hello AT,

After some test, i can say that with this version :
- wavebirds are not working even after commenting the native ctrl
- autoboot is applying 640x480 resolution, not 720.

Could you send me the original dol of v3.387 to try without any patch, please ?

Thank you for all :)
 

AbdallahTerro

da KiNG
OP
Member
Joined
Jan 14, 2012
Messages
6,052
Trophies
0
Location
Ideas factory :)
Website
ccabz.wordpress.com
XP
3,123
Country
IN LOADER/SOURCE/MENU.C
Code:
void ReconfigVideo(GXRModeObj *vidmode)
{
   if(ncfg->VideoScale >= 40 && ncfg->VideoScale <= 120)
     vidmode->viWidth = ncfg->VideoScale + 600;
   else
     vidmode->viWidth = 640;
   vidmode->viXOrigin = (720 - vidmode->viWidth) / 2;

   if(ncfg->VideoOffset >= -20 && ncfg->VideoOffset <= 20)
   {
     if((vidmode->viXOrigin + ncfg->VideoOffset) < 0)
       vidmode->viXOrigin = 0;
     else if((vidmode->viXOrigin + ncfg->VideoOffset) > 80)
       vidmode->viXOrigin = 80;
     else
       vidmode->viXOrigin += ncfg->VideoOffset;
   }
   VIDEO_Configure(vidmode);
}
Change the if function to look like this
Code:
void ReconfigVideo(GXRModeObj *vidmode)
{
   vidmode->viWidth = 720;
   vidmode->viXOrigin = 0;
   VIDEO_Configure(vidmode);
}
so that you get 720 width all the time
 
Last edited by AbdallahTerro,

pitipablo

Active Member
Newcomer
Joined
Jul 5, 2016
Messages
26
Trophies
0
Age
43
XP
50
Country
France
Hi AT,

Thank you for you big help.

I just found how to use wavebirds : put it on just after launching nintendont (autoboot or channel) not before, not with the wii. V3.387 is working fine.

For 720 width, i just tried, it's not working...

Any other idea ?

Thank you very much.
 

pitipablo

Active Member
Newcomer
Joined
Jul 5, 2016
Messages
26
Trophies
0
Age
43
XP
50
Country
France
Hi,

How do i test ?

- I recompile the dol
- use hbc to test it (like a classic app)

I'll do the wad channel when the dol will be ok.
 

Site & Scene News

Popular threads in this forum

General chit-chat
Help Users
  • No one is chatting at the moment.
    K3Nv2 @ K3Nv2: https://youtu.be/shdHKa4iBbE?si=Vnb_FMMV54y2aarW lol Mario give me cancer