craiganderson Posted April 20, 2014 Share Posted April 20, 2014 Hello, The emulator that I am goofing around with keeps displaying different "classes" each time I check it with "Au3Info.exe" 3 examples Afx:400000:b:10003:6:1010a25 Afx:400000:b:10003:6:6d2053b Afx:400000:b:10003:6:208065d What do I use in my module? Seems to be discussed on autohotkey forum but the site is down right now....... I was thinking to use out to where it always stays the same (bolded above) but that doesnt seem to work. thanks for any help craiganderson Link to comment Share on other sites More sharing options...
craiganderson Posted April 20, 2014 Author Share Posted April 20, 2014 Perhaps the answer is in here? From another site: just a shot in the dark trying to google any ideas.. Gonna give this a try i guess.... http://superuser.com/questions/490708/using-the-ifwinactive-keyword-in-autohotkey You used SetTitleMatchMode to set the title-matching mode to 2 which means A window's title can contain WinTitle anywhere inside it to be a match. So, it is trying to find .* TeXnicCenter *. in the title-bar. You should remove the .* and *. (unless the title bar actually contains those—which as far as I know, it does not). You can set the title-matching mode to RegEx if you would rather use the regex syntax, (and even then, the *. is incorrect, it should be .*). As for the class, I had the same issue with GraphEdit which for the main window has a window class like Afx:1000000:b:10011:6:1070780 with the same pattern, but different numbers for each instance. I solved it by using regex mode (SetTitleMatchMode, RegEx) and a pattern like ^Afx:.+:.:.+:.:.+$—you can specify the exact number of digits between the colons, but it’s unlikely you’ll need to. (I eventually ended up simplifying the whole process by using groups.) So, in your case, you would use one of the following: SetTitleMatchMode, 2 SetTitleMatchMode, Slow #IfWinActive, TeXnicCenter !t:: Send \texttt{{}{}} return SetTitleMatchMode, regex SetTitleMatchMode, Slow #IfWinActive, .* TeXnicCenter *. !t:: Send \texttt{{}{}} return Here is my recommendation: SetTitleMatchMode, regex SetTitleMatchMode, Slow GroupAdd, TXC, ^.*TeXnicCenter.*$ ahk_class ^Afx:.+:.:.+:.+:.*$ #IfWinExist, ahk_group TXC !t:: Send \texttt{{}{}} return #IfWinExist share|improve this answer Link to comment Share on other sites More sharing options...
craiganderson Posted April 20, 2014 Author Share Posted April 20, 2014 holy crap./....i think it worked,,...it got me to the next step at least instead of getting stuck on WinWait("ahk_class Afx:400000:b:10003:6") WinWaitActive("ahk_class Afx:400000:b:10003:6") its NOW getting stuck on CloseProcess: FadeOutStart() WinClose("ahk_class Afx:400000:b:10003:6") see module below StartModule() FadeInStart() 7z(romPath, romName, romExtension, 7zExtractPath) Run(executable . " """ . romPath . "\" . romName . romExtension . """ ", emuPath) SetTitleMatchMode, RegEx SetTitleMatchMode, Slow WinWait("ahk_class Afx:400000:b:10003:6") WinWaitActive("ahk_class Afx:400000:b:10003:6") FadeInExit() Process("WaitClose", executable) 7zCleanUp() FadeOutExit() ExitModule() CloseProcess: FadeOutStart() WinClose("ahk_class Afx:400000:b:10003:6") Return see log below 20:31:23:840 | HL | INFO | +N/A | Main - HyperLaunch v3.0.1.1c 20:31:23:882 | HL | INFO | +47 | Main - System Specs: HyperLaunch Dir: E:\Hyperspin\Hyperlaunch OS: Microsoft Windows 8.1 SKU: Windows 8 Total Memory: 16298.77 MB Free Memory: 13874.98 MB Used Memory: 2423.789 MB SystemType: x64-based PC Physical Processors: 1 Logical Processors: 8 GPU 1 Name: NVIDIA GeForce GTX 760 GPU 1 RAM: -2048.00 MB GPU 1 Driver Version: 9.18.13.3221 Sound 1 Device: Realtek High Definition Audio Sound 1 Status: Enabled Sound 2 Device: NVIDIA High Definition Audio Sound 2 Status: Enabled Sound 3 Device: NVIDIA Virtual Audio Device (Wave Extensible) (WDM) Sound 3 Status: Enabled OS Language: English_United_States OS Admin Status: No Monitor #1 (\\.\DISPLAY1): 1360x768 (1360x738 work) AutoHotkey Path: AHK Version: 1.1.09.04 Unicode: No 20:31:23:884 | HL | INFO | +0 | Main - HyperSpin.exe coordinates are x280 y84 w800 h600 20:31:23:890 | HL | INFO | +15 | CheckFile - Checking if E:\Hyperspin\Hyperlaunch\HyperLaunch.exe exists 20:31:23:891 | HL | DEBUG1 | +0 | CheckFile - Attributes: FileDescription Your favorite Front End companion! FileVersion 3.0.1.1 LegalCopyright ©2013 HL squad ProductName djvj's one swell guy! ProductVersion 1.1.9.4 CompanyName djvj's one swell guy! File Size: 910336 bytes Created: 3/25/2014 - 1:26:39 PM Modified: 3/26/2014 - 5:59:33 PM 20:31:23:892 | HL | INFO | +0 | CheckFile - Checking if E:\Hyperspin\Hyperlaunch\Module Extensions\itextsharp.dll exists 20:31:23:894 | HL | DEBUG1 | +0 | CheckFile - Attributes: FileDescription iTextSharp FileVersion 5.4.2.0 InternalName itextsharp.dll LegalCopyright Copyright (C) 1999-2013 by Bruno Lowagie and Paulo Soares. All Rights Reserved. OriginalFilename itextsharp.dll ProductName iTextSharp ProductVersion 5.4.2.0 CompanyName 1T3XT BVBA File Size: 3743744 bytes Created: 3/25/2014 - 4:43:10 PM Modified: 3/26/2014 - 5:59:47 PM 20:31:23:895 | HL | INFO | +0 | CheckFile - Checking if E:\Hyperspin\Hyperlaunch\Module Extensions\SevenZipSharp.dll exists 20:31:23:897 | HL | DEBUG1 | +0 | CheckFile - Attributes: FileDescription SevenZipSharp FileVersion 0.64.4841.31212 InternalName SevenZipSharp.dll LegalCopyright Copyright (C) Markovtsev Vadim 2009, 2010, licenced under LGPLv3 OriginalFilename SevenZipSharp.dll ProductName SevenZipSharp ProductVersion 0.64.4841.31212 CompanyName Markovtsev Vadim File Size: 165888 bytes Created: 3/25/2014 - 4:43:10 PM Modified: 3/26/2014 - 5:59:48 PM 20:31:23:898 | HL | INFO | +0 | CheckFile - Checking if E:\Hyperspin\Hyperlaunch\Module Extensions\gsdll32.dll exists 20:31:23:900 | HL | DEBUG1 | +0 | CheckFile - Attributes: File Size: 8818688 bytes Created: 3/25/2014 - 4:43:09 PM Modified: 3/26/2014 - 5:59:46 PM 20:31:23:901 | HL | INFO | +0 | CheckFile - Checking if E:\Hyperspin\Hyperlaunch\Module Extensions\BlockInput.exe exists 20:31:23:903 | HL | DEBUG1 | +16 | CheckFile - Attributes: FileDescription FileVersion 1.1.09.04 InternalName OriginalFilename ProductName ProductVersion 1.1.09.04 File Size: 657920 bytes Created: 3/25/2014 - 4:43:08 PM Modified: 3/26/2014 - 5:59:46 PM 20:31:23:905 | HL | INFO | +0 | CheckFile - Checking if E:\Hyperspin\Hyperlaunch\Module Extensions\gdip.ahk exists 20:31:23:911 | HL | DEBUG1 | +0 | CRC Check - CRC matches, this is an official unedited Extension. 20:31:23:913 | HL | DEBUG1 | +0 | CheckFile - Attributes: File Size: 88789 bytes Created: 3/25/2014 - 4:43:09 PM Modified: 3/26/2014 - 5:59:46 PM 20:31:23:914 | HL | INFO | +0 | CheckFile - Checking if E:\Hyperspin\Hyperlaunch\Module Extensions\RIni.ahk exists 20:31:23:918 | HL | DEBUG1 | +0 | CRC Check - CRC matches, this is an official unedited Extension. 20:31:23:920 | HL | DEBUG1 | +16 | CheckFile - Attributes: File Size: 67561 bytes Created: 3/26/2014 - 5:44:30 PM Modified: 3/26/2014 - 5:59:48 PM 20:31:23:921 | HL | INFO | +0 | CheckFile - Checking if E:\Hyperspin\Hyperlaunch\Module Extensions\CLR.ahk exists 20:31:23:925 | HL | DEBUG1 | +0 | CRC Check - CRC matches, this is an official unedited Extension. 20:31:23:927 | HL | DEBUG1 | +0 | CheckFile - Attributes: File Size: 10586 bytes Created: 3/25/2014 - 4:43:08 PM Modified: 3/26/2014 - 5:59:46 PM 20:31:23:928 | HL | INFO | +0 | CheckFile - Checking if E:\Hyperspin\Hyperlaunch\Module Extensions\COM.ahk exists 20:31:23:932 | HL | DEBUG1 | +0 | CRC Check - CRC matches, this is an official unedited Extension. 20:31:23:936 | HL | DEBUG1 | +15 | CheckFile - Attributes: File Size: 26342 bytes Created: 3/25/2014 - 4:43:08 PM Modified: 3/26/2014 - 5:59:46 PM 20:31:23:938 | HL | INFO | +0 | CheckFile - Checking if E:\Hyperspin\Hyperlaunch\Module Extensions\JSON.ahk exists 20:31:23:941 | HL | DEBUG1 | +0 | CRC Check - CRC matches, this is an official unedited Extension. 20:31:23:943 | HL | DEBUG1 | +0 | CheckFile - Attributes: File Size: 9203 bytes Created: 3/25/2014 - 4:43:10 PM Modified: 3/26/2014 - 5:59:47 PM 20:31:23:944 | HL | INFO | +0 | CheckFile - Checking if E:\Hyperspin\Hyperlaunch\Lib\Fade Init.ahk exists 20:31:23:948 | HL | DEBUG1 | +0 | CRC Check - CRC matches, this is an official unedited Library. 20:31:23:950 | HL | DEBUG1 | +16 | CheckFile - Attributes: File Size: 1145 bytes Created: 3/25/2014 - 4:43:07 PM Modified: 3/26/2014 - 5:59:39 PM 20:31:23:952 | HL | INFO | +0 | CheckFile - Checking if E:\Hyperspin\Hyperlaunch\Lib\HyperPause Init.ahk exists 20:31:23:954 | HL | DEBUG1 | +0 | CRC Check - CRC matches, this is an official unedited Library. 20:31:23:956 | HL | DEBUG1 | +0 | CheckFile - Attributes: File Size: 691 bytes Created: 3/25/2014 - 4:43:07 PM Modified: 3/26/2014 - 5:59:39 PM 20:31:23:957 | HL | INFO | +0 | CheckFile - Checking if E:\Hyperspin\Hyperlaunch\Lib\Keymapper Init.ahk exists 20:31:23:960 | HL | DEBUG1 | +0 | CRC Check - CRC matches, this is an official unedited Library. 20:31:23:961 | HL | DEBUG1 | +0 | CheckFile - Attributes: File Size: 3435 bytes Created: 3/25/2014 - 4:43:07 PM Modified: 3/26/2014 - 5:59:39 PM 20:31:23:963 | HL | INFO | +0 | CheckFile - Checking if E:\Hyperspin\Hyperlaunch\Lib\MultiGame Init.ahk exists 20:31:23:965 | HL | DEBUG1 | +0 | CRC Check - CRC matches, this is an official unedited Library. 20:31:23:967 | HL | DEBUG1 | +16 | CheckFile - Attributes: File Size: 161 bytes Created: 3/25/2014 - 4:43:07 PM Modified: 3/26/2014 - 5:59:39 PM 20:31:23:969 | HL | INFO | +0 | CheckFile - Checking if E:\Hyperspin\Hyperlaunch\Lib\Statistics Init.ahk exists 20:31:23:971 | HL | DEBUG1 | +0 | CRC Check - CRC matches, this is an official unedited Library. 20:31:23:973 | HL | DEBUG1 | +0 | CheckFile - Attributes: File Size: 167 bytes Created: 3/25/2014 - 4:43:07 PM Modified: 3/26/2014 - 5:59:39 PM 20:31:23:975 | HL | INFO | +0 | CheckFile - Checking if E:\Hyperspin\Hyperlaunch\Lib\Fade.ahk exists 20:31:23:977 | HL | DEBUG1 | +0 | CRC Check - CRC matches, this is an official unedited Library. 20:31:23:980 | HL | DEBUG1 | +0 | CheckFile - Attributes: File Size: 25516 bytes Created: 3/25/2014 - 4:43:07 PM Modified: 3/26/2014 - 5:59:39 PM 20:31:23:982 | HL | INFO | +15 | CheckFile - Checking if E:\Hyperspin\Hyperlaunch\Lib\HyperPause.ahk exists 20:31:23:993 | HL | DEBUG1 | +0 | CRC Check - CRC matches, this is an official unedited Library. 20:31:23:996 | HL | DEBUG1 | +0 | CheckFile - Attributes: File Size: 360180 bytes Created: 3/25/2014 - 4:43:07 PM Modified: 3/26/2014 - 5:59:39 PM 20:31:23:000 | HL | INFO | +16 | CheckFile - Checking if E:\Hyperspin\Hyperlaunch\Lib\Keymapper.ahk exists 20:31:24:003 | HL | DEBUG1 | +0 | CRC Check - CRC matches, this is an official unedited Library. 20:31:24:005 | HL | DEBUG1 | +0 | CheckFile - Attributes: File Size: 30775 bytes Created: 3/25/2014 - 4:43:07 PM Modified: 3/26/2014 - 5:59:39 PM 20:31:24:007 | HL | INFO | +0 | CheckFile - Checking if E:\Hyperspin\Hyperlaunch\Lib\MultiGame.ahk exists 20:31:24:010 | HL | DEBUG1 | +0 | CRC Check - CRC matches, this is an official unedited Library. 20:31:24:013 | HL | DEBUG1 | +15 | CheckFile - Attributes: File Size: 36816 bytes Created: 3/25/2014 - 4:43:07 PM Modified: 3/26/2014 - 5:59:39 PM 20:31:24:015 | HL | INFO | +0 | CheckFile - Checking if E:\Hyperspin\Hyperlaunch\Lib\Bezel.ahk exists 20:31:24:020 | HL | DEBUG1 | +0 | CRC Check - CRC matches, this is an official unedited Library. 20:31:24:021 | HL | DEBUG1 | +0 | CheckFile - Attributes: File Size: 83008 bytes Created: 3/25/2014 - 4:43:07 PM Modified: 3/26/2014 - 5:59:39 PM 20:31:24:023 | HL | INFO | +0 | CheckFile - Checking if E:\Hyperspin\Hyperlaunch\Lib\Statistics.ahk exists 20:31:24:026 | HL | DEBUG1 | +0 | CRC Check - CRC matches, this is an official unedited Library. 20:31:24:028 | HL | DEBUG1 | +16 | CheckFile - Attributes: File Size: 26153 bytes Created: 3/25/2014 - 4:43:07 PM Modified: 3/26/2014 - 5:59:39 PM 20:31:24:030 | HL | INFO | +0 | CheckFile - Checking if E:\Hyperspin\Hyperlaunch\Lib\Rom Mapping Launch Menu.ahk exists 20:31:24:033 | HL | DEBUG1 | +0 | CRC Check - CRC matches, this is an official unedited Library. 20:31:24:035 | HL | DEBUG1 | +0 | CheckFile - Attributes: File Size: 63798 bytes Created: 3/25/2014 - 4:43:07 PM Modified: 3/26/2014 - 5:59:39 PM 20:31:24:037 | HL | INFO | +0 | CheckFile - Checking if E:\Hyperspin\Hyperlaunch\Lib\Shared.ahk exists 20:31:24:041 | HL | DEBUG1 | +0 | CRC Check - CRC matches, this is an official unedited Library. 20:31:24:044 | HL | DEBUG1 | +16 | CheckFile - Attributes: File Size: 81966 bytes Created: 3/26/2014 - 5:44:31 PM Modified: 3/26/2014 - 5:59:39 PM 20:31:24:046 | HL | INFO | +0 | CheckFile - Checking if E:\Hyperspin\Hyperlaunch\Lib\XHotkey.ahk exists 20:31:24:049 | HL | DEBUG1 | +0 | CRC Check - CRC matches, this is an official unedited Library. 20:31:24:052 | HL | DEBUG1 | +0 | CheckFile - Attributes: File Size: 28374 bytes Created: 3/25/2014 - 4:43:08 PM Modified: 3/26/2014 - 5:59:40 PM 20:31:24:054 | HL | INFO | +0 | CheckFile - Checking if E:\Hyperspin\Hyperlaunch\Lib\Fade Animations.ahk exists 20:31:24:058 | HL | DEBUG1 | +0 | CRC Check - CRC matches, this is an official unedited Library. 20:31:24:060 | HL | DEBUG1 | +15 | CheckFile - Attributes: File Size: 49050 bytes Created: 3/25/2014 - 4:43:07 PM Modified: 3/26/2014 - 5:59:39 PM 20:31:24:062 | HL | INFO | +0 | Main - HyperLaunch received "Mikrosha" and "Pacman" 20:31:24:068 | HL | INFO | +0 | Main - Pacman is using the default emulator: Universal Emulator 20:31:24:070 | HL | INFO | +0 | Main - Checking for a [universal Emulator] section in E:\Hyperspin\Hyperlaunch\Settings\Mikrosha\Emulators.ini 20:31:24:073 | HL | INFO | +0 | Main - Checking for a [universal Emulator] section in E:\Hyperspin\Hyperlaunch\Settings\Global Emulators.ini 20:31:24:075 | HL | INFO | +16 | Main - Found [universal Emulator] in E:\Hyperspin\Hyperlaunch\Settings\Global Emulators.ini 20:31:24:078 | HL | INFO | +0 | CheckFile - Checking if E:\Hyperspin\Hyperlaunch\Modules\Mikrosha\Mikrosha.ahk exists 20:31:24:081 | HL | DEBUG1 | +0 | CheckFile - Attributes: File Size: 847 bytes Created: 4/19/2014 - 5:56:13 PM Modified: 4/19/2014 - 8:31:07 PM 20:31:24:083 | HL | WARNING | +0 | Main - CRC Check - Module has no CRC defined on the header. 20:31:24:085 | HL | INFO | +0 | Main - Pacman will use module: E:\Hyperspin\Hyperlaunch\Modules\Mikrosha\Mikrosha.ahk 20:31:24:094 | HL | INFO | +16 | Main - Using standard method with "Rom Extension" SkipChecks or without any SkipChecks. 20:31:24:097 | HL | INFO | +0 | Main - INI Keys read 20:31:24:100 | HL | INFO | +0 | CheckFile - Checking if C:\Program Files\7-Zip\7z.exe exists 20:31:24:102 | HL | DEBUG1 | +0 | CheckFile - Attributes: FileDescription 7-Zip Console FileVersion 9.20 InternalName 7z LegalCopyright Copyright (c) 1999-2010 Igor Pavlov OriginalFilename 7z.exe ProductName 7-Zip ProductVersion 9.20 CompanyName Igor Pavlov File Size: 284160 bytes Created: 11/18/2010 - 10:08:30 PM Modified: 11/18/2010 - 10:08:30 PM 20:31:24:104 | HL | INFO | +0 | CheckFile - Checking if C:\Program Files\7-Zip\7z.dll exists 20:31:24:107 | HL | DEBUG1 | +15 | CheckFile - Attributes: FileDescription 7z Standalone Plugin FileVersion 9.20 InternalName 7za LegalCopyright Copyright (c) 1999-2010 Igor Pavlov OriginalFilename 7za.dll ProductName 7-Zip ProductVersion 9.20 CompanyName Igor Pavlov File Size: 1422336 bytes Created: 11/18/2010 - 10:24:20 PM Modified: 11/18/2010 - 10:24:20 PM 20:31:24:109 | HL | INFO | +0 | CheckPaths - Started 20:31:24:112 | HL | DEBUG1 | +0 | CheckPaths - Looking for rom: E:\Hyperspin Roms\Mikrosha\Roms\Pacman.rkm 20:31:24:114 | HL | INFO | +0 | CheckPaths - Found rom: E:\Hyperspin Roms\Mikrosha\Roms\Pacman.rkm 20:31:24:116 | HL | DEBUG1 | +0 | CheckPaths - Current romName: Pacman 20:31:24:119 | HL | DEBUG1 | +0 | CheckPaths - Current romPath: E:\Hyperspin Roms\Mikrosha\Roms 20:31:24:121 | HL | DEBUG1 | +0 | CheckPaths - Current romExtension: .rkm 20:31:24:123 | HL | INFO | +16 | CheckFile - Checking if E:\Hyperspin\Emulators\Universal Emulator\EMU.exe exists 20:31:24:126 | HL | DEBUG1 | +0 | CheckFile - Attributes: FileDescription EMU MFC Application FileVersion 1, 0, 0, 1 InternalName EMU LegalCopyright Copyright (C) 2005-2011 OriginalFilename EMU.EXE ProductName EMU Application ProductVersion 1, 0, 0, 1 File Size: 274432 bytes Created: 4/19/2014 - 5:56:27 PM Modified: 1/13/2014 - 9:04:26 AM 20:31:24:128 | HL | INFO | +0 | CheckPaths - Ended 20:31:24:131 | HL | INFO | +0 | BuildScript - User Variables: ;---------------------------------------------------------------------------- ; INJECTED VARIABLES ;---------------------------------------------------------------------------- #NoTrayIcon #InstallKeybdHook DetectHiddenWindows, ON SetTitleMatchMode, 2 SendMode, Event 0 = 2 hlMode = frontendPID = 5428 frontendPath = E:\Hyperspin frontendExe = HyperSpin.exe frontendExt = exe frontendName = HyperSpin frontendDrive = E: exitEmulatorKey = F&V exitEmulatorKeyWait = 0 forceHoldKey = ~Esc restoreFE = Restore exitScriptKey = ` toggleCursorKey = ~e & ~t emuFullPath = E:\Hyperspin\Emulators\Universal Emulator\EMU.exe emuPath = E:\Hyperspin\Emulators\Universal Emulator emuName = Universal Emulator emuExt = exe romPath = E:\Hyperspin Roms\Mikrosha\Roms romPathFromIni = E:\Hyperspin Roms\Mikrosha\Roms romExtension = .rkm romExtensionOrig = .rkm romExtensions = rkm executable = EMU.exe systemName = Mikrosha dbName = Pacman romName = Pacman romMapPath = romMappingEnabled = false romMappingLaunchMenuEnabled = false romMappingFirstMatchingExt = false romMappingShowAllRomsInArchive = true romMappingNumberOfWheelsByScreen = 7 romMappingMenuWidth = 300 romMappingMenuMargin = 50 romMappingTextFont = Bebas Neue romMappingTextOptions = cFFFFFFFF r4 s40 Bold romMappingDisabledTextColor = ff888888 romMappingTextSizeDifference = 5 romMappingTextMargin = 10 romMappingTitleTextFont = Bebas Neue romMappingTitleTextOptions = cFFFFFFFF r4 s60 Bold romMappingTitle2TextFont = Bebas Neue romMappingTitle2TextOptions = cFFFFFFFF r4 s15 Bold romMappingGameInfoTextFont = Bebas Neue romMappingGameInfoTextOptions = cFFFFFFFF r4 s15 Regular romMappingBackgroundBrush = aa000000 romMappingColumnBrush = 33000000 romMappingButtonBrush1 = 6f000000 romMappingButtonBrush2 = 33000000 romMappingBackgroundAlign = Stretch and Lose Aspect romMappingMenuFlagWidth = 40 romMappingMenuFlagSeparation = 5 romMappingDefaultMenuList = FullList romMappingSingleFilteredRomAutomaticLaunch = false skipchecks = false romMatchExt = true blockInputTime = 0 blockInputFile = E:\Hyperspin\Hyperlaunch\Module Extensions\BlockInput.exe errorLevelReporting = false logFile = E:\Hyperspin\Hyperlaunch\HyperLaunch.log logLabel := [" INFO"," WARNING"," ERROR"," DEBUG1"," DEBUG2"] logLevel = 10 logIncludeModule = true logIncludeFileProperties = true logShowCommandWindow = false logCommandWindow = true sysLang = English_United_States navUpKey = Up navDownKey = Down navLeftKey = Left navRightKey = Right navSelectKey = Z navP2UpKey = Numpad8 navP2DownKey = Numpad2 navP2LeftKey = Numpad4 navP2RightKey = Numpad6 navP2SelectKey = NumpadEnter|M originalWidth = 1360 originalHeight = 768 dtEnabled = false dtPath = E:\Program Files\DAEMON Tools Lite\DTLite.exe dtUseSCSI = false dtAddDrive = true emuIdleShutdown = 0 hideCursor = false hideEmu = false hideFE = false fadeIn = true fadeInDuration = 250 fadeInTransitionAnimation = LegacyFadeInTransition fadeInDelay = 0 fadeInExitDelay = 0 fadeOutExitDelay = 0 fadeOut = false fadeOutExtraScreen = false fadeOutDuration = 500 fadeOutTransitionAnimation = DefaultAnimateFadeOut fadeOutDelay = 0 fadeLyrInterpolation = 7 fadeLyr1Color = FF000000 fadeLyr1AlignImage = Align to Top Left fadeLyr2Pos = Bottom Right Corner fadeLyr2X = 300 fadeLyr2Y = 300 fadeLyr2Adjust = 1 fadeLyr2PicPad = 0 fadeLyr3Pos = Center fadeLyr3X = 300 fadeLyr3Y = 300 fadeLyr3Adjust = 0.75 fadeLyr3Speed = 750 fadeLyr3Animation = DefaultFadeAnimation fadeLyr37zAnimation = DefaultFadeAnimation fadeLyr3Type = imageandbar fadeLyr3ImgFollow7zProgress = true fadeLyr3Repeat = 1 fadeLyr3PicPad = 0 fadeLyr4Adjust = 0.75 fadeLyr4X = 100 fadeLyr4Y = 100 fadeLyr4Pos = Above Layer 3 - Left fadeLyr4FPS = 10 fadeLyr4PicPad = 0 fadeTranspGifColor = FFFFFF fadeBarWindow = true fadeBarWindowX = fadeBarWindowY = fadeBarWindowW = 600 fadeBarWindowH = 120 fadeBarWindowR = 20 fadeBarWindowM = 20 fadeBarWindowHatchStyle = 8 fadeBarBack = true fadeBarBackColor = FF555555 fadeBarH = 20 fadeBarR = 5 fadeBarColor = DDFFFB00 fadeBarHatchStyle = 3 fadeBarPercentageText = true fadeBarInfoText = true fadeBarXOffset = 0 fadeBarYOffset = 100 fadeRomInfoDescription = text fadeRomInfoSystemName = text with label fadeRomInfoYear = text fadeRomInfoManufacturer = text fadeRomInfoGenre = text fadeRomInfoRating = text fadeRomInfoOrder = Description|SystemName|Year|Manufacturer|Genre|Rating fadeRomInfoTextPlacement = topRight fadeRomInfoTextMargin = 5 fadeRomInfoText1Options = cFF555555 r4 s20 Bold fadeRomInfoText2Options = cFF555555 r4 s20 Bold fadeRomInfoText3Options = cFF555555 r4 s20 Bold fadeRomInfoText4Options = cFF555555 r4 s20 Bold fadeRomInfoText5Options = cFF555555 r4 s20 Bold fadeRomInfoText6Options = cFF555555 r4 s20 Bold fadeStats_Number_of_Times_Played = disabled fadeStats_Last_Time_Played = disabled fadeStats_Average_Time_Played = disabled fadeStats_Total_Time_Played = disabled fadeStats_System_Total_Played_Time = disabled fadeStats_Total_Global_Played_Time = disabled fadeStatsInfoOrder = Number_of_Times_Played|Last_Time_Played|Average_Time_Played|Total_Time_Played|System_Total_Played_Time|Total_Global_Played_Time fadeStatsInfoTextPlacement = topLeft fadeStatsInfoTextMargin = 5 fadeStatsInfoText1Options = cFF555555 r4 s20 Bold fadeStatsInfoText2Options = cFF555555 r4 s20 Bold fadeStatsInfoText3Options = cFF555555 r4 s20 Bold fadeStatsInfoText4Options = cFF555555 r4 s20 Bold fadeStatsInfoText5Options = cFF555555 r4 s20 Bold fadeStatsInfoText6Options = cFF555555 r4 s20 Bold fadeText1X = 0 fadeText1Y = 0 fadeText1Options = cFFFFFFFF r4 s20 Right Bold fadeText1 = Loading Game fadeText2X = 0 fadeText2Y = 0 fadeText2Options = cFFFFFFFF r4 s20 Right Bold fadeText2 = Extraction Complete fadeFont = Arial fadeSystemAndRomLayersOnly = false fadeInterruptKey = detectFadeErrorEnabled = true fadeImgPath = E:\Hyperspin\Hyperlaunch\Media\Fade HLDataPath = E:\Hyperspin\Hyperlaunch\Data HLMediaPath = E:\Hyperspin\Hyperlaunch\Media HLErrSoundPath = E:\Hyperspin\Hyperlaunch\Media\Sounds\Error modulesPath = E:\Hyperspin\Hyperlaunch\Modules moduleFullName = E:\Hyperspin\Hyperlaunch\Modules\Mikrosha\Mikrosha.ahk moduleName = Mikrosha modulePath = E:\Hyperspin\Hyperlaunch\Modules\Mikrosha moduleExtension = ahk moduleExtensionsPath = E:\Hyperspin\Hyperlaunch\Module Extensions libPath = E:\Hyperspin\Hyperlaunch\Lib 7zEnabled = false 7zPath = C:\Program Files\7-Zip\7z.exe 7zDllPath = C:\Program Files\7-Zip\7z.dll 7zExtractPath = E:\Hyperspin\Temporary Game Folder 7zExtractPathOrig = 7zAttachSystemName = false 7zDelTemp = false 7zSounds = false 7zFormats = .zip,.rar,.7z,.lzh,.gzip,.tar 7zFormatsNoP = zip,rar,7z,lzh,gzip,tar mgEnabled = false mgKey = ~NumpadSub mgBackgroundColor = FEFFFFFF mgSidePadding = 0.2 mgYOffset = 500 mgImageAdjust = 1 mgFont = Arial mgText1Options = x10p y30p w80p Center cBBFFFFFF r4 s100 BoldItalic mgText1Text = Please select a game mgText2Options = w96p cFFFFFFFF r4 s50 Center BoldItalic mgText2Offset = 70 mgUseSound = true mgSoundfreq = 300 mgExitEffect = none mgSelectedEffect = rotate mgUseGameArt = false mgArtworkDir = Artwork1 hpEnabled = false hpKey = ~NumpadAdd hpBackToMenuBarKey = X hpZoomInKey = C hpZoomOutKey = V hpScreenshotKey = ~PrintScreen hpHiToTextPath = E:\Hyperspin\Hyperlaunch\Module Extensions\HiToText.exe hpSaveStateKeyCodes = hpLoadStateKeyCodes = keymapperEnabled = true keymapperAHKMethod = false keymapper = xpadder xpadderFullPath = E:\Hyperspin\Utilities\Xpadder\Xpadder.exe joyToKeyFullPath = E:\Hyperspin\Utilities\JoyToKey\JoyToKey.exe keymapperProfilePath = E:\Hyperspin\Hyperlaunch\Profiles\xpadder keymapperFrontEndProfileName = HyperSpin keymapperFrontEndProfile = xpadder keymapperHyperLaunchProfileEnabled = false JoyIDsEnabled = false JoyIDsPreferredControllersSystem = use_global JoyIDsPreferredControllersGlobal = use_global CustomJoyNamesEnabled = false CustomJoyNames = FEProfile = E:\Hyperspin\Hyperlaunch\Profiles\xpadder\HyperSpin defaultProfile = E:\Hyperspin\Hyperlaunch\Profiles\xpadder\_Default systemProfile = E:\Hyperspin\Hyperlaunch\Profiles\xpadder\Mikrosha xPadderSystemProfile = E:\Hyperspin\Hyperlaunch\Profiles\xpadder\Mikrosha\_Default emuProfile = E:\Hyperspin\Hyperlaunch\Profiles\xpadder\Mikrosha\Universal Emulator romProfile = E:\Hyperspin\Hyperlaunch\Profiles\xpadder\Mikrosha\Pacman HyperLaunchProfile = E:\Hyperspin\Hyperlaunch\Profiles\xpadder\HyperLaunch blankProfile = E:\Hyperspin\Hyperlaunch\Profiles\xpadder\_Default\blank ahkFEProfile = E:\Hyperspin\Hyperlaunch\Profiles\AHK\HyperSpin ahkDefaultProfile = E:\Hyperspin\Hyperlaunch\Profiles\AHK\_Default ahkSystemProfile = E:\Hyperspin\Hyperlaunch\Profiles\AHK\Mikrosha ahkEmuProfile = E:\Hyperspin\Hyperlaunch\Profiles\AHK\Mikrosha\Universal Emulator ahkRomProfile = E:\Hyperspin\Hyperlaunch\Profiles\AHK\Mikrosha\Pacman ahkHyperLaunchProfile = E:\Hyperspin\Hyperlaunch\Profiles\AHK\HyperLaunch bezelEnabled = false statisticsEnabled = true 20:31:24:133 | HL | INFO | +0 | BuildScript - Loaded XHotkey Init.ahk scripts 20:31:24:135 | HL | INFO | +0 | BuildScript - Loaded Keymapper Init.ahk scripts 20:31:24:137 | HL | INFO | +15 | BuildScript - Loaded Fade Init.ahk scripts 20:31:24:139 | HL | INFO | +0 | BuildScript - Loaded Statistics Init.ahk scripts 20:31:24:141 | HL | INFO | +0 | BuildScript - Loaded User Functions Init.ahk script 20:31:24:143 | HL | DEBUG1 | +0 | BuildScript - Module starts on line: 2 20:31:24:145 | HL | INFO | +0 | BuildScript - Module: MEmu = EMU MEmuV = 1.01 URL = http://bashkiria-2m.narod.ru/index/files/0-11 MAuthor = craiganderson MVersion = 1.0 MCRC = iCRC = MID = MSystem = "Mikrosha" ;---------------------------------------------------------------------------- ; ; ;---------------------------------------------------------------------------- StartModule() FadeInStart() 7z(romPath, romName, romExtension, 7zExtractPath) Run(executable . " """ . romPath . "\" . romName . romExtension . """ ", emuPath) SetTitleMatchMode, RegEx SetTitleMatchMode, Slow WinWait("ahk_class Afx:400000:b:10003:6") WinWaitActive("ahk_class Afx:400000:b:10003:6") FadeInExit() Process("WaitClose", executable) 7zCleanUp() FadeOutExit() ExitModule() CloseProcess: FadeOutStart() WinClose("ahk_class Afx:400000:b:10003:6") Return 20:31:24:148 | HL | INFO | +0 | BuildScript - Loaded Statistics.ahk script 20:31:24:150 | HL | INFO | +0 | BuildScript - Loaded User Functions.ahk script 20:31:24:152 | HL | INFO | +0 | BuildScript - Finished injecting functions into module 20:31:24:155 | HL | INFO | +16 | Main - Module is built 20:31:24:157 | HL | INFO | +0 | CheckFile - Checking if E:\Hyperspin\Hyperlaunch\AutoHotkey.dll exists 20:31:24:159 | HL | DEBUG1 | +0 | CheckFile - Attributes: FileDescription AutoHotkey_H ANSI 32-bit FileVersion 1.1.09.04 InternalName AutoHotkey_H LegalCopyright Copyright (C) 2012 OriginalFilename AutoHotkey.exe ProductName AutoHotkey_H ProductVersion 1.1.09.04 File Size: 785408 bytes Created: 3/25/2014 - 1:26:39 PM Modified: 3/26/2014 - 5:59:25 PM 20:31:24:162 | HL | INFO | +0 | Main - Running module 20:31:24:165 | HL | INFO | +0 | Main - Starting timer to watch if Front End gets displaced and restore it if it does. 20:31:24:242 | MD | INFO | +N/A | Module initialized 20:31:24:245 | MD | INFO | +0 | CheckFile - Checking if E:\Hyperspin\Utilities\Xpadder\Xpadder.exe exists 20:31:24:267 | MD | DEBUG1 | +31 | CheckFile - Attributes: File Size: 1169408 bytes Created: 3/30/2014 - 10:56:22 PM Modified: 10/27/2013 - 5:57:52 AM 20:31:24:272 | MD | INFO | +0 | Keymapper - Loading xpadder 20:31:24:295 | MD | DEBUG2 | +32 | Keymapper - Joysticks Detected: 1100000000000000 20:31:24:307 | MD | DEBUG2 | +0 | Keymapper - Searching -> E:\Hyperspin\Hyperlaunch\Profiles\xpadder\Mikrosha\Pacman\Controller (Afterglow Gamepad for Xbox 360)\p1.xpadderprofile 20:31:24:333 | MD | DEBUG2 | +31 | Keymapper - Searching -> E:\Hyperspin\Hyperlaunch\Profiles\xpadder\Mikrosha\Pacman\p1.xpadderprofile 20:31:24:361 | MD | DEBUG2 | +31 | Keymapper - Searching -> E:\Hyperspin\Hyperlaunch\Profiles\xpadder\Mikrosha\Universal Emulator\Controller (Afterglow Gamepad for Xbox 360)\p1.xpadderprofile 20:31:24:368 | MD | DEBUG2 | +0 | Keymapper - Searching -> E:\Hyperspin\Hyperlaunch\Profiles\xpadder\Mikrosha\Universal Emulator\p1.xpadderprofile 20:31:24:394 | MD | DEBUG2 | +31 | Keymapper - Searching -> E:\Hyperspin\Hyperlaunch\Profiles\xpadder\Mikrosha\_Default\Controller (Afterglow Gamepad for Xbox 360)\p1.xpadderprofile 20:31:24:402 | MD | DEBUG2 | +0 | Keymapper - Searching -> E:\Hyperspin\Hyperlaunch\Profiles\xpadder\Mikrosha\_Default\p1.xpadderprofile 20:31:24:424 | MD | DEBUG2 | +32 | Keymapper - Searching -> E:\Hyperspin\Hyperlaunch\Profiles\xpadder\_Default\Controller (Afterglow Gamepad for Xbox 360)\p1.xpadderprofile 20:31:24:432 | MD | DEBUG2 | +0 | Keymapper - Searching -> E:\Hyperspin\Hyperlaunch\Profiles\xpadder\_Default\p1.xpadderprofile 20:31:24:454 | MD | INFO | +31 | Keymapper - Loading Profile -> E:\Hyperspin\Hyperlaunch\Profiles\xpadder\_Default\p1.xpadderprofile 20:31:24:462 | MD | DEBUG2 | +0 | Keymapper - Searching -> E:\Hyperspin\Hyperlaunch\Profiles\xpadder\Mikrosha\Pacman\Logitech Dual Action\p2.xpadderprofile 20:31:24:490 | MD | DEBUG2 | +31 | Keymapper - Searching -> E:\Hyperspin\Hyperlaunch\Profiles\xpadder\Mikrosha\Pacman\p2.xpadderprofile 20:31:24:496 | MD | DEBUG2 | +0 | Keymapper - Searching -> E:\Hyperspin\Hyperlaunch\Profiles\xpadder\Mikrosha\Universal Emulator\Logitech Dual Action\p2.xpadderprofile 20:31:24:520 | MD | DEBUG2 | +31 | Keymapper - Searching -> E:\Hyperspin\Hyperlaunch\Profiles\xpadder\Mikrosha\Universal Emulator\p2.xpadderprofile 20:31:24:548 | MD | DEBUG2 | +32 | Keymapper - Searching -> E:\Hyperspin\Hyperlaunch\Profiles\xpadder\Mikrosha\_Default\Logitech Dual Action\p2.xpadderprofile 20:31:24:556 | MD | DEBUG2 | +0 | Keymapper - Searching -> E:\Hyperspin\Hyperlaunch\Profiles\xpadder\Mikrosha\_Default\p2.xpadderprofile 20:31:24:574 | MD | DEBUG2 | +31 | Keymapper - Searching -> E:\Hyperspin\Hyperlaunch\Profiles\xpadder\_Default\Logitech Dual Action\p2.xpadderprofile 20:31:24:582 | MD | DEBUG2 | +0 | Keymapper - Searching -> E:\Hyperspin\Hyperlaunch\Profiles\xpadder\_Default\p2.xpadderprofile 20:31:24:588 | MD | INFO | +0 | Keymapper - Loading Profile -> E:\Hyperspin\Hyperlaunch\Profiles\xpadder\_Default\p2.xpadderprofile 20:31:24:613 | MD | DEBUG2 | +31 | Keymapper - Closing xpadder to refresh controllers seen by xpadder 20:31:24:653 | MD | DEBUG2 | +47 | Keymapper - Creating an array of connected controllers and profiles to arrange according to the order found in E:\Hyperspin\Utilities\Xpadder\xpadder.ini 20:31:24:771 | MD | DEBUG2 | +109 | Keymapper - Reading the order in E:\Hyperspin\Utilities\Xpadder\xpadder.ini and arranging profiles found to match that order 20:31:24:801 | MD | INFO | +32 | Keymapper - Run,Xpadder.exe "E:\Hyperspin\Hyperlaunch\Profiles\xpadder\_Default\p1.xpadderprofile" "E:\Hyperspin\Hyperlaunch\Profiles\xpadder\_Default\p2.xpadderprofile" /M, E:\Hyperspin\Utilities\Xpadder, Hide 20:31:24:827 | MD | DEBUG1 | +31 | fadeInTransitionAnimation: LegacyFadeInTransition 20:31:24:830 | MD | DEBUG1 | +0 | fadeOutTransitionAnimation: DefaultAnimateFadeOut 20:31:24:833 | MD | DEBUG1 | +0 | fadeLyr3Animation: DefaultFadeAnimation 20:31:24:836 | MD | DEBUG1 | +0 | fadeLyr37zAnimation: DefaultFadeAnimation 20:31:24:839 | MD | INFO | +0 | StartModule - Started 20:31:24:841 | MD | INFO | +16 | StartModule - MEmu: EMU MEmuV: 1.01 MURL: MAuthor: craiganderson MVersion: 1.0 MCRC: iCRC: MID: MSystem: "Mikrosha" 20:31:24:844 | MD | INFO | +0 | StartModule - You have a supported System Name for this module: "Mikrosha" 20:31:24:847 | MD | DEBUG1 | +0 | StartModule - Leaving romName as is because Rom Mapping filled it with an Alternate_Rom_Name: Pacman 20:31:24:850 | MD | INFO | +0 | StartModule - Ended 20:31:24:853 | MD | DEBUG1 | +0 | FadeInStart - Started 20:31:24:857 | MD | DEBUG1 | +15 | GetFadePicFile - Checking if any Fade Layer 1 images exist in: E:\Hyperspin\Hyperlaunch\Media\Fade\Mikrosha\Pacman\Layer 1*.* 20:31:24:860 | MD | DEBUG1 | +0 | GetFadePicFile - Checking if any Fade Layer 1 images exist in: E:\Hyperspin\Hyperlaunch\Media\Fade\Mikrosha\_Default\Layer 1*.* 20:31:24:862 | MD | DEBUG1 | +0 | GetFadePicFile - Checking if any Fade Layer 1 images exist in: E:\Hyperspin\Hyperlaunch\Media\Fade\_Default\Layer 1*.* 20:31:24:864 | MD | DEBUG1 | +0 | GetFadePicFile - Looking for Fade Layer 1 pic: E:\Hyperspin\Hyperlaunch\Media\Fade\_Default\Layer 1*.png 20:31:24:867 | MD | DEBUG1 | +0 | GetFadePicFile - Found Fade Layer 1 pic: E:\Hyperspin\Hyperlaunch\Media\Fade\_Default\Layer 1.png 20:31:24:869 | MD | DEBUG1 | +0 | GetFadePicFile - Looking for Fade Layer 1 pic: E:\Hyperspin\Hyperlaunch\Media\Fade\_Default\Layer 1*.gif 20:31:24:871 | MD | DEBUG1 | +0 | GetFadePicFile - Looking for Fade Layer 1 pic: E:\Hyperspin\Hyperlaunch\Media\Fade\_Default\Layer 1*.tif 20:31:24:873 | MD | DEBUG1 | +16 | GetFadePicFile - Looking for Fade Layer 1 pic: E:\Hyperspin\Hyperlaunch\Media\Fade\_Default\Layer 1*.bmp 20:31:24:875 | MD | DEBUG1 | +0 | GetFadePicFile - Looking for Fade Layer 1 pic: E:\Hyperspin\Hyperlaunch\Media\Fade\_Default\Layer 1*.jpg 20:31:24:877 | MD | INFO | +0 | GetFadePicFile - Randomized images and Fade Layer 1 will use E:\Hyperspin\Hyperlaunch\Media\Fade\_Default\Layer 1.png 20:31:24:879 | MD | DEBUG1 | +0 | GetFadePicFile - Checking if any Fade Layer 2 images exist in: E:\Hyperspin\Hyperlaunch\Media\Fade\Mikrosha\Pacman\Layer 2*.* 20:31:24:881 | MD | DEBUG1 | +0 | GetFadePicFile - Checking if any Fade Layer 2 images exist in: E:\Hyperspin\Hyperlaunch\Media\Fade\Mikrosha\_Default\Layer 2*.* 20:31:24:883 | MD | DEBUG1 | +0 | GetFadePicFile - Checking if any Fade Layer 2 images exist in: E:\Hyperspin\Hyperlaunch\Media\Fade\_Default\Layer 2*.* 20:31:24:885 | MD | DEBUG1 | +0 | GetFadePicFile - Looking for Fade Layer 2 pic: E:\Hyperspin\Hyperlaunch\Media\Fade\_Default\Layer 2*.png 20:31:24:888 | MD | DEBUG1 | +15 | GetFadePicFile - Found Fade Layer 2 pic: E:\Hyperspin\Hyperlaunch\Media\Fade\_Default\Layer 2 (HS alt).png 20:31:24:890 | MD | DEBUG1 | +0 | GetFadePicFile - Found Fade Layer 2 pic: E:\Hyperspin\Hyperlaunch\Media\Fade\_Default\Layer 2.png 20:31:24:892 | MD | DEBUG1 | +0 | GetFadePicFile - Looking for Fade Layer 2 pic: E:\Hyperspin\Hyperlaunch\Media\Fade\_Default\Layer 2*.gif 20:31:24:895 | MD | DEBUG1 | +0 | GetFadePicFile - Looking for Fade Layer 2 pic: E:\Hyperspin\Hyperlaunch\Media\Fade\_Default\Layer 2*.tif 20:31:24:897 | MD | DEBUG1 | +0 | GetFadePicFile - Looking for Fade Layer 2 pic: E:\Hyperspin\Hyperlaunch\Media\Fade\_Default\Layer 2*.bmp 20:31:24:899 | MD | DEBUG1 | +0 | GetFadePicFile - Looking for Fade Layer 2 pic: E:\Hyperspin\Hyperlaunch\Media\Fade\_Default\Layer 2*.jpg 20:31:24:901 | MD | INFO | +0 | GetFadePicFile - Randomized images and Fade Layer 2 will use E:\Hyperspin\Hyperlaunch\Media\Fade\_Default\Layer 2.png 20:31:24:979 | MD | INFO | +79 | LegacyFadeInTransition - Started 20:31:24:981 | MD | INFO | +15 | LegacyFadeInTransition - Drawing First FadeIn Image. 20:31:25:233 | MD | INFO | +250 | LegacyFadeInTransition - Ended 20:31:25:237 | MD | INFO | +0 | DefaultFadeAnimation - Started 20:31:25:239 | MD | DEBUG1 | +0 | GetFadePicFile - Checking if any Fade Layer 3 images exist in: E:\Hyperspin\Hyperlaunch\Media\Fade\Mikrosha\Pacman\Layer 3*.* 20:31:25:243 | MD | DEBUG1 | +0 | GetFadePicFile - Checking if any Fade Layer 3 images exist in: E:\Hyperspin\Hyperlaunch\Media\Fade\Mikrosha\_Default\Layer 3*.* 20:31:25:247 | MD | DEBUG1 | +16 | GetFadePicFile - Checking if any Fade Layer 3 images exist in: E:\Hyperspin\Hyperlaunch\Media\Fade\_Default\Layer 3*.* 20:31:25:252 | MD | DEBUG1 | +0 | GetFadePicFile - Looking for Fade Layer 3 pic: E:\Hyperspin\Hyperlaunch\Media\Fade\_Default\Layer 3*.png 20:31:25:254 | MD | DEBUG1 | +0 | GetFadePicFile - Found Fade Layer 3 pic: E:\Hyperspin\Hyperlaunch\Media\Fade\_Default\Layer 3.png 20:31:25:256 | MD | DEBUG1 | +0 | GetFadePicFile - Looking for Fade Layer 3 pic: E:\Hyperspin\Hyperlaunch\Media\Fade\_Default\Layer 3*.gif 20:31:25:258 | MD | DEBUG1 | +0 | GetFadePicFile - Looking for Fade Layer 3 pic: E:\Hyperspin\Hyperlaunch\Media\Fade\_Default\Layer 3*.tif 20:31:25:260 | MD | DEBUG1 | +0 | GetFadePicFile - Looking for Fade Layer 3 pic: E:\Hyperspin\Hyperlaunch\Media\Fade\_Default\Layer 3*.bmp 20:31:25:263 | MD | DEBUG1 | +15 | GetFadePicFile - Looking for Fade Layer 3 pic: E:\Hyperspin\Hyperlaunch\Media\Fade\_Default\Layer 3*.jpg 20:31:25:267 | MD | INFO | +0 | GetFadePicFile - Randomized images and Fade Layer 3 will use E:\Hyperspin\Hyperlaunch\Media\Fade\_Default\Layer 3.png 20:31:25:273 | MD | INFO | +0 | ReadHyperSpinXML - Started 20:31:25:276 | MD | INFO | +0 | ReadHyperSpinXML - Ended 20:31:25:279 | MD | INFO | +16 | CreateRomTable - Started 20:31:25:281 | MD | DEBUG1 | +0 | CreateRomTable - Checking for match: "Pacman" and "(Disc" 20:31:25:283 | MD | DEBUG1 | +0 | CreateRomTable - Checking for match: "Pacman" and "(Disk" 20:31:25:287 | MD | DEBUG1 | +0 | CreateRomTable - Checking for match: "Pacman" and "(Cart" 20:31:25:289 | MD | DEBUG1 | +0 | CreateRomTable - Checking for match: "Pacman" and "(Tape" 20:31:25:291 | MD | DEBUG1 | +0 | CreateRomTable - Checking for match: "Pacman" and "(Cassette" 20:31:25:293 | MD | DEBUG1 | +0 | CreateRomTable - Checking for match: "Pacman" and "(Part" 20:31:25:295 | MD | DEBUG1 | +16 | CreateRomTable - Checking for match: "Pacman" and "(Side" 20:31:25:297 | MD | INFO | +0 | CreateRomTable - Ended, 7 Loops to create table. 20:31:26:136 | MD | INFO | +828 | DefaultFadeAnimation - Ended 20:31:26:166 | MD | DEBUG1 | +31 | FadeInDelay - Started 20:31:26:196 | MD | DEBUG1 | +31 | FadeInDelay - Ended 20:31:26:227 | MD | DEBUG1 | +32 | FadeInStart - Ended 20:31:26:231 | MD | INFO | +15 | StartGlobalUserFeatures - Starting 20:31:26:235 | MD | INFO | +0 | StartGlobalUserFeatures - Ending 20:31:26:239 | MD | DEBUG1 | +0 | CoverFE - Started 20:31:26:246 | MD | DEBUG1 | +16 | CoverFE - Ended 20:31:26:250 | MD | INFO | +0 | Run - Running: E:\Hyperspin\Emulators\Universal Emulator\EMU.exe "E:\Hyperspin Roms\Mikrosha\Roms\Pacman.rkm" 20:31:26:269 | MD | DEBUG1 | +15 | Run - "EMU.exe "E:\Hyperspin Roms\Mikrosha\Roms\Pacman.rkm" " Process ID: 5560 20:31:26:272 | MD | DEBUG1 | +0 | GetActiveWindowStatus - Title: CoverFE | Class: AutoHotkeyGUI | State: 0 | X: 0 | Y: 0 | Width: 1360 | Height: 768 | Window HWND: 0x650800 | Process ID: 5072 | Process Path: E:\Hyperspin\HyperLaunch\HyperLaunch.exe 20:31:26:274 | MD | INFO | +0 | WinWait - Waiting for "ahk_class Afx:400000:b:10003:6" 20:31:26:429 | MD | DEBUG1 | +157 | GetActiveWindowStatus - Title: Pacman.rkm - Ìèêðîøà | Class: Afx:400000:b:10003:6:eb033f | State: 0 | X: 204 | Y: 316 | Width: 488 | Height: 406 | Window HWND: 0x4f09e0 | Process ID: 5560 | Process Path: E:\Hyperspin\Emulators\Universal Emulator\EMU.exe 20:31:26:436 | MD | DEBUG1 | +15 | GetActiveWindowStatus - Title: Pacman.rkm - Ìèêðîøà | Class: Afx:400000:b:10003:6:eb033f | State: 0 | X: 204 | Y: 316 | Width: 488 | Height: 406 | Window HWND: 0x4f09e0 | Process ID: 5560 | Process Path: E:\Hyperspin\Emulators\Universal Emulator\EMU.exe 20:31:26:443 | MD | INFO | +0 | WinWaitActive - Waiting for "ahk_class Afx:400000:b:10003:6" 20:31:26:552 | MD | DEBUG1 | +110 | GetActiveWindowStatus - Title: Pacman.rkm - Ìèêðîøà | Class: Afx:400000:b:10003:6:eb033f | State: 0 | X: 204 | Y: 316 | Width: 488 | Height: 406 | Window HWND: 0x4f09e0 | Process ID: 5560 | Process Path: E:\Hyperspin\Emulators\Universal Emulator\EMU.exe 20:31:26:560 | MD | INFO | +15 | Process - WaitClose EMU.exe 20:31:26:575 | MD | DEBUG1 | +16 | FadeInExit - Started 20:31:26:582 | MD | INFO | +0 | LegacyFadeInTransition - Started 20:31:26:858 | MD | INFO | +281 | LegacyFadeInTransition - Ended 20:31:26:890 | MD | DEBUG1 | +31 | FadeInExit - Ended, waiting for user to close launched application 20:31:29:155 | MD | DEBUG1 | +2266 | CloseProcess - Started, user requested to end launched application 20:31:29:163 | MD | DEBUG1 | +0 | ShowFE - Started 20:31:29:188 | MD | DEBUG1 | +31 | ShowFE - Ended 20:31:29:195 | MD | INFO | +0 | WinClose - Closing: ahk_class Afx:400000:b:10003:6 20:31:29:327 | MD | DEBUG1 | +141 | CloseProcess - Ended 20:31:30:771 | MD | DEBUG1 | +1437 | CloseProcess - Started, user requested to end launched application 20:31:30:795 | MD | DEBUG1 | +32 | ShowFE - Started 20:31:30:802 | MD | DEBUG1 | +0 | ShowFE - Ended 20:31:30:808 | MD | INFO | +0 | WinClose - Closing: ahk_class Afx:400000:b:10003:6 20:31:30:943 | MD | DEBUG1 | +140 | CloseProcess - Ended 20:31:31:123 | MD | DEBUG1 | +188 | CloseProcess - Started, user requested to end launched application 20:31:31:130 | MD | DEBUG1 | +0 | ShowFE - Started 20:31:31:136 | MD | DEBUG1 | +0 | ShowFE - Ended 20:31:31:162 | MD | INFO | +31 | WinClose - Closing: ahk_class Afx:400000:b:10003:6 20:31:31:296 | MD | DEBUG1 | +141 | CloseProcess - Ended 20:31:31:498 | MD | DEBUG1 | +203 | CloseProcess - Started, user requested to end launched application 20:31:31:505 | MD | DEBUG1 | +0 | ShowFE - Started 20:31:31:511 | MD | DEBUG1 | +0 | ShowFE - Ended 20:31:31:537 | MD | INFO | +31 | WinClose - Closing: ahk_class Afx:400000:b:10003:6 20:31:31:638 | MD | DEBUG1 | +109 | CloseProcess - Ended 20:31:31:788 | MD | DEBUG1 | +141 | CloseProcess - Started, user requested to end launched application 20:31:31:817 | MD | DEBUG1 | +31 | ShowFE - Started 20:31:31:823 | MD | DEBUG1 | +0 | ShowFE - Ended 20:31:31:847 | MD | INFO | +32 | WinClose - Closing: ahk_class Afx:400000:b:10003:6 20:31:31:957 | MD | DEBUG1 | +109 | CloseProcess - Ended 20:31:31:011 | MD | DEBUG1 | +47 | CloseProcess - Started, user requested to end launched application 20:31:32:028 | MD | DEBUG1 | +31 | ShowFE - Started 20:31:32:031 | MD | DEBUG1 | +0 | ShowFE - Ended 20:31:32:034 | MD | INFO | +0 | WinClose - Closing: ahk_class Afx:400000:b:10003:6 20:31:32:139 | MD | DEBUG1 | +109 | CloseProcess - Ended 20:31:32:187 | MD | DEBUG1 | +47 | CloseProcess - Started, user requested to end launched application 20:31:32:190 | MD | DEBUG1 | +0 | ShowFE - Started 20:31:32:194 | MD | DEBUG1 | +0 | ShowFE - Ended 20:31:32:196 | MD | INFO | +0 | WinClose - Closing: ahk_class Afx:400000:b:10003:6 20:31:32:295 | MD | DEBUG1 | +110 | CloseProcess - Ended 20:31:32:331 | MD | DEBUG1 | +31 | CloseProcess - Started, user requested to end launched application 20:31:32:339 | MD | DEBUG1 | +0 | ShowFE - Started 20:31:32:356 | MD | DEBUG1 | +31 | ShowFE - Ended 20:31:32:363 | MD | INFO | +0 | WinClose - Closing: ahk_class Afx:400000:b:10003:6 20:31:32:467 | MD | DEBUG1 | +110 | CloseProcess - Ended 20:31:32:477 | MD | DEBUG1 | +0 | CloseProcess - Started, user requested to end launched application 20:31:32:501 | MD | DEBUG1 | +31 | ShowFE - Started 20:31:32:508 | MD | DEBUG1 | +0 | ShowFE - Ended 20:31:32:531 | MD | INFO | +31 | WinClose - Closing: ahk_class Afx:400000:b:10003:6 20:31:32:641 | MD | DEBUG1 | +109 | CloseProcess - Ended 20:31:32:723 | MD | DEBUG1 | +79 | CloseProcess - Started, user requested to end launched application 20:31:32:730 | MD | DEBUG1 | +0 | ShowFE - Started 20:31:32:752 | MD | DEBUG1 | +31 | ShowFE - Ended 20:31:32:759 | MD | INFO | +0 | WinClose - Closing: ahk_class Afx:400000:b:10003:6 20:31:32:891 | MD | DEBUG1 | +140 | CloseProcess - Ended 20:31:32:963 | MD | DEBUG1 | +63 | CloseProcess - Started, user requested to end launched application 20:31:32:982 | MD | DEBUG1 | +31 | ShowFE - Started 20:31:32:989 | MD | DEBUG1 | +0 | ShowFE - Ended 20:31:32:996 | MD | INFO | +0 | WinClose - Closing: ahk_class Afx:400000:b:10003:6 20:31:33:122 | MD | DEBUG1 | +141 | CloseProcess - Ended 20:31:39:798 | MD | INFO | +6672 | StopGlobalUserFeatures - Starting 20:31:39:805 | MD | INFO | +0 | StopGlobalUserFeatures - Ending 20:31:39:812 | MD | INFO | +15 | ExitModule - Started 20:31:39:820 | MD | INFO | +0 | Starting Updating Statistics: 20:31:39:827 | MD | DEBUG2 | +16 | Total Elapsed Time in Pause in seconds: 0 20:31:39:831 | MD | DEBUG2 | +0 | gameSectionStartTime:19842546 20:31:39:835 | MD | DEBUG2 | +0 | ElapsedTime:12 20:31:39:840 | MD | DEBUG2 | +16 | Statistics cleared game name: Pacman 20:31:39:868 | MD | DEBUG2 | +15 | Loaded game statistics from ini files: Number_of_Times_Played: 4 Last_Time_Played: Saturday April 19, 2014 08:30:15 PM Average_Time_Played: 36 Total_Time_Played: 143 System_Total_Played_Time: 186 Total_Global_Played_Time: 325085 20:31:39:872 | MD | DEBUG2 | +16 | Updated Statistics: Number_of_Times_Played: 5 Last_Time_Played: Saturday April 19, 2014 08:31:26 PM Average_Time_Played: 31 Total_Time_Played: 155 System_Total_Played_Time: 198 Total_Global_Played_Time: 325097 20:31:39:894 | MD | INFO | +15 | Game section statistics updated. 20:31:39:898 | MD | DEBUG2 | +0 | Keymapper - Joysticks Detected: 1100000000000000 20:31:39:902 | MD | DEBUG2 | +16 | Keymapper - Searching -> E:\Hyperspin\Hyperlaunch\Profiles\xpadder\HyperSpin\Controller (Afterglow Gamepad for Xbox 360)\p1.xpadderprofile 20:31:39:904 | MD | DEBUG2 | +0 | Keymapper - Searching -> E:\Hyperspin\Hyperlaunch\Profiles\xpadder\HyperSpin\p1.xpadderprofile 20:31:39:906 | MD | INFO | +0 | Keymapper - Loading Profile -> E:\Hyperspin\Hyperlaunch\Profiles\xpadder\HyperSpin\p1.xpadderprofile 20:31:39:908 | MD | DEBUG2 | +0 | Keymapper - Searching -> E:\Hyperspin\Hyperlaunch\Profiles\xpadder\HyperSpin\Logitech Dual Action\p2.xpadderprofile 20:31:39:910 | MD | DEBUG2 | +0 | Keymapper - Searching -> E:\Hyperspin\Hyperlaunch\Profiles\xpadder\HyperSpin\p2.xpadderprofile 20:31:39:913 | MD | INFO | +0 | Keymapper - Loading Profile -> E:\Hyperspin\Hyperlaunch\Profiles\xpadder\HyperSpin\p2.xpadderprofile 20:31:39:915 | MD | DEBUG2 | +0 | Keymapper - Closing xpadder to refresh controllers seen by xpadder 20:31:39:921 | MD | DEBUG2 | +16 | Keymapper - Creating an array of connected controllers and profiles to arrange according to the order found in E:\Hyperspin\Utilities\Xpadder\xpadder.ini 20:31:40:033 | MD | DEBUG2 | +109 | Keymapper - Reading the order in E:\Hyperspin\Utilities\Xpadder\xpadder.ini and arranging profiles found to match that order 20:31:40:038 | MD | INFO | +0 | Keymapper - Run,Xpadder.exe "E:\Hyperspin\Hyperlaunch\Profiles\xpadder\HyperSpin\p1.xpadderprofile" "E:\Hyperspin\Hyperlaunch\Profiles\xpadder\HyperSpin\p2.xpadderprofile" /M, E:\Hyperspin\Utilities\Xpadder, Hide 20:31:40:050 | MD | INFO | +16 | ExitModule - Ended 20:31:40:053 | MD | INFO | +0 | End of Module Logs 20:31:40:075 | HL | INFO | +15922 | Main - Module ended, exiting HyperLaunch normally 20:31:40:077 | HL | INFO | +0 | ExitScript - Started 20:31:40:082 | HL | DEBUG1 | +0 | ExitScript - Restoring HyperSpin.exe to x280 y84 w800 h600 20:31:40:185 | HL | DEBUG1 | +109 | ExitScript - Checking what application is currently in focus. 20:31:40:187 | HL | DEBUG1 | +0 | ExitScript - HyperLaunch.log - Notepad is currently active. Putting focus back on HyperSpin.exe 20:31:40:313 | HL | DEBUG1 | +125 | ExitScript - Took 1 attempts to put HyperSpin.exe back in focus. 20:31:40:338 | HL | INFO | +16 | SystemCursor - Restoring mouse cursor 20:31:40:362 | HL | INFO | +31 | ExitScript - Ended Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.