Homebrew Official [Release] Snake WiiU (5.5.x / 5.3.2)

eliboa

Well-Known Member
OP
Member
Joined
Jan 13, 2016
Messages
157
Trophies
0
XP
1,257
Country
France
It's one of the best selling games of all time I think, but simplest controls, if that helps figure it out. :D

Tetris maybe ???
I wish I knew the random generator code of the Wii U, can't even find it in certain docs, but I'll have to implement some psuedo generator to finish it.
Yeah I had a hard time with this. You can use a pseudo generator function if you don't care about repetitions (at each lauching).
Maybe you can manage something by using the time function :
Code:
    int64_t (*OSGetTime)();
    OSDynLoad_FindExport(coreinit_handle, 0, "OSGetTime", &OSGetTime);
 
Last edited by eliboa,

chrisf4lc0n

Member
Newcomer
Joined
Jan 12, 2016
Messages
19
Trophies
0
Age
40
Location
London (Hayes)
XP
78
Country
Will get all the wiiubrew together create some simple index.html page and host it all together 2morrow :D

Could not host it earlier, as I did not have the Wii U, just bought it today... unfortunately on 5.5 :(
Gotta wait for IOSU Exploit :(
 
Last edited by chrisf4lc0n,

brienj

Trying to avoid getting cancer
Member
Joined
Jan 3, 2016
Messages
1,232
Trophies
0
Website
twitter.com
XP
2,142
Country
United States
Tetris maybe ???
Maybe ... ;)
Yeah I had a hard time with this. You can use a pseudo generator function if you don't care about repetitions (at each lauching).
Maybe you can manage something by using the time function :
Code:
    int64_t (*OSGetTime)();
    OSDynLoad_FindExport(coreinit_handle, 0, "OSGetTime", &OSGetTime);
Yeah, I found the time function, I was going to make a random number generator using that, since it's the best for seeding a random number.
 

eliboa

Well-Known Member
OP
Member
Joined
Jan 13, 2016
Messages
157
Trophies
0
XP
1,257
Country
France
Maybe ... ;)
Hahah ! This could be a challenge. You may have to rack your brain a littlle with draw functions (so slow in libwiiu). I'm sure we can do something nice with GX2 API but i know pretty much nothing about it. Good luck anyway ! :yay:
 

brienj

Trying to avoid getting cancer
Member
Joined
Jan 3, 2016
Messages
1,232
Trophies
0
Website
twitter.com
XP
2,142
Country
United States
Hahah ! This could be a challenge. You may have to rack your brain a littlle with draw functions (so slow in libwiiu). I'm sure we can do something nice with GX2 API but i know pretty much nothing about it. Good luck anyway ! :yay:
I started programming on the C64, so I know how to work with the minimal amount, and it's kind of funny that I complain about 32k nowadays. Speaking of which, the thought of having Frodo or VICE ported to the Wii U is kind of exciting.
 
  • Like
Reactions: eliboa

chrisf4lc0n

Member
Newcomer
Joined
Jan 12, 2016
Messages
19
Trophies
0
Age
40
Location
London (Hayes)
XP
78
Country
I started programming on the C64, so I know how to work with the minimal amount, and it's kind of funny that I complain about 32k nowadays. Speaking of which, the thought of having Frodo or VICE ported to the Wii U is kind of exciting.
Same here... C64's BASIC was my thing and to be honest I have left it there, never really came back to programming :( Tried a bit of Python, but nothing major...
Good Luck :D
 

ryuutseku85

Well-Known Member
Member
Joined
Dec 14, 2015
Messages
110
Trophies
0
Age
38
XP
406
Country
France
hi , i have a stupid question , but "a question is stupid until it's isn't ask "(thanks Math teacher ^^)
so i am new to C and i can figure where i have to put the wii u lib file on my pc to test it , i mean those one
Code:
#include "../../../../../../../devkitPro/libwiiu/src/coreinit.h"
#include "../../../../../../../devkitPro/libwiiu/src/vpad.h"
#include "../../../../../../../devkitPro/libwiiu/src/draw.h"

i have made a game that i want to play on the wiiu but first i want to know and test it on my computer (if i can)

thank
 

eliboa

Well-Known Member
OP
Member
Joined
Jan 13, 2016
Messages
157
Trophies
0
XP
1,257
Country
France
hi , i have a stupid question , but "a question is stupid until it's isn't ask "(thanks Math teacher ^^)
so i am new to C and i can figure where i have to put the wii u lib file on my pc to test it , i mean those one
Code:
#include "../../../../../../../devkitPro/libwiiu/src/coreinit.h"
#include "../../../../../../../devkitPro/libwiiu/src/vpad.h"
#include "../../../../../../../devkitPro/libwiiu/src/draw.h"

i have made a game that i want to play on the wiiu but first i want to know and test it on my computer (if i can)

Hello fellow countryman. You can put the libwiiu files anywhere you want but it's better if you put them in the devkitPro folder.
For example, if these are the paths to your loader.c (for example) and libwiiu folder:
C:/wiiu/my_homebrew/src/loader.c
C:/devkitPro/libwiiu/
Then you have to put these includes (relative path) in loader.h :
Code:
#include "../../../devkitPro/libwiiu/src/coreinit.h"
#include "../../../devkitPro/libwiiu/src/vpad.h"
#include "../../../devkitPro/libwiiu/src/draw.h"
Now, I don't think you can test your compiled program on your computer (we would need an emulator to do that I guess), you have to test it on the wiiu.

I wish I could create a homebrew game too. I'm interested.
But I don't know where to start at all, not even a bit.
You can check this thread posted by Josamilu,you'll find everything you need.
 

geheim

Well-Known Member
Member
Joined
Jan 4, 2013
Messages
272
Trophies
0
XP
1,256
Country
Germany
Tried the 532 Version with my 5.4.0 Wii U, but it crashes at the media player. Could a 5.4.0 Version be made as well?? Would really like to play this old classic on my gamepad ;) Thanks for your work!
 
  • Like
Reactions: memomo

wurstpistole

GBAtemp MVP
Member
Joined
Nov 19, 2015
Messages
4,660
Trophies
1
XP
5,440
Country
United Kingdom
It's one of the best selling games of all time I think, but simplest controls, if that helps figure it out. :D

I wish I knew the random generator code of the Wii U, can't even find it in certain docs, but I'll have to implement some psuedo generator to finish it.
Tetris
 

Site & Scene News

Popular threads in this forum

General chit-chat
Help Users
  • BakerMan
    I rather enjoy a life of taking it easy. I haven't reached that life yet though.
  • BigOnYa @ BigOnYa:
    I don't trust the free ones, but ipvanish I've used for couple years now, n like
  • Psionic Roshambo @ Psionic Roshambo:
    I wonder if they could get CPUs to run that hot then use the heat to power a steam turbine to power the CPUs....
  • BigOnYa @ BigOnYa:
    Good idea, or at least power the GPU
  • Psionic Roshambo @ Psionic Roshambo:
    It's not the movies or games downloads that I would worry about, like breaking into networks, downloading encrypted things, spying on network traffic. I have seen so many "Top Secret" seals on files when I was a kid
  • Psionic Roshambo @ Psionic Roshambo:
    I was obsessed with finding UFOs, a surprising amount of US files where stashed on computers in other countries, China back in the early 90s omg sooo much
  • BigOnYa @ BigOnYa:
    Yea that crazy, I've never tried hack into anything, I just pirate, and my ISP have send me 3-4 letters, so had to VPN it
  • Psionic Roshambo @ Psionic Roshambo:
    Ship to ship communication software for the Navy although without access to the encrypting chips it was mostly useless
  • Psionic Roshambo @ Psionic Roshambo:
    I bet now a 4090 could probably crack it? Hmmm maybe not even back then I'm pretty sure they where using like 1024 bit encryption
  • Psionic Roshambo @ Psionic Roshambo:
    Yayyy the one set finished 324GBs lol
  • Psionic Roshambo @ Psionic Roshambo:
    Compressed....
  • Psionic Roshambo @ Psionic Roshambo:
    I wonder how many years that would have taken on a 56K modem lol
  • Psionic Roshambo @ Psionic Roshambo:
    18000 hours lol
  • Psionic Roshambo @ Psionic Roshambo:
    750 days lol
    +1
  • Psionic Roshambo @ Psionic Roshambo:
    So Internet is very much faster now lol
  • BigOnYa @ BigOnYa:
    "Time Remaining- 2 years, 9 girlfriends, 6 hairstyles, please standby..."
    +1
  • Psionic Roshambo @ Psionic Roshambo:
    I remember one time I downloaded like a 500MB ISO file on 56K and that literally took like 2 days
  • Psionic Roshambo @ Psionic Roshambo:
    I had some sort of resume thing, I remember the software had chains
  • Psionic Roshambo @ Psionic Roshambo:
    Damned if I can't remember.the name though
  • Psionic Roshambo @ Psionic Roshambo:
    Some sort of download management app
  • BigOnYa @ BigOnYa:
    Ok good chatting, I'm off to the bar, to shoot some pool, nighty night.
    +1
  • BakerMan @ BakerMan:
    hey psi
  • BakerMan @ BakerMan:
    i call your girl lyndon the way she b on my johnson
    BakerMan @ BakerMan: i call your girl lyndon the way she b on my johnson