mesk Posted February 8, 2013 Posted February 8, 2013 VJ 2.1 has been released.Major improvements.Full screen support,joypad support better overall game compatibility.Virtual Jaguar seems to be coming along nicely,and since it is the only way to emulate the Jag,we are lucky to have it.Yes I know MESS will one day be able to emulate the Jag better,but im 33 years old and by the time MESS emulates Jaguar I will most likely have passed away due to old age.Enjoy http://www.ngemu.com/forums/forumdisplay.php?f=64
brolly Posted February 8, 2013 Posted February 8, 2013 Yeah the focus on accuracy is starting to pay out and it finally runs at decent speeds with DSP on, definitely looks very promising, I just hope shamus can keep improving it even more, maybe even JagCD support one day. It's not the only way to emulate Jaguar though, Project Tempest does a nice job on the games it does support, even though it's full of hacks to make the games work and therefore compatibility is not the best the games that do work actually run pretty well.
DrMoney Posted February 8, 2013 Posted February 8, 2013 Mesk, have you seen how well the games run now? TUTORIAL!: Xpadder and You If you're super into using genuine controllers for emulation check THIS GUY out.
Pyramid_Head Posted February 9, 2013 Posted February 9, 2013 Thanks for posting this! Is there any way to hide the menu bar in fullscreen?
Trnzaddict Posted February 9, 2013 Posted February 9, 2013 Thanks for posting this! Is there any way to hide the menu bar in fullscreen? You know who will probably take of that. I am......Machine
djvj Posted February 9, 2013 Posted February 9, 2013 I tried to on the git from last week but wasn't successful yet. I'll take another look but it looks like the dev decided to go with an ugly non-standard menu bar, so my dllcall doesn't work on it. "Computer games don't affect kids; I mean if Pac-Man affected us as kids, we'd all be running around in darkened rooms, munching magic pills and listening to repetitive electronic music."RocketLauncher's Official Home If you appreciate my work:My Apps:Window LoggerIdle Volume AdjusterExplorerRestorerRom Folder CleanerModule UpdaterMy Guides:How To Mod Guncons with Aimtrak
Pyramid_Head Posted February 9, 2013 Posted February 9, 2013 Yeah, that whole menu still showing up thing after being in fullscreen is ridiculous lol. Not even sure why he even bothered.
Crylen Posted February 9, 2013 Posted February 9, 2013 You can right click it and hide it... but then you get a giant empty bar on the bottom of the screen. It's a bizare choice
Pyramid_Head Posted February 9, 2013 Posted February 9, 2013 Yeah it is pretty weird indeed lol. You get rid of one bar and end with an even bigger one at the bigger. Very strange.
brolly Posted February 9, 2013 Posted February 9, 2013 That's one thing I'm going to ask shamus as it also annoys me, he will probably add an option to hide it on next versions.
Pyramid_Head Posted February 9, 2013 Posted February 9, 2013 That would be very cool! It's a shame to have something like this missing on what seems to be the best Jaguar emu
mesk Posted February 9, 2013 Author Posted February 9, 2013 Mesk, have you seen how well the games run now? I have.There is still some slow down with the more popular games (lol@ popular Jaguar games) like Tempest 2000 and Missile Command,but Defender 2000 and Attack of the Mutant Penguins seem to be running better.Personally im waiting for Aliens vs Predator to be @ playable speeds.
Pyramid_Head Posted February 10, 2013 Posted February 10, 2013 Has anyone checked this out? http://www.emucr.com/2013/02/virtual-jaguar-git-20130209.html Mentions something about scaling fullscreen mode. I haven't had a chance to check it out yet.
dustind900 Posted February 10, 2013 Posted February 10, 2013 I got it! This code will hide the toolbar perfectly. Run virtualjaguar.exe,,, App_PID WinWaitActive ahk_class QWidget ControlMove QGLWidget1, 0, 0, %A_ScreenWidth%, %A_ScreenHeight%, ahk_class QWidget Return ^q:: Process Close, %App_PID% ExitApp copy and paste to a new ahk file and place it with your virtual jaguar executable. Set virtual jaguar to start FullScreen. This is with the latest git. This script will not load a rom nor will you be able to because the toolbar is gone. If you want to load roms you will have to edit the code more.
Pyramid_Head Posted February 10, 2013 Posted February 10, 2013 Hmm tried that but it didn't seem to do anything. Does the ahk have to named a certain way?
dustind900 Posted February 10, 2013 Posted February 10, 2013 This is the release I'm using... Module Working Windows 7 & 8 ;------------------------------------------------------------------------ ; Atari Jaguar ; Virtual Jaguar Git - 02/09/2013 - [url="http://www.emucr.com/2013/02/virtual-jaguar-git-20130209.html?showComment=1360460895285"]http://www.emucr.com/2013/02/virtual-jaguar-git-20130209.html?showComment=1360460895285[/url] ; ; 1.0 ; ; Notes: ; Set Virtual Jaguar to start full screen. ;------------------------------------------------------------------------ GUI_ID := FadeInStart() 7z1 := 7z(romPath, romName, romExtension, 7zExtractDir) Run %executable% "%romPath%%romName%%romExtension%", %emuPath%,, VJ_PID WinWait ahk_pid %VJ_PID% WinWaitActive ahk_pid %VJ_PID% If (A_OSVersion = "WIN_7"){ MouseClick Right, 1, 1 MouseClick Left, 5, 5 } ControlMove QGLWidget1, 0, 0, %A_ScreenWidth%, %A_ScreenHeight%, ahk_pid %VJ_PID% GUI_ID2 := FadeInExit() Process, WaitClose, %VJ_PID% 7z2 := 7zCleanUp() GUI_ID4 := FadeOutExit() WinActivate, HyperSpin ExitApp CloseProcess: GUI_ID3 := FadeOutStart() WinClose ahk_pid %VJ_PID% Return
Pyramid_Head Posted February 10, 2013 Posted February 10, 2013 Same version I'm using. I get this error ---------------------------AutoHotkey.dll --------------------------- Error: Target label does not exist. Line# 050: mgText2Offset = 70 051: mgUseSound = true 052: mgSoundfreq = 300 053: mgExitEffect = none 054: mgSelectedEffect = rotate 055: mgUseGameArt = false 056: mgArtworkDir = Artwork1 ---> 057: Hotkey,~Esc,CloseProcess 071: GUI_ID := FadeInStart() 073: 7z1 := 7z(romPath, romName, romExtension, 7zExtractDir) 075: Run,%executable% "%romPath%%romName%%romExtension%",%emuPath%,,VJ_PID 077: WinWait,ahk_class QWidget 078: WinWaitActive,ahk_class QWidget 079: ControlMove,QGLWidget1,0,0,%A_ScreenWidth%,%A_ScreenHeight%,ahk_class QWidget 081: GUI_ID2 := FadeInExit() The program will exit. --------------------------- OK --------------------------- Sorry I'm a lil loaded so bare with me LOL I replace the entire module with your code.
dustind900 Posted February 10, 2013 Posted February 10, 2013 I am using windows 8 so the control names might be different then someone on win 7.
Pyramid_Head Posted February 10, 2013 Posted February 10, 2013 I'm using Win7 till my new SSD replacement arrives so I can reinstall Win 8 as I'll also be on a new mobo. Is there anything I can change?
dustind900 Posted February 10, 2013 Posted February 10, 2013 no need for you to install a different OS. Ill check it out on my 7 machine and if the control names are different I can just do a quick OS check in the module. The module you were using was missing the CloseProcess: label. You had the hotkey set but not defined.
Pyramid_Head Posted February 10, 2013 Posted February 10, 2013 Another error ---------------------------AutoHotkey.dll --------------------------- Error: Target label does not exist. Line# 050: mgText2Offset = 70 051: mgUseSound = true 052: mgSoundfreq = 300 053: mgExitEffect = none 054: mgSelectedEffect = rotate 055: mgUseGameArt = false 056: mgArtworkDir = Artwork1 ---> 057: Hotkey,~Esc,CloseProcess 073: GUI_ID := FadeInStart() 075: 7z1 := 7z(romPath, romName, romExtension, 7zExtractDir) 077: Run,%executable% "%romPath%%romName%%romExtension%",%emuPath%,,VJ_PID 079: WinWait,ahk_pid %VJ_PID% 080: WinWaitActive,ahk_pid %VJ_PID% 081: ControlMove,QGLWidget1,0,0,%A_ScreenWidth%,%A_ScreenHeight%,ahk_pid %VJ_PID% 083: GUI_ID2 := FadeInExit() The program will exit. --------------------------- OK --------------------------- I won't be able to change back to Win8 till i get my new mobo :/
dustind900 Posted February 10, 2013 Posted February 10, 2013 I dont know why you are getting that error. Did you copy the entire module? It's telling you the CloseProcess label doesn't exist. If you are using my module then it definitely exists. I updated the module again. Checks OS version. Win7 needed some extra code. I need this tested on XP
Crylen Posted February 10, 2013 Posted February 10, 2013 Just tried it on Windows 8 as well and it works like a charm.. Thanks! Mouse cursor stays up in the corner of the screen but its a hell'ova lot better than the two bars! =P
dustind900 Posted February 10, 2013 Posted February 10, 2013 Just tried it on Windows 8 as well and it works like a charm.. Thanks! Mouse cursor stays up in the corner of the screen but its a hell'ova lot better than the two bars! =P Set the mouse cursor to hidden in Atari Jaguar.ini I just want to make it clear that the Module works on Windows 7 & 8. I just need someone with XP to test it.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.