Homebrew [WIP] 3DeSmume (DS emulator for 3DS)

LuxerWap

The Green Husky with a Broken Tail
Member
Joined
Sep 6, 2015
Messages
499
Trophies
0
Age
27
Location
Roswell, Georgia
XP
711
Country
United States
Wow, kinda fell bad that the O3DS couldn't run most of these stuff decently. If everything upgrades to the N3DS soon, might as well buy one. No, I'll rather buy a flashcart.
 

RocketRobz

Stylish TWiLight Hero
Developer
Joined
Oct 1, 2010
Messages
16,594
Trophies
3
Age
24
XP
20,993
Country
United States
@Ryuzaki_MrL So I got this .bat code for making banners right here:
Code:
@echo off
:begin
set f=14
set k=1
set ln=1

cls
echo GAME INFO:
set game=%title%
set /p game=Game Title (Folder name): 
set /p line1=Game Title: 
set /p line2=Game Title 2nd line/Publisher: 
set /p line3=Publisher: 
set /p f=Font Size: 
set /p k=Letter Spacing: 
set /p ln=Number of Lines:
set lt=5
set lr=6
if %ln% EQU 2 ( set lt=1
set lr=20 )
cd /d %~dp0
mkdir "output\%title%\"
tools\convert -composite -geometry +112+20 "tools\bannerin.png" "input\%title%\icon.png" "output\%title%\bannerouticononly.png" 
tools\convert "output\%title%\bannerouticononly.png" -gravity center -font input\SCE-PS3-RD-R-LATIN.TTF -pointsize %f% -kerning %k% -interword-spacing 6 -interline-spacing %lt% -annotate +0+24 "%line1%\n" -pointsize %f% -kerning %k% -interword-spacing 6 -interline-spacing %lt% -annotate +0+28 "%line2%" -pointsize %f% -kerning %k% -interword-spacing 6 -interline-spacing %lt% -annotate +0+42 "%line3%" "output\%title%\bannerout.png"
del "output\%title%\bannerouticononly.png"
echo Done!
set /p choice3="Do you want to build another banner? (Y/N): "  %=%
if [%choice3%]==[Y] goto begin
if [%choice3%]==[y] goto begin
if [%choice3%]==[N] goto exit
if [%choice3%]==[n] goto exit

:exit
exit
It doesn't want to read the folder I typed in, so I'm getting errors like:
Code:
convert: UnableToOpenBlob 'input\\icon.png': No such file or directory @ error/blob.c/OpenBlob/2695.
convert: UnableToOpenFile `input\\icon.png' @ error/png.c/ReadPNGImage/3978.
convert: NoImagesDefined `output\\bannerouticononly.png' @ error/convert.c/ConvertImageCommand/3235.
convert: UnableToOpenBlob 'output\\bannerouticononly.png': No such file or directory @ error/blob.c/OpenBlob/2695.
convert: UnableToOpenFile `output\\bannerouticononly.png' @ error/png.c/ReadPNGImage/3978.
convert: NoImagesDefined `output\\bannerout.png' @ error/convert.c/ConvertImageCommand/3235.
Could Not Find C:\3DS stuff\DeSmuME Virtual Console\output\bannerouticononly.png
Anything you can do to help?
 

shutterbug2000

Cubic NINJHAX!
OP
Member
Joined
Oct 11, 2014
Messages
1,088
Trophies
0
Age
29
XP
4,878
Country
United States
@Ryuzaki_MrL So I got this .bat code for making banners right here:
Code:
@echo off
:begin
set f=14
set k=1
set ln=1

cls
echo GAME INFO:
set game=%title%
set /p game=Game Title (Folder name):
set /p line1=Game Title:
set /p line2=Game Title 2nd line/Publisher:
set /p line3=Publisher:
set /p f=Font Size:
set /p k=Letter Spacing:
set /p ln=Number of Lines:
set lt=5
set lr=6
if %ln% EQU 2 ( set lt=1
set lr=20 )
cd /d %~dp0
mkdir "output\%title%\"
tools\convert -composite -geometry +112+20 "tools\bannerin.png" "input\%title%\icon.png" "output\%title%\bannerouticononly.png"
tools\convert "output\%title%\bannerouticononly.png" -gravity center -font input\SCE-PS3-RD-R-LATIN.TTF -pointsize %f% -kerning %k% -interword-spacing 6 -interline-spacing %lt% -annotate +0+24 "%line1%\n" -pointsize %f% -kerning %k% -interword-spacing 6 -interline-spacing %lt% -annotate +0+28 "%line2%" -pointsize %f% -kerning %k% -interword-spacing 6 -interline-spacing %lt% -annotate +0+42 "%line3%" "output\%title%\bannerout.png"
del "output\%title%\bannerouticononly.png"
echo Done!
set /p choice3="Do you want to build another banner? (Y/N): "  %=%
if [%choice3%]==[Y] goto begin
if [%choice3%]==[y] goto begin
if [%choice3%]==[N] goto exit
if [%choice3%]==[n] goto exit

:exit
exit
It doesn't want to read the folder I typed in, so I'm getting errors like:
Code:
convert: UnableToOpenBlob 'input\\icon.png': No such file or directory @ error/blob.c/OpenBlob/2695.
convert: UnableToOpenFile `input\\icon.png' @ error/png.c/ReadPNGImage/3978.
convert: NoImagesDefined `output\\bannerouticononly.png' @ error/convert.c/ConvertImageCommand/3235.
convert: UnableToOpenBlob 'output\\bannerouticononly.png': No such file or directory @ error/blob.c/OpenBlob/2695.
convert: UnableToOpenFile `output\\bannerouticononly.png' @ error/png.c/ReadPNGImage/3978.
convert: NoImagesDefined `output\\bannerout.png' @ error/convert.c/ConvertImageCommand/3235.
Could Not Find C:\3DS stuff\DeSmuME Virtual Console\output\bannerouticononly.png
Anything you can do to help?

Get rid of any spaces in the path
 

Inorizushi

*yawn*
Member
Joined
Oct 27, 2015
Messages
209
Trophies
0
XP
173
Country
United States
@Ryuzaki_MrL So I got this .bat code for making banners right here:
Code:
@echo off
:begin
set f=14
set k=1
set ln=1

cls
echo GAME INFO:
set game=%title%
set /p game=Game Title (Folder name):
set /p line1=Game Title:
set /p line2=Game Title 2nd line/Publisher:
set /p line3=Publisher:
set /p f=Font Size:
set /p k=Letter Spacing:
set /p ln=Number of Lines:
set lt=5
set lr=6
if %ln% EQU 2 ( set lt=1
set lr=20 )
cd /d %~dp0
mkdir "output\%title%\"
tools\convert -composite -geometry +112+20 "tools\bannerin.png" "input\%title%\icon.png" "output\%title%\bannerouticononly.png"
tools\convert "output\%title%\bannerouticononly.png" -gravity center -font input\SCE-PS3-RD-R-LATIN.TTF -pointsize %f% -kerning %k% -interword-spacing 6 -interline-spacing %lt% -annotate +0+24 "%line1%\n" -pointsize %f% -kerning %k% -interword-spacing 6 -interline-spacing %lt% -annotate +0+28 "%line2%" -pointsize %f% -kerning %k% -interword-spacing 6 -interline-spacing %lt% -annotate +0+42 "%line3%" "output\%title%\bannerout.png"
del "output\%title%\bannerouticononly.png"
echo Done!
set /p choice3="Do you want to build another banner? (Y/N): "  %=%
if [%choice3%]==[Y] goto begin
if [%choice3%]==[y] goto begin
if [%choice3%]==[N] goto exit
if [%choice3%]==[n] goto exit

:exit
exit
It doesn't want to read the folder I typed in, so I'm getting errors like:
Code:
convert: UnableToOpenBlob 'input\\icon.png': No such file or directory @ error/blob.c/OpenBlob/2695.
convert: UnableToOpenFile `input\\icon.png' @ error/png.c/ReadPNGImage/3978.
convert: NoImagesDefined `output\\bannerouticononly.png' @ error/convert.c/ConvertImageCommand/3235.
convert: UnableToOpenBlob 'output\\bannerouticononly.png': No such file or directory @ error/blob.c/OpenBlob/2695.
convert: UnableToOpenFile `output\\bannerouticononly.png' @ error/png.c/ReadPNGImage/3978.
convert: NoImagesDefined `output\\bannerout.png' @ error/convert.c/ConvertImageCommand/3235.
Could Not Find C:\3DS stuff\DeSmuME Virtual Console\output\bannerouticononly.png
Anything you can do to help?

Well grabbing the current batch file from github would be the first step.
 

RocketRobz

Stylish TWiLight Hero
Developer
Joined
Oct 1, 2010
Messages
16,594
Trophies
3
Age
24
XP
20,993
Country
United States
Well grabbing the current batch file from github would be the first step.
It's okay, I got it to work.

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

So I tried building a 3DeSmuME CIA with a ROM in ROMFS, but running it just instantly gives me "An error has occurred".
 

faku1810

Well-Known Member
Member
Joined
Mar 10, 2014
Messages
893
Trophies
0
Age
32
XP
328
Country
Argentina
No offense, but what's the point of making those CIAs with roms injected at this point when 1. the CIA has lower fps than the 3dsx release and 2. the games aren't really going to be played in their current state? I mean, sure, you could go through some games if you don't care about sound or taking 20 mins to finish the first level of Megaman Zero (which should take 2-3mins tops); but even for those people it's futile as the emulator isn't creating save files.

If anything, those that know how could help making a rom selector instead, though i'm not sure if itsthenavy already intended to do that.
 

Site & Scene News

Popular threads in this forum

General chit-chat
Help Users
  • No one is chatting at the moment.
    BakerMan @ BakerMan: @salazarcosplay yeah cod's still up