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,677
Trophies
3
Age
25
XP
21,221
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,677
Trophies
3
Age
25
XP
21,221
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
  • K3Nv2 @ K3Nv2:
    Still don't know why he left unless someone really hurt his feelings
  • K3Nv2 @ K3Nv2:
    Don't know why people get so emotional online just get over it ffs
    +2
  • BigOnYa @ BigOnYa:
    He was the ass of gbatemp, everyone knocked on him, I honestly felt bad, even though I was guilty myself, but he egged it all on himself,
  • BigOnYa @ BigOnYa:
    But he still here, but under dif name, he pm me sometimes still even.
  • K3Nv2 @ K3Nv2:
    It's like they think we'll be in their bed pissing on it the next day
  • BigOnYa @ BigOnYa:
    I feel like gbatemp should make t-shirts or memorabilia to remember the lost ones. I bet the Polly shirts would sell out quick.
  • K3Nv2 @ K3Nv2:
    Nah that could actually bring lawsuits
  • K3Nv2 @ K3Nv2:
    Tempsuits
  • BigOnYa @ BigOnYa:
    PollySuits
  • BigOnYa @ BigOnYa:
    Your correct, Somebody would be guilty and there would be riots, then they storm the gbatemp capitol,
  • K3Nv2 @ K3Nv2:
    Online or not there are still certain rights that judges would have no issue handing out a warrant over
  • K3Nv2 @ K3Nv2:
    Just look at Kim dotcom
  • BigOnYa @ BigOnYa:
    Honestly I'm scared to, from you, but ok, lemme turn on vpn, virtual machine, private browser first
  • K3Nv2 @ K3Nv2:
    Remember that Alexa robot I gifted you
  • K3Nv2 @ K3Nv2:
    And that laptop Webcam you never tapped up
  • BigOnYa @ BigOnYa:
    That robot is here somewhere, I hear it moving around at night, but I haven't seen it for months.
  • BigOnYa @ BigOnYa:
    Oh that laptop I give to ancientboi, so you been watching him for months, and he's been watching you
  • K3Nv2 @ K3Nv2:
    Oh good more than enough material for the fbi
    +2
  • BigOnYa @ BigOnYa:
    Damn its 5 in morn, I gotta Go wake your mum and send her to work. Check ya later.
    +1
  • Psionic Roshambo @ Psionic Roshambo:
    He could make so much money!!! His arm would never get tired lol
    +2
  • S @ salazarcosplay:
    How are yall doing
    +1
    S @ salazarcosplay: How are yall doing +1