Page 1 of 2 1 2 >
Topic Options
#63472 - 19/07/10 11:38 AM MESS 138 PLUS+
gameclub4000 Offline
Member

Registered: 19/07/10
Posts: 6
cool The mess v0.138 is a amazing great job for the computers history !!!

I sugest a MESS PLUS+ edition with video preview support and manual (pdf) support ( like mame32 Plus v0.138 ) , but i cant do that alone cos im realy newbie in c++ programing blush

I have a manuals collection but i cant preview it like mame 138 plus but my pcb/cab/flyers/scr colection works great !!!
I cant find a history.dat ( i try to make one but i cant preview it on history tab )

thank you !!!


Edited by gameclub4000 (19/07/10 11:39 AM)
_________________________
Yo momma so stupid she .....buy a new Intel GMA graphics adapter laptop to play games !!!

Top
#63473 - 19/07/10 01:13 PM Re: MESS 138 PLUS+ [Re: gameclub4000]
mahlemiut Offline
Senior Member

Registered: 24/12/06
Posts: 158
Loc: New Zealand
Doesn't MAME Plus already run at least some MESS drivers, also?
_________________________
- Barry Rodewald

Top
#63475 - 19/07/10 02:32 PM Re: MESS 138 PLUS+ [Re: gameclub4000]
Just Desserts Offline
Senior Member

Registered: 23/05/09
Posts: 752
Originally Posted By: gameclub4000
I sugest a MESS PLUS+ edition with video preview support and manual (pdf) support ( like mame32 Plus v0.138 ) ,


Cool, I can't wait for you to-

Originally Posted By: gameclub4000
but i cant do that alone cos im realy newbie in c++ programing blush


There's the problem. MESS, being a hobby project, tends to only have features worked on that the developers themselves would like to work on. It serves it well for system coverage, but for the more "user-friendly" features, it doesn't work that well.

Top
#63476 - 19/07/10 03:54 PM Re: MESS 138 PLUS+ [Re: Just Desserts]
Barry Nelson Offline
Senior Member

Registered: 18/10/04
Posts: 424
Loc: Miami, Florida
If you have a collection of PDF manual files I would like to look at those to see if they can be added to the Mac OS X gui I maintain. Can you post a link here? Or would you prefer to email me a link? If so I can send you me email address in a PM. The Mac version I maintain is usually several releases behind. This is because I do extensive manual testing, and back port fixes to the code. I am working on a windows code base also now, based on SVN 8240. If I can figure out how to add viewing PDFs to that I will post the code patch here and include that feature in the windows package also.

Top
#63500 - 20/07/10 10:57 AM Re: MESS 138 PLUS+ [Re: Barry Nelson]
gameclub4000 Offline
Member

Registered: 19/07/10
Posts: 6
My collection is not completed yet ( i will post the download link with all my snap/flyer/cab/cpl/pcb/manual when i will finis )


but here you can find all you need to make your persomal collection :

http://www.old-computers.com/news/default.asp

http://gamesdbase.com/


* hey anyone know how can change disk on appleIIsc emu ( the 6.01 os is 7 disks ) !!! thanks
_________________________
Yo momma so stupid she .....buy a new Intel GMA graphics adapter laptop to play games !!!

Top
#63501 - 20/07/10 11:09 AM Re: MESS 138 PLUS+ [Re: gameclub4000]
etabeta78 Offline
Senior Member

Registered: 27/01/06
Posts: 2060
Loc: Trondheim, Norway
which driver is supposed to be appleIIsc? wink

anyway, to change floppies in general, if you use old UI (the MAME style interface) you first press ScrlLock to enable menu input, then you press TAB and select File Manager

in this menu, you simply have to choose the floppy drive and you will be able to browse the directories of your computer to mount the second disk, and then the 3rd and so on...

Top
#63502 - 20/07/10 11:20 AM Re: MESS 138 PLUS+ [Re: etabeta78]
Anna Wu Offline
Senior Member

Registered: 28/07/07
Posts: 1386
I think he mean an Macintosh driver.


Edited by Anna Wu (20/07/10 11:26 AM)

Top
#63503 - 20/07/10 11:34 AM Re: MESS 138 PLUS+ [Re: gameclub4000]
Anna Wu Offline
Senior Member

Registered: 28/07/07
Posts: 1386
Originally Posted By: gameclub4000
My collection is not completed yet ( i will post the download link with all my snap/flyer/cab/cpl/pcb/manual when i will finis )


but here you can find all you need to make your persomal collection :

http://www.old-computers.com/news/default.asp

http://gamesdbase.com/

http://....


* hey anyone know how can change disk on appleIIsc emu ( the 6.01 os is 7 disks ) !!! thanks


I suggest to remove the last link. smile

Top
#63504 - 20/07/10 11:36 AM Re: MESS 138 PLUS+ [Re: Anna Wu]
gameclub4000 Offline
Member

Registered: 19/07/10
Posts: 6
laugh yaaa thaks etabeta78 its work ( and i think my boos wiil kill me if he see what i do crazy )
_________________________
Yo momma so stupid she .....buy a new Intel GMA graphics adapter laptop to play games !!!

Top
#63511 - 20/07/10 10:23 PM Re: MESS 138 PLUS+ [Re: gameclub4000]
gameclub4000 Offline
Member

Registered: 19/07/10
Posts: 6
whistle Just Desserts dont disappointed soo easy cos the mame32 plus is a hobby project too and open code

f.e the code behind the RIGHT CLICK > VIEW MANUAL on mameXT32+ is :

+ case ID_VIEW_MANUAL:
+ {
+ LPTSTR tName;
+ LPCTSTR msg = 0;
+
+ const char *base_dir = NULL;
+ char filename[MAX_PATH];
+
+ char app[50];
+ sprintf(app, "apps\\xchange\\xchange.exe");
+
+ int nGame;
+ nGame = Picker_GetSelectedItem(hwndList);
+
+ base_dir = GetManualDir();
+ sprintf(filename, "%s\\arcade\\%s.pdf", base_dir, drivers[nGame]->name);
+
+ if (FileExists(filename))
+ {
+ if (FileExists(app))
+ {
+ sprintf(filename, "\"%s\\arcade\\%s.pdf\"", base_dir, drivers[nGame]->name);
+ LaunchApplication(hMain, app, filename);
+ } else {
+ DisplayTextFile(hMain, filename);
+ }
+ return TRUE;
+ }
+
+ msg = TEXT("The specified file was not found.");
+
+ tName = tstring_from_utf8(filename);
+ MessageBox(hMain, msg, tName, MB_OK + MB_APPLMODAL + MB_ICONSTOP);
+ }
+ break;


Edited by gameclub4000 (20/07/10 11:02 PM)
_________________________
Yo momma so stupid she .....buy a new Intel GMA graphics adapter laptop to play games !!!

Top
#63514 - 21/07/10 01:04 AM Re: MESS 138 PLUS+ [Re: gameclub4000]
Just Desserts Offline
Senior Member

Registered: 23/05/09
Posts: 752
Ah yes, the renowned compatibility of MAMEXT32+...

Top
#63618 - 30/07/10 09:21 AM Re: MESS 138 PLUS+ [Re: Just Desserts]
gameclub4000 Offline
Member

Registered: 19/07/10
Posts: 6
wink Hope to the mess future versions to support the N64 driver , ( the best cry ever retro machine !!!! )


Edited by gameclub4000 (30/07/10 09:23 AM)
_________________________
Yo momma so stupid she .....buy a new Intel GMA graphics adapter laptop to play games !!!

Top
#63619 - 30/07/10 09:23 AM Re: MESS 138 PLUS+ [Re: gameclub4000]
etabeta78 Offline
Senior Member

Registered: 27/01/06
Posts: 2060
Loc: Trondheim, Norway
where have you been in the past year? n64 is already emulated in current MESS, and it works reasonably as long as you have a 64bit CPU (there is a 32bit bug which hasn't been identified in the DRC): try e.g. Mario Kart 64 or Mario 64 and you will be surprised...

Top
#63625 - 30/07/10 02:53 PM Re: MESS 138 PLUS+ [Re: gameclub4000]
Anna Wu Offline
Senior Member

Registered: 28/07/07
Posts: 1386
Originally Posted By: gameclub4000
wink Hope to the mess future versions to support the N64 driver , ( the best cry ever retro machine !!!! )


That's just your opinion.

Top
#63632 - 30/07/10 10:45 PM Re: MESS 138 PLUS+ [Re: gameclub4000]
Just Desserts Offline
Senior Member

Registered: 23/05/09
Posts: 752
Originally Posted By: gameclub4000
wink Hope to the mess future versions to support the N64 driver , ( the best cry ever retro machine !!!! )


Wow, dude. Just wow. How old are you, 10?

Top
#63671 - 02/08/10 11:46 AM Re: MESS 138 PLUS+ [Re: etabeta78]
gameclub4000 Offline
Member

Registered: 19/07/10
Posts: 6
crazy wow !!! thanks etabeta78 is's works smile

No Just Desserts am 15 years old , is that a problem ??? confused


Edited by gameclub4000 (02/08/10 11:50 AM)
_________________________
Yo momma so stupid she .....buy a new Intel GMA graphics adapter laptop to play games !!!

Top
#63672 - 02/08/10 12:04 PM Re: MESS 138 PLUS+ [Re: gameclub4000]
Just Desserts Offline
Senior Member

Registered: 23/05/09
Posts: 752
Originally Posted By: gameclub4000
No Just Desserts am 15 years old , is that a problem ??? confused


Well, it sure explains why you consider the N64 a "retro" console.

Top
Page 1 of 2 1 2 >


Who's Online
4 registered (Micko, judge, couriersud, Richard Bannister), 8 Guests and 3 Spiders online.
Key: Admin, Global Mod, Mod
Shout Box

Forum Stats
4015 Members
9 Forums
6214 Topics
63592 Posts

Max Online: 162 @ 01/05/07 03:28 AM