Post by Rinnegatamante on Jan 5, 2015 20:32:45 GMT 1
ORGANIZ3D is a filebrowser/multimedia reader for 3DS wrote with LUA Player Plus.
Sourcecode can be found in index.lua file.
Screenshots:
Video Presentation:
Current official release version: 0.6
Starting from v.0.5, ORGANIZ3D supports both SDMC and EXTDATA listing. EXTDATA files and folders can be opened with an HEX Viewer, dumped on SDMC and restored from SDMC).
Functions:
- Open different types of file
- Move files and directories
- Copy files and directories
- Delete files and directories
- Rename files and directories
Integrated readers:
- Image Viewer (It support BMP and PNG images)
- LUA Interpreter (It support LUA Player Plus scripts)
- BMPV Player (It support BMPV videos)
- WAV Player (It support WAV musics)
- Text Reader
- HEX Viewer
- SMDH Decoder (It can also extract icons from smdh files)
- 3DSX Launcher (Only for ninjhax users)
- ZIP Extractor
- CIA Installer (Only for CIA users)
- Info Viewer (Shows different info about files like filesize, format etc...)
Controls (SDMC):
A = Open file for viewing/listening/executing with default reader
B = Rename file/directory
Y = Move file/directory
X = Delete file/directory | Undo Move/Copy
L = Select reader to use for opening a file
R = Copy a file/directory
SELECT = Switch between EXTDATA, CIA and SDMC
START = Exit homebrew
Left/Right = Scroll opened TXT file | Pause/resume current opened file (if it is a multimedia file) | Extract icon from SMDH opened file
Touchscreen or Up/Down = Move through files
Circle Pad = Move viewed zone for big images
Controls (EXTDATA):
A = Open file with HEX Viewer/Open folder
B = Dump file/folder to SDMC
X = Restore file/folder from SDMC
SELECT = Switch between EXTDATA, CIA and SDMC
START = Exit Homebrew
Touchscreen or Up/Down = Move through files
Controls (CIA):
A = Uninstall CIA
SELECT = Switch between EXTDATA, CIA and SDMC
START = Exit Homebrew
Touchscreen or Up/Down = Move through CIAs
NOTE: Is also possible to launch other LUA homebrews by executing their index.lua files. (According to same or similar LPP revision).
Please report me any kind of bug you find.
Download: ORGANIZ3D v.0.6
GW Users: ORG_Themes folder, ORG_CONFIG.txt, index_CIA.lua and index.lua must be in the root of your SD card. Please note that 3DS build doesn't support sound (both WAV and BMPV players) so using CIA build is recommended.
Create your own ORGANIZ3D themes:
- Create a folder in ORG_Themes folder and name it as your theme name.
- Inside this folder, put your background image (it must be 320x240 and in PNG or BMP format)
- Create a theme.lua file and, inside it, put these strings (obviously, first set parameters):
Colors must be RGB (or RGBA). [ www.rapidtables.com/web/color/RGB_Color.htm ]
Theme to be loaded at ORGANIZ3D startup can be changed by editing ORG_CONFIG.txt file.
Sourcecode can be found in index.lua file.
Screenshots:
Video Presentation:
Current official release version: 0.6
Starting from v.0.5, ORGANIZ3D supports both SDMC and EXTDATA listing. EXTDATA files and folders can be opened with an HEX Viewer, dumped on SDMC and restored from SDMC).
Functions:
- Open different types of file
- Move files and directories
- Copy files and directories
- Delete files and directories
- Rename files and directories
Integrated readers:
- Image Viewer (It support BMP and PNG images)
- LUA Interpreter (It support LUA Player Plus scripts)
- BMPV Player (It support BMPV videos)
- WAV Player (It support WAV musics)
- Text Reader
- HEX Viewer
- SMDH Decoder (It can also extract icons from smdh files)
- 3DSX Launcher (Only for ninjhax users)
- ZIP Extractor
- CIA Installer (Only for CIA users)
- Info Viewer (Shows different info about files like filesize, format etc...)
Controls (SDMC):
A = Open file for viewing/listening/executing with default reader
B = Rename file/directory
Y = Move file/directory
X = Delete file/directory | Undo Move/Copy
L = Select reader to use for opening a file
R = Copy a file/directory
SELECT = Switch between EXTDATA, CIA and SDMC
START = Exit homebrew
Left/Right = Scroll opened TXT file | Pause/resume current opened file (if it is a multimedia file) | Extract icon from SMDH opened file
Touchscreen or Up/Down = Move through files
Circle Pad = Move viewed zone for big images
Controls (EXTDATA):
A = Open file with HEX Viewer/Open folder
B = Dump file/folder to SDMC
X = Restore file/folder from SDMC
SELECT = Switch between EXTDATA, CIA and SDMC
START = Exit Homebrew
Touchscreen or Up/Down = Move through files
Controls (CIA):
A = Uninstall CIA
SELECT = Switch between EXTDATA, CIA and SDMC
START = Exit Homebrew
Touchscreen or Up/Down = Move through CIAs
NOTE: Is also possible to launch other LUA homebrews by executing their index.lua files. (According to same or similar LPP revision).
Please report me any kind of bug you find.
Download: ORGANIZ3D v.0.6
GW Users: ORG_Themes folder, ORG_CONFIG.txt, index_CIA.lua and index.lua must be in the root of your SD card. Please note that 3DS build doesn't support sound (both WAV and BMPV players) so using CIA build is recommended.
Create your own ORGANIZ3D themes:
- Create a folder in ORG_Themes folder and name it as your theme name.
- Inside this folder, put your background image (it must be 320x240 and in PNG or BMP format)
- Create a theme.lua file and, inside it, put these strings (obviously, first set parameters):
-- INFOS --
theme_name = "MY THEME NAME"
author = "MY NAME"
-- COLORS --
menu_color = Color.new(R,G,B,A) -- Color of text for not selected filebrowser item
selected_color = Color.new(R,G,B,A) -- Color of text for selected filebrowser item
selected_item = Color.new(R,G,B,A) -- Color of background for selected filebrowser item
-- BACKGROUND IMAGE --
bg = Screen.loadImage(System.currentDirectory().."/MY_BACKGROUND_FILE") -- Background image path
Colors must be RGB (or RGBA). [ www.rapidtables.com/web/color/RGB_Color.htm ]
Theme to be loaded at ORGANIZ3D startup can be changed by editing ORG_CONFIG.txt file.