Nintendo DS

Get answers to questions about using mGalaxy.
User avatar
Stefan
Full Member
Full Member
Posts: 143
Joined: Wed Feb 20, 2013 8:47 am
Location: Wels - AUSTRIA

I try to Play No$Gba - DS - Emu with myZoom.
myZoom make it possible, to Play DS Games in Fullscreen.

With a simple .bat, i can start example: New Super Mario in Fullscreen,
i cant start it over mGalaxy ...  :-\

Anybody try it before ?
---------------
Greetings from Austria
Aeliss
Hero Member
Hero Member
Posts: 900
Joined: Thu Apr 04, 2013 5:55 pm

You can listen to the sound but no picture ? Or nothing ?
User avatar
Stefan
Full Member
Full Member
Posts: 143
Joined: Wed Feb 20, 2013 8:47 am
Location: Wels - AUSTRIA

"Nothing", i can see a grey box in the upper left corner, then all freeze ...

But i can start it with a .bat file, and: myZoom.exe "folder/game.nds"

:-\
---------------
Greetings from Austria
Aeliss
Hero Member
Hero Member
Posts: 900
Joined: Thu Apr 04, 2013 5:55 pm

k, not the same problem than me.
In somes emulators IDK why but the fullscreen doesn't work if mgalaxy is running, they work with bat file file but not with mgalaxy.
I can listen the sound but no picture, in fact the "always on top" function not working really well on these emulators and even with fullscreen they are running on background.

Autoit script forced for these emulators to put the emulator on top.
User avatar
Stefan
Full Member
Full Member
Posts: 143
Joined: Wed Feb 20, 2013 8:47 am
Location: Wels - AUSTRIA

i think its some Configuration, and at myZoom, you must press F1 ... 2 ... 3 ... for Fullscreen Modes ...
---------------
Greetings from Austria
Aeliss
Hero Member
Hero Member
Posts: 900
Joined: Thu Apr 04, 2013 5:55 pm

I can't help you, I use only emulator that can be use in a "multiple emulation arcade machine" and not possible with the DS because of dual screen, touchscreen, ect ...
But with autoit nothing is impossible, you can use emulator that don't use command line for exemple.

you can simulate F1 with the command

Code: Select all

send("{F1}")

for "on top problem"

Code: Select all

$PID = Run ( "application.exe ")

while _WinWaitActivePID($PID)
   sleep(500)
wend

;------------------------

 Func _WinWaitActivePID($iPid)
    While 1
        Local $list = WinList()
        For $i = 1 To $list[0][0]
            If $list[$i][0] <> "" And IsVisible($list[$i][1]) Then
                If WinGetProcess($list[$i][1]) = $iPid AND WinActive($list[$i][1]) Then Return $list[$i][0]
            EndIf
        Next
    WEnd
EndFunc

Func IsVisible($handle)
    If BitAND(WinGetState($handle), 2) Then
        Return 1
    Else
        Return 0
    EndIf

EndFunc
Last edited by Aeliss on Sun Nov 16, 2014 12:47 pm, edited 1 time in total.
rik_adriano
Newbie
Newbie
Posts: 15
Joined: Fri Mar 29, 2013 2:57 pm

Why you not use Desmume.
It is newer and you can play from 7z  :)
User avatar
Stefan
Full Member
Full Member
Posts: 143
Joined: Wed Feb 20, 2013 8:47 am
Location: Wels - AUSTRIA

Aeliss, i will use DS in Arcade Cab too ;-) but only Jump and Runers as Mario or Giana Sisters.

Rik, have Desmume fullscreen and command lines to start ?
Or better, you use it with mGalaxy ?
---------------
Greetings from Austria
rik_adriano
Newbie
Newbie
Posts: 15
Joined: Fri Mar 29, 2013 2:57 pm

Yes i use it and you need script to launch it in full screen  ;)
User avatar
Stefan
Full Member
Full Member
Posts: 143
Joined: Wed Feb 20, 2013 8:47 am
Location: Wels - AUSTRIA

Sounds good ... any specials here to made this ?
Please, Can you post Script and Downloadsource for Emu ?
---------------
Greetings from Austria
User avatar
h3xl3y
Newbie
Newbie
Posts: 40
Joined: Fri Mar 29, 2013 2:55 pm

I use Desmume too
Download Link
here is the script i use to launch it

Code: Select all

#include <Misc.au3>
Opt("WinTextMatchMode", 3)
$app = "DeSmuME_x64.exe"
$windows = "DeSmuME 0.9.9 x64"

If $CmdLine[0] == 1 Then
	Run('"' & $app & '" "' & $CmdLine[1] & '"')
	WinWait ( $windows )
	WinActivate ( $windows )
	WinWaitActive ( $windows )
	Send("!{ENTER}")
	While ProcessExists( $app )
	     Sleep(500)
        Wend
	ProcessWaitClose( $app )
	Exit 0
EndIf
Have Fun  :)

EDIT: changed script because it used to much CPU
        added download link
Last edited by h3xl3y on Sun Nov 16, 2014 12:47 pm, edited 1 time in total.
rik_adriano
Newbie
Newbie
Posts: 15
Joined: Fri Mar 29, 2013 2:57 pm

My script is the same as h3xl3y's  ;D
You can use this version Desmume 0.99, is latest stable version.
Last edited by rik_adriano on Tue May 14, 2013 8:17 pm, edited 1 time in total.
User avatar
Stefan
Full Member
Full Member
Posts: 143
Joined: Wed Feb 20, 2013 8:47 am
Location: Wels - AUSTRIA

Mens, help please, where is the "fullscreen" option ?  ???

Sure, i have the lastes X64 version 9.9., and first i try it without mGalaxy and AutoIt,
or is the fullscreen option in Line 2 at Script ?

Edit: OK read now in Script, the Alt+Enter .... thanks.
Last edited by Stefan on Wed May 15, 2013 7:02 am, edited 1 time in total.
---------------
Greetings from Austria
User avatar
Stefan
Full Member
Full Member
Posts: 143
Joined: Wed Feb 20, 2013 8:47 am
Location: Wels - AUSTRIA

Skins:

I have seen, on myZoom you can include Skins, so the fullscreen show as a DS Hardware,
is this possible in Desmume too ?
---------------
Greetings from Austria
User avatar
h3xl3y
Newbie
Newbie
Posts: 40
Joined: Fri Mar 29, 2013 2:55 pm

I think no, but i'm not sure  :-\
didn't try or search anything about skins
Post Reply