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,632
Trophies
3
Age
24
XP
21,075
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,632
Trophies
3
Age
24
XP
21,075
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.
  • Materia_tofu @ Materia_tofu:
    im not a very bright individual, but we live and we learn
  • SylverReZ @ SylverReZ:
    @Materia_tofu, We do learn a lot from plenty of talented individuals.
  • Materia_tofu @ Materia_tofu:
    this is true! i learned how to make soundfont remixes from a friend back in 2021
    +1
  • BakerMan @ BakerMan:
    Update on my brother: He's home now, tired and hungry, obviously, but other than that, seems to be doing fine.
    +2
  • Veho @ Veho:
    That's a relief to hear. Do you know what happened?
  • SylverReZ @ SylverReZ:
    @BakerMan, Any idea what happened? I hope that your brother's doing good.
  • BakerMan @ BakerMan:
    Well, from what I've heard from my parents, he had a seizure last night, perhaps an epileptic episode, fucking died, had a near death experience, my dad called the paramedics, they showed up, took him to the hospital, and he woke up covered in tubes, and started complaining.
  • BakerMan @ BakerMan:
    He couldn't eat until after his MRI, when he had a bomb pop.
  • BakerMan @ BakerMan:
    What matters now is that he's doing alright.
  • Veho @ Veho:
    But you still don't know what it was?
  • Veho @ Veho:
    Has he had seizures before?
  • The Real Jdbye @ The Real Jdbye:
    apparently stress can cause seizures, my brother had one during a test once
  • The Real Jdbye @ The Real Jdbye:
    never had one before that, and never had one since
  • Redleviboy123 @ Redleviboy123:
    Question about game texture chanching Do i need an own game id?
  • The Real Jdbye @ The Real Jdbye:
    @Veho for those that want to
    experience being sonic the hedgehog
  • Veho @ Veho:
    Ah, you mean
    furries.
  • The Real Jdbye @ The Real Jdbye:
    well, sonic fans are a whole separate thing from furries
  • The Real Jdbye @ The Real Jdbye:
    like bronys
  • The Real Jdbye @ The Real Jdbye:
    sonic porn is too weird even for me
  • Dumpflam @ Dumpflam:
    bruh
  • Dumpflam @ Dumpflam:
    guys how do i delete a post
  • The Real Jdbye @ The Real Jdbye:
    you don't
  • The Real Jdbye @ The Real Jdbye:
    you can report it and request deletion
    The Real Jdbye @ The Real Jdbye: you can report it and request deletion