Search found 12 matches

by Pavel5750cz
Thu Apr 25, 2024 7:45 pm
Forum: Gamecube/Wii Development
Topic: Makefile for Linux Kubuntu(Ubuntu)
Replies: 2
Views: 391

Re: Makefile for Linux Kubuntu(Ubuntu)

Problem was: some. source files had space in name like: Hello World.cpp(this is just example, not actual file in my project) Solution: Rename file/s or move it/them from source folder or delete. Example makefile works ok Linuxers(devkit installation and setup link i provided already in other post), ...
by Pavel5750cz
Thu Apr 25, 2024 4:37 pm
Forum: Gamecube/Wii Development
Topic: Makefile for Linux Kubuntu(Ubuntu)
Replies: 2
Views: 391

Re: Makefile for Linux Kubuntu(Ubuntu)

After long time on wii developmengt i see clue to error i got and the error is: powerpc-eabi-g++: error: -E or -x required when input is from standard input clue story: i searched the error and i found solution for same error when it happened with gcc to someone. https://stackoverflow.com/questions/...
by Pavel5750cz
Sun Apr 07, 2024 7:49 pm
Forum: Gamecube/Wii Development
Topic: Makefile for Linux Kubuntu(Ubuntu)
Replies: 2
Views: 391

Makefile for Linux Kubuntu(Ubuntu)

the makefile from examples/template gives his error: linking ... Hra_Wii.elf powerpc-eabi-g++: error: -E or -x required when input is from standard input make[1]: *** [/opt/devkitpro/devkitPPC/wii_rules:31: /home/pavel/Documents/Hra_Wii/Hra_Wii.elf] Error 1 make: *** [Makefile:101: build] Error 2 #-...
by Pavel5750cz
Sun Mar 24, 2024 10:57 am
Forum: Gamecube/Wii Development
Topic: Beginner Setup
Replies: 6
Views: 2099

Re: Beginner Setup

After long time i am back here. previous makefile was minimal from chatGPT and now makefile that works looks like this from windows: #--------------------------------------------------------------------------------- # Clear the implicit built in rules #-----------------------------------------------...
by Pavel5750cz
Sat Dec 30, 2023 7:50 am
Forum: Gamecube/Wii Development
Topic: How force aspect ratio from code?
Replies: 1
Views: 12720

Re: How force aspect ratio from code?

I am new but i am sure rmode allows it somehow, or you may draw game in square instead of rectangle as another aproach. Tv gotta also support it.
by Pavel5750cz
Fri Dec 29, 2023 10:19 pm
Forum: Gamecube/Wii Development
Topic: Wiimote Features Usage
Replies: 0
Views: 2021

Wiimote Features Usage

I suck find how to use these features which I need help(I am begginer with libogc): 1. Play from wiimote speaker some audio 2. Read/Write to wiimote memory(only Mii channel i know uses it) 3. Change Wii Remote Light(Turn ON/OFF one of 4 lights or have them all ON/OFF) 4. Use Eject and set Wii Light ...
by Pavel5750cz
Fri Dec 29, 2023 10:01 pm
Forum: Gamecube/Wii Development
Topic: How to use wiimote's Power button?
Replies: 3
Views: 1310

Re: How to use wiimote's Power button?

I cannot use reset button according to Developer Tips because it is not void but something else and it gives error so i have it comented
by Pavel5750cz
Thu Dec 28, 2023 1:09 pm
Forum: Gamecube/Wii Development
Topic: How to use wiimote's Power button?
Replies: 3
Views: 1310

Re: How to use wiimote's Power button?

Thank you i later found Developer tips on wiibrew and tried to get it working there. I have it with no errors but doesnt work. I understand them as functions onResume and onPause(and lot other) on android(I am crossplatform developer who has lot of android Java experience but loves C++ more). I will...
by Pavel5750cz
Wed Dec 27, 2023 4:32 pm
Forum: Gamecube/Wii Development
Topic: How to use wiimote's Power button?
Replies: 3
Views: 1310

How to use wiimote's Power button?

Wiiuse does not seem to have enumerator on Power Button but i found some on lights. I would like to use Wii console's POWER,RESET and EJECT button events and chamge Wii and Wii remote light(lights up elsewhere), use wiimote memory and speaker. How to do it? I may try dig in libogc but I got to do ot...
by Pavel5750cz
Wed Dec 27, 2023 4:12 pm
Forum: Gamecube/Wii Development
Topic: Beginner Setup
Replies: 6
Views: 2099

Re: Begginner Setup

When i get more experienced, i would like to also help others. Now here is error your makefile in template for wii gives from devkitpro/examples/template/wii. (Some time later i got on pc and then i finish message): Surprisingly it works but it gotta in specific folder i tried to just use the single...