Jump to content
LaunchBox Community Forums

n2linux

Members
  • Posts

    2
  • Joined

  • Last visited

Everything posted by n2linux

  1. Thanks for setting me on the right track @Warped Polygon. I just recently discovered the Sega Model 2 Emulator, since Mame falls short on the model 2. Two of my son's favorite Sega Model 2 games were House of the Dead and Dynamite Cop. I wanted to get House of the Dead working with my AimTrak and struggled with some solutions for reloading off screen. As a take on your HOTD LUA script and for more authentic game play, I tied reloading (and health) to the AimTrak buttons 2 and 3. For anyone interested, here is the modified LUA script... require("model2") function Init() end function Frame() Model2_SetWideScreen(1) Model2_SetStretchALow(1) Model2_SetStretchBLow(1) Model2_SetStretchAHigh(1) Model2_SetStretchBHigh(1) Evaluate_Inputs(); end function health_1p_cheat_f(value) I960_WriteWord(RAMBASE+0x1EC10,5); -- 1P 5 health end function ammo_1p_cheat_f(value) I960_WriteWord(RAMBASE+0x1EC41,6); -- 1P 6 ammo end function Evaluate_Inputs() if Input_IsKeyPressed(JOY1+JOY_BUTTON2) == 1 then I960_WriteWord(RAMBASE+0x1EC41,6); -- 1P 6 ammo end if Input_IsKeyPressed(JOY1+JOY_BUTTON3) == 1 then I960_WriteWord(RAMBASE+0x1EC10,5); -- 1P 5 health end end Options = { health_1p_cheat={name="1P Infinite Health",values={"Off","On"},runfunc=health_1p_cheat_f}, ammo_1p_cheat={name="1P Infinite Ammo",values={"Off","On"},runfunc=ammo_1p_cheat_f} }
  2. A little late to the party, but mark me down as interested in a native Linux version. I have a home built arcade cabinet and I was amazed at LaunchBox and BigBox speed on older hardware. Plus it is just plain polished. I tried the Wine implementation of an older version of LB/BB. I found the performance was poor (on the old hardware), both with the front-end and emulators. So Wine isn't nearly up to native speed. Now I did play with it on newer hardware and it was much better. I'm just not ready to chase down newer hardware for the cabinet (but that's on me). All that said, hopefully Steam or MAUI or something comes along to aid the developers. I too, believe Linux has some good tools. It just can be apples and oranges some times. With only a small interested cadre in native Linux, I can see why the focus of the developers is elsewhere. With so many cross platform implementations of software, it's easy to think it's easy to port. But as a programmer, depending on the tools used in the original development, it ain't so easy at times. I did set up a dual boot for just running my favorite emulator native on Linux. I found the speed returned for the old rig. But Thank you, developers, for an awesome product. Keep your focus where it needs to be. I understand.
×
×
  • Create New...