Emuforums.com

Go Back   Emuforums.com > General Discussion > Software Discussion
About Us Register FAQ Members List Calendar Mark Forums Read

Login to remove all ads!
Reply
 
LinkBack Thread Tools Display Modes
Old February 25th, 2008   #1 (permalink)
Needs a shower
 
systemidx's Avatar
 
Join Date: Jan 2007
Location: Baltimore
Posts: 10
SNES/ePSXe frontend

Hi, I'm making a frontend to load roms into multiple emulators and I would like to know if I could set up some sort of formal thread for questions regarding it on this forum. Can anyone tell me who would be best to talk to about this?
systemidx is offline   Reply With Quote
Old February 25th, 2008   #2 (permalink)
I want you INSIDE me
 
Kirby's Avatar
 
Join Date: Mar 2002
Location: Massachusetts, USA
Posts: 8,365
that would be me....

care to show us what you are talking about? (program name and screenshots would be nice)
__________________

Kirby's AnimeDB list
AMD Athlon64 X2 4400+ Toledo, Nvidia GeForce 7950GT SLi, 2GB PC3200 2-3-2-5, ABit AN8-SLi, Sound Blaster X-FI XtremeMusic
Kirby is offline   Reply With Quote
Old February 26th, 2008   #3 (permalink)
VBA-M Team
 
Squall-Leonhart's Avatar
 
Join Date: Feb 2006
Location: Australia
Posts: 4,192
this sounds interesting.. but since i prefer rom browsers probably nothing i will get hyper about.
Squall-Leonhart is online now   Reply With Quote
Old February 26th, 2008   #4 (permalink)
Needs a shower
 
systemidx's Avatar
 
Join Date: Jan 2007
Location: Baltimore
Posts: 10
The program's name is ZSNESLoader.
I know it sounds weird since it'll support epsxe, but originally I just wrote it for zsnes and extended it. ZSNES/SNES9x Support is already functional, but I'm still working out some of the kinks with epsxe.

Screenshots:





It's progressing fast, I just figured out the kink in which epsxe didn't work. So epsxe works now. =)

The front-end also sorts the roms based on the extensions usable by the selected emulator. (eg, no .iso's or .img's will show up if zsnes/snes9x is selected).

Last edited by systemidx; February 26th, 2008 at 03:48. Reason: Automerged Doublepost
systemidx is offline   Reply With Quote
Old February 26th, 2008   #5 (permalink)
LET'S GO!! COME ON!!
 
Hard core Rikki's Avatar
 
Join Date: May 2004
Location: Perpetual Hawaii
Posts: 4,910
executable download links ?
__________________
< My deviantART || GENERALEMU || XTEMU || Webcomics
VBA-M || @ES <(^_^)> <(^_^)>


Hard core Rikki is offline   Reply With Quote
Old February 26th, 2008   #6 (permalink)
Needs a shower
 
systemidx's Avatar
 
Join Date: Jan 2007
Location: Baltimore
Posts: 10
Sure, give me 5 minutes to make a new build and I'll post a zip with the installer.

PS: I've only tested this on my two machines (Vista Home Premium and XP-MCE).

Any insight to how this runs on your machines is appreciative. Please post a description of your build if you have an issue. And remember, this is very very pre-alpha stage. Don't expect it to work 100%. But if it does, yay for you. =)

---------------------------------------------

EDIT: As promised:
ZSNESLoader

.Net framework 3.5 IS required for this to run. If you don't have it, the installer will download it for you if you accept it.
If you have questions regarding it, you can usually catch me on AIM.
Attached Files
File Type: zip ZSNESLoader.zip (231.7 KB, 17 views)

Last edited by systemidx; February 26th, 2008 at 06:18.
systemidx is offline   Reply With Quote
Old February 28th, 2008   #7 (permalink)
Needs a shower
 
systemidx's Avatar
 
Join Date: Jan 2007
Location: Baltimore
Posts: 10
Anyone interested in testing?
systemidx is offline   Reply With Quote
Old February 28th, 2008   #8 (permalink)
Emu author
 
mudlord's Avatar
 
Join Date: Feb 2007
Location: Wuzzleberg
Posts: 1,362
I am interested.
__________________


"Software is getting slower more rapidly than hardware becomes faster......"

-Niklaus Wirth
mudlord is offline   Reply With Quote
Old February 28th, 2008   #9 (permalink)
Registered User
 
Join Date: Feb 2008
Location: Endland
Posts: 3
Hi, would be great if it would support command line arguments eg : loader.exe /[emu name] / [game]

Also, as i have several different image formats (.bin, .cdi, .iso) for the psx, could you support more than one extention?, and could this be run from the likes of mamewah.

You may need to put a block of code to check the file extention (as i think mamewah will only filter one extention). If its defaulted to ".bin" you can run a check file exists procedure on a set of default extentions:

eg:

Dim RomFileToLoad as string

if CheckfileExists[Rom File Title] & ".bin" then
RomFileToLoad = [Rom File Title] & ".bin"
ElseIf CheckfileExists[Rom File Title] & ".cdi" then
RomFileToLoad = [Rom File Title] & ".cdi"
ElseIf CheckfileExists[Rom File Title] & ".iso" then
RomFileToLoad = [Rom File Title] & ".iso"
Else RomFileToLoad = 0

End if

if RomFileToLoad <> 0 then Run RomFileToLoad
maddis is offline   Reply With Quote
Old February 28th, 2008   #10 (permalink)
Needs a shower
 
systemidx's Avatar
 
Join Date: Jan 2007
Location: Baltimore
Posts: 10
ISO, IMG, and BIN formats are already supported. CDI support should be easy to get done.

But the additional command line option is a good idea. I'll see if I can write that in tonight. Thanks. =)
systemidx is offline   Reply With Quote
Old February 28th, 2008   #11 (permalink)
Needs a shower
 
systemidx's Avatar
 
Join Date: Jan 2007
Location: Baltimore
Posts: 10
Updated version:
-Added custom command line text-box (Tested with zsnesw and epsxe)
-Fixed a bug where you could load a rom with no rom selected
-Added .cdi support for epsxe (will not work if epsxe is not 1.6.0 or newer)

Attached Files
File Type: zip zsnesloader-1.1.zip (231.1 KB, 8 views)
systemidx is offline   Reply With Quote
Old February 28th, 2008   #12 (permalink)
Emu author
 
@ruantec's Avatar
 
Join Date: Nov 2002
Location: Austria (originally from the most beautiful island of the caribbean "Dominican Republic")
Posts: 1,317
mmmm nice .net frontend! very small and simple
__________________

Current development tools:

Visual C++.net, Visual C#.net
Visual VB.net, Visual Webdeveloper.net
Bloodshed Dev C++, Borland C++
Visual Basic 6
@ruantec is offline   Reply With Quote
Old February 28th, 2008   #13 (permalink)
Needs a shower
 
systemidx's Avatar
 
Join Date: Jan 2007
Location: Baltimore
Posts: 10
Well, I was originally planning to use opengl/sdl. But I got too pissed off at my bloodshed ide. =\
systemidx is offline   Reply With Quote
Old February 28th, 2008   #14 (permalink)
Emu author
 
@ruantec's Avatar
 
Join Date: Nov 2002
Location: Austria (originally from the most beautiful island of the caribbean "Dominican Republic")
Posts: 1,317
any plans/ideas for future stuff?
__________________

Current development tools:

Visual C++.net, Visual C#.net
Visual VB.net, Visual Webdeveloper.net
Bloodshed Dev C++, Borland C++
Visual Basic 6
@ruantec is offline   Reply With Quote
Old February 29th, 2008   #15 (permalink)
Needs a shower
 
systemidx's Avatar
 
Join Date: Jan 2007
Location: Baltimore
Posts: 10
I'm definitely going to support more emulators. NES support, along with psxeven and maybe even pcsx2 or something. I was really hoping for ideas from the community. =)
systemidx is offline   Reply With Quote
Old February 29th, 2008   #16 (permalink)
Emu author
 
@ruantec's Avatar
 
Join Date: Nov 2002
Location: Austria (originally from the most beautiful island of the caribbean "Dominican Republic")
Posts: 1,317
Nice

btw you can take some ideas from my project here

people has posted lots of things they would like to see there. i think it could be helpfull for you aswell.

good luck and keep it up
__________________

Current development tools:

Visual C++.net, Visual C#.net
Visual VB.net, Visual Webdeveloper.net
Bloodshed Dev C++, Borland C++
Visual Basic 6
@ruantec is offline   Reply With Quote
Old March 1st, 2008   #17 (permalink)
Needs a shower
 
systemidx's Avatar
 
Join Date: Jan 2007
Location: Baltimore
Posts: 10
Can anyone tell me the most commonly used emulators so that I can add options for those?
systemidx is offline   Reply With Quote
Old April 8th, 2008   #18 (permalink)
LET'S GO!! COME ON!!
 
Hard core Rikki's Avatar
 
Join Date: May 2004
Location: Perpetual Hawaii
Posts: 4,910
Quote:
Originally Posted by systemidx View Post
Can anyone tell me the most commonly used emulators so that I can add options for those?
no$gba, easily ;P
__________________
< My deviantART || GENERALEMU || XTEMU || Webcomics
VBA-M || @ES <(^_^)> <(^_^)>


Hard core Rikki is offline   Reply With Quote
Old April 8th, 2008   #19 (permalink)
Registered User
 
Memulator91k's Avatar
 
Join Date: Apr 2007
Location: Deventer
Posts: 247
Or It used to be VBA, but i think No$gba or PCSX2
__________________
Quote:
Originally Posted by cottonvibes View Post
if i wanted a flat girl, i would just f*** a guy...
Memulator91k is offline   Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


All times are GMT. The time now is 17:22.

© 2006 - 2008 Emu Forums | About Emu Forums | Legal | A member of the Crowdgather Forum Community


Powered by vBulletin® Version 3.7.0 Release Candidate 3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.0 RC5