Hacking [Release] rxTools - Roxas75 3DS Toolkit [fw 2.0 - 9.2]

Status
Not open for further replies.

WhoAmI?

PASTA's dirty animal
Member
Joined
Mar 15, 2015
Messages
1,276
Trophies
0
Location
Poké Ball
Website
lavanoid.github.io
XP
1,279
Country
Default theme BINs are made during compile of source code (converted from the PNG files in theme folder. Don't attempt to use the PNG files. They have to be converted to BIN before you can use them with rxTools. The ones in my test build I linked to earlier are in the correct format. So just put them in rxTools/Theme/0 and it should work). Though I would hope they would provide the bat files for users to make new themes with once 3.0 is ready. :D

I had provided a .bat file, but they removed it and everything was integrated into a Makefile. I have a better version of the one that I gave them, originally. It checks if ImageMagick is installed and all that jazz. Not sure if the team/devs still want it.

I attached the file, for anyone who wants it. What you think?

Batch contents:

Code:
@echo off
REM This script was written by Lavanoid (WhoAmI?). Enjoy!
REM Yeah, I like my batch files to be fun and pretty :3

convert | findstr /C:"Miscellaneous" 1>nul
cls
if errorlevel 1 (
    color c
    @echo ERROR! ImageMagick, is NOT installed or isn't in the PATH variable!
    @echo http://www.imagemagick.org/script/binary-releases.php
    pause >nul
    goto :end
)
@echo Converting...
cd %~dp0
if not exist "UI\" mkdir UI
if not exist "UI\" (
    color c
    @echo Failed to create directory "UI".
    pause >nul
    goto :end
)
set i=0
Title = Converting images. Processed: %i%
for %%f in (*.png) do call :convertfile "%%f"
Title = Finished converting images. Processed: %i%
color a
@echo --------------------------------------------
@echo All files have been processed.
@echo.
@echo         Script written by Lavanoid (WhoAmI?)
@echo --------------------------------------------
@echo Press any key.
pause >nul
goto :end
:convertfile
set /a i=%i%+1
echo [%i%] File: %~nx1
echo [%i%] BIN/BGR: %~n1.bin
if exist "UI\%~n1.bin" (
    @echo [%i%] Removing "UI\%~n1.bin"...
    del /f "UI\%~n1.bin"
)
if exist "UI\%~n1.bin" (
    color c
    @echo [%i%] Failed to remove "UI\%~n1.bin"!
    pause >nul
    goto :end
)
convert -rotate 90 %~nx1 UI\%~n1.bgr
if exist "UI\%~n1.bgr" rename "UI\%~n1.bgr" "%~n1.bin"
if exist "UI\%~n1.bin" @echo [%i%] Successfully generated "UI\%~n1.bin"!
Title = Converting images. Processed: %i%
:end
 

Attachments

  • makebgr-all.zip
    756 bytes · Views: 109
Last edited by WhoAmI?, , Reason: Attached batch file.

Apache Thunder

I have cameras in your head!
Member
Joined
Oct 7, 2007
Messages
4,469
Trophies
3
Age
36
Location
Levelland, Texas
Website
www.mariopc.co.nr
XP
6,908
Country
United States
If you insist:

https://github.com/ApacheThunder/rxTools/releases/tag/3.0b

It's pre-release though and isn't the "official" build. Actual 3.0 will probably have n3DS support and they won't release 3.0 until they get that ironed out.

I nested the theme bin files in the 0 folder in theme folder. Just copy theme folder to rxTools directory on SD card.

This version does work on Ninjhax. They finally got the screen buffers fixed. (turns out there was an additional change to brahma code to get that working. Kinda wished I took a closer look at the brahma code yesterday. I was actually looking for references to bottom screen offset. Guess I didn't try hard enough. :P )
 
Last edited by Apache Thunder,

Spzjulien

Well-Known Member
Member
Joined
Sep 8, 2012
Messages
329
Trophies
1
XP
625
Country
France
i cant compile the last rxTools source ...

cfwtool - generating : TWL_FIRM
make[2]: Leaving directory `/c/Users/SPZJULIEN/Desktop/rxTools-master/rxmode/twl
_firm'
make[1]: Leaving directory `/c/Users/SPZJULIEN/Desktop/rxTools-master/rxmode'
make[1]: Entering directory `/c/Users/SPZJULIEN/Desktop/rxTools-master/CakeHax'
make[1]: *** No rule to make target `bigpayload'. Stop.
make[1]: Leaving directory `/c/Users/SPZJULIEN/Desktop/rxTools-master/CakeHax'
make: *** [rxTools.dat] Error 2


edit : i guess ist normal... :)
 
Last edited by Spzjulien,

nastys

Well-Known Member
Member
Joined
Aug 5, 2014
Messages
1,732
Trophies
1
Age
26
Location
Earth
XP
1,810
Country
Italy
I had provided a .bat file, but they removed it and everything was integrated into a Makefile. I have a better version of the one that I gave them, originally. It checks if ImageMagick is installed and all that jazz. Not sure if the team/devs still want it.

I attached the file, for anyone who wants it. What you think?

Batch contents:

Code:
@echo off
REM This script was written by Lavanoid (WhoAmI?). Enjoy!
REM Yeah, I like my batch files to be fun and pretty :3

convert | findstr /C:"Miscellaneous" 1>nul
cls
if errorlevel 1 (
    color c
    @echo ERROR! ImageMagick, is NOT installed or isn't in the PATH variable!
    @echo http://www.imagemagick.org/script/binary-releases.php
    pause >nul
    goto :end
)
@echo Converting...
cd %~dp0
if not exist "UI\" mkdir UI
if not exist "UI\" (
    color c
    @echo Failed to create directory "UI".
    pause >nul
    goto :end
)
set i=0
Title = Converting images. Processed: %i%
for %%f in (*.png) do call :convertfile "%%f"
Title = Finished converting images. Processed: %i%
color a
@echo --------------------------------------------
@echo All files have been processed.
@echo.
@echo         Script written by Lavanoid (WhoAmI?)
@echo --------------------------------------------
@echo Press any key.
pause >nul
goto :end
:convertfile
set /a i=%i%+1
echo [%i%] File: %~nx1
echo [%i%] BIN/BGR: %~n1.bin
if exist "UI\%~n1.bin" (
    @echo [%i%] Removing "UI\%~n1.bin"...
    del /f "UI\%~n1.bin"
)
if exist "UI\%~n1.bin" (
    color c
    @echo [%i%] Failed to remove "UI\%~n1.bin"!
    pause >nul
    goto :end
)
convert -rotate 90 %~nx1 UI\%~n1.bgr
if exist "UI\%~n1.bgr" rename "UI\%~n1.bgr" "%~n1.bin"
if exist "UI\%~n1.bin" @echo [%i%] Successfully generated "UI\%~n1.bin"!
Title = Converting images. Processed: %i%
:end
There is going to be an all-in-one script meant for theme creators, with all the features of Pasta's scripts.
 
  • Like
Reactions: WhoAmI?

chronoss

Well-Known Member
Member
Joined
May 26, 2015
Messages
3,010
Trophies
1
XP
4,917
Country
Congo, Republic of the
If you insist:

https://github.com/ApacheThunder/rxTools/releases/tag/3.0b

It's pre-release though and isn't the "official" build. Actual 3.0 will probably have n3DS support and they won't release 3.0 until they get that ironed out.

I nested the theme bin files in the 0 folder in theme folder. Just copy theme folder to rxTools directory on SD card.

This version does work on Ninjhax. They finally got the screen buffers fixed. (turns out there was an additional change to brahma code to get that working. Kinda wished I took a closer look at the brahma code yesterday. I was actually looking for references to bottom screen offset. Guess I didn't try hard enough. :P )
Thanks, i will test it
 

laharl22

Well-Known Member
Member
Joined
Dec 19, 2014
Messages
1,767
Trophies
0
Age
38
XP
615
Country
France
it say missing theme files edit i placed the 0 files on the theme folder dierctly but it boot automately on emunand how to acced on menu ?
 
Last edited by laharl22,

3xkrazy

Well-Known Member
Member
Joined
Jun 2, 2013
Messages
299
Trophies
0
XP
279
Country
United States
Will an "emunand formater" be integrated into rxTools at a later date? I think most users are still relying on gateway's launcher to accomplish that task.
 
  • Like
Reactions: kactusss

herocis23

Active Member
Newcomer
Joined
Jan 30, 2015
Messages
29
Trophies
0
Age
34
XP
98
Country
Netherlands
i cant compile the last rxTools source ...

cfwtool - generating : TWL_FIRM
make[2]: Leaving directory `/c/Users/SPZJULIEN/Desktop/rxTools-master/rxmode/twl
_firm'
make[1]: Leaving directory `/c/Users/SPZJULIEN/Desktop/rxTools-master/rxmode'
make[1]: Entering directory `/c/Users/SPZJULIEN/Desktop/rxTools-master/CakeHax'
make[1]: *** No rule to make target `bigpayload'. Stop.
make[1]: Leaving directory `/c/Users/SPZJULIEN/Desktop/rxTools-master/CakeHax'
make: *** [rxTools.dat] Error 2


edit : i guess ist normal... :)

I've got the same problem. How to fix this and what do you mean with "i guess ist normal..." in the edit?
 

laharl22

Well-Known Member
Member
Joined
Dec 19, 2014
Messages
1,767
Trophies
0
Age
38
XP
615
Country
France
When i press r it say theme files missing my folder of thème files are thème/0/ i have an old3ds with mset 4.
 

Spzjulien

Well-Known Member
Member
Joined
Sep 8, 2012
Messages
329
Trophies
1
XP
625
Country
France
I've got the same problem. How to fix this and what do you mean with "i guess ist normal..." in the edit?

bec i guess is not ready yet to compile a pre pre -0 beta version .... :P

--------------------- MERGED ---------------------------

When i press r it say theme files missing my folder of thème files are thème/0/ i have an old3ds with mset 4.

essaye de mettre theme dans le dossier rxTools a la racine
 

mustafag32g

Well-Known Member
Member
Joined
Jul 30, 2014
Messages
806
Trophies
0
Age
34
XP
2,331
Country
Argentina
Do anyone know why pokemon x and y freeze and return to home menu and then forcing 3ds to restart ? I installed many cia pokemon but all the same ?
 
Status
Not open for further replies.

Site & Scene News

Popular threads in this forum

General chit-chat
Help Users
    Psionic Roshambo @ Psionic Roshambo: @K3Nv2, That's when Victor invented the Rusty Trombone!