Main Restorations Software Audio/Jukebox/MP3 Everything Else Buy/Sell/Trade
Project Announcements Monitor/Video GroovyMAME Merit/JVL Touchscreen Meet Up Retail Vendors
Driving & Racing Woodworking Software Support Forums Consoles Project Arcade Reviews
Automated Projects Artwork Frontend Support Forums Pinball Forum Discussion Old Boards
Raspberry Pi & Dev Board controls.dat Linux Miscellaneous Arcade Wiki Discussion Old Archives
Lightguns Arcade1Up Try the site in https mode Site News

Unread posts | New Replies | Recent posts | Rules | Chatroom | Wiki | File Repository | RSS | Submit news

  

Author Topic: Sega Model 2 UI  (Read 81441 times)

0 Members and 1 Guest are viewing this topic.

Nuexzz

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 279
  • Last login:October 01, 2023, 01:26:58 am
Sega Model 2 UI
« on: March 04, 2019, 11:06:06 pm »
Hello everyone, it really bothers me to have to do many steps to configure my favorite game, then I started to add some features for Daytona and started adding functions until I finished adding all the games.
Keep in mind that if you have errors is because I'm not a programmer (just a curious) which I consider a Hobby, I have no trouble for the aggregates I plan to do.
in a few words, I publish it to not keep it for me, as I did with many things.





This is a simple UI for the "GREAT EMULATOR" By ElSemi SEGA Model 2 Emulator. v1.1a
http://nebula.emulatronia.com/
-------------------------------------------------- ---------
Sega Model 2 UI - by Nuexzz (c) 2019 Nuexzz@gmail.com
-------------------------------------------------- ---------
                      Features
-------------------------------------------------- ---------
Added - list view of all the supported games of version 1.1a of m2emulator.
Added - preview of each game (snaps).
Added - 3 buttons of the roms directories.
Added - check Antialiasing.
Added - check Bilinear.
Added - check Trilinear.
Added - check FilterTilemaps.
Added - check Wireframe.
Added - check ForceSync.
Added - check FakeGouraud.
Added - check MeshTransparency.
Added - check ForceManaged.
Added - check AutoMip.
Added - check Fullscreen (now with the shooting games the window will not be minimized when shooting in the upper corner).
Added - check Sound.
Added - check Widescreen .
Added - check Resolution (Native).
Added - check Force Feedback.
Added - check HoldGears.
Added - check Joy Xbox360 (xinput).
Added - check (Cursor) Show / Hide.
Added - check DrawCross.
Added - check UseRawInput.
Added - check RawDevP1.
Added - check RawDevP2.
Added - check Load button (Load Rom).
-------------------------------------------------- ---------

Priorities for future versions

Add - Widescreen (correctly) to all the missing games.
Add - support of the games that use system links, in simple steps so that everything is configured automatically "same pc", "pc in network", "online".
"Maybe" add - Model1 (MAME).
"Maybe" add - Model3 (Supermodel).

-------------------------------------------------- ---------



http://uploaded.net/file/ryc0vp4f




Quote
Update 02/04/19
add - new font and color in the gui
add - volume control
Add - drop-down menu in case of adding some hacks :)
add - many games with widescreen support (correct)
fix - writing code that if it was not the key it wrote ERROR
fix - the first resolution option was left blank


games with widescreen (correct) so far

daytona
dayton93
daytonas
daytonase
daytonat
daytonata
daytonagtx
daytonam
desert
doaa 
pltkidsa 
srallyc 
srallycb 
srallyp 
vf2o 
vf2a 
vf2b 
vf2 
doa
fvipers
indy500d
indy500
indy500to
pltkids
sgt24h
vstrikro
vstriker
hotd
skisuprg
« Last Edit: April 03, 2019, 04:25:35 am by Nuexzz »

isamu

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 807
  • Last login:April 14, 2024, 08:15:07 pm
  • I'm a llama!
Re: Sega Model 2 UI
« Reply #1 on: March 05, 2019, 10:16:16 pm »
Cool!  :cheers:

baritonomarchetto

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 805
  • Last login:Today at 02:31:33 pm
Re: Sega Model 2 UI
« Reply #2 on: March 06, 2019, 12:31:12 am »
Thanks for sharing. We are now waiting for a supermodel GUI ;)

tomato123

  • Trade Count: (0)
  • Jr. Member
  • **
  • Offline Offline
  • Posts: 6
  • Last login:July 01, 2019, 02:38:57 pm
  • I want to build my own arcade controls!
Re: Sega Model 2 UI
« Reply #3 on: March 12, 2019, 10:39:07 am »
Thanks! My friend!  Can you add a feature to adjust the volume to preset level, and then restore the volume after the game?


Nuexzz

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 279
  • Last login:October 01, 2023, 01:26:58 am
Re: Sega Model 2 UI
« Reply #4 on: March 12, 2019, 07:46:47 pm »
Thanks! My friend!  Can you add a feature to adjust the volume to preset level, and then restore the volume after the game?

if now that I think that is a good function to add, since I am looking for the wide screen hacks of the games and I have to reduce the volume from windows.

added (you can try it and tell me if everything works correctly then I will update to the first post )

 thanks :applaud:
« Last Edit: April 01, 2019, 09:34:11 pm by Nuexzz »

Nuexzz

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 279
  • Last login:October 01, 2023, 01:26:58 am
Re: Sega Model 2 UI
« Reply #5 on: March 12, 2019, 09:59:25 pm »
Add - Widescreen (correctly) Dead or Alive (Model 2B)
Add - Widescreen (correctly) Dead or Alive (Model 2A)

Code: [Select]
require("model2")
function Init()
end
function Frame()
local gameState = I960_ReadByte(0x54F9D5)
if gameState==0x1
then
Model2_SetWideScreen(1)
Model2_SetStretchBLow(1)
Model2_SetStretchBHigh(1)
else
Model2_SetWideScreen(0)
Model2_SetStretchBLow(0)
Model2_SetStretchBHigh(0)
end
end

Add - Widescreen (correctly) Desert Tank

Code: [Select]
require("model2")
function Init()
end
function Frame()
Model2_SetWideScreen(1)
Model2_SetStretchBLow(1)
Model2_SetStretchBHigh(1)
end
   
« Last Edit: March 12, 2019, 10:40:58 pm by Nuexzz »

Howard_Casto

  • Idiot Police
  • Trade Count: (+1)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 19400
  • Last login:Yesterday at 10:59:21 pm
  • Your Post's Soul is MINE!!! .......Again??
    • The Dragon King
Re: Sega Model 2 UI
« Reply #6 on: March 12, 2019, 10:15:43 pm »
I've got a lot of scripts I wrote... maybe if I can ever get motivated to get ts2 out the door we can merge them into an all in one solution.  I just added some basic stuff like widescreen, scanlines ect. 

Nuexzz

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 279
  • Last login:October 01, 2023, 01:26:58 am
Re: Sega Model 2 UI
« Reply #7 on: March 12, 2019, 10:26:40 pm »
it could be .. I would also like to implement sweetfx (only for the curvature mode) because I could not configure it without the scanlines, I think it loses a lot of quality

tomato123

  • Trade Count: (0)
  • Jr. Member
  • **
  • Offline Offline
  • Posts: 6
  • Last login:July 01, 2019, 02:38:57 pm
  • I want to build my own arcade controls!
Re: Sega Model 2 UI
« Reply #8 on: March 13, 2019, 10:06:33 am »
I just test the program. The volume can be adjust in real time. 

But the function I need is reduce the volume to a "preset" level" (For example If I can set it at 10%).  After exit, the game I played, it should "restore" to original volume level (The volume level before I run the game).   

The process should be like this:
Quote
1) My current computer volume is 75% (could be any volume)
2) The program should record the current volume when double click the game
3) Before it run the game, reduce the volume to the "preset" level (For example, 10%)
4) Enjoy playing the game at 10% volume.
5) When exit the game, the volume should be restore to 75%

Sorry for asking too much! :notworthy:



Thanks! My friend!  Can you add a feature to adjust the volume to preset level, and then restore the volume after the game?

if now that I think that is a good function to add, since I am looking for the wide screen hacks of the games and I have to reduce the volume from windows.

added (you can try it and tell me if everything works correctly then I will update to the first post )

 thanks :applaud:

Nuexzz

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 279
  • Last login:October 01, 2023, 01:26:58 am
Re: Sega Model 2 UI
« Reply #9 on: March 16, 2019, 08:31:22 am »
Add - Widescreen (correctly) Indianapolis 500 (Rev A, Deluxe)               
Add - Widescreen (correctly) Indianapolis 500 (Rev A, Twin, Newer rev)           
Add - Widescreen (correctly) Indianapolis 500 (Rev A, Twin, Older rev)   
add - new GUI style

Code: [Select]
require("model2")
function Init()
end
function Frame()
Model2_SetWideScreen(1)
Model2_SetStretchBLow(1)
Model2_SetStretchBHigh(1)
local gameState = I960_ReadByte(0x54C224)
if gameState==0x5
or gameState==0x6
then
Model2_SetStretchAHigh(1)
Model2_SetStretchALow(1)
else
Model2_SetStretchAHigh(0)
Model2_SetStretchALow(0)
end
end


 

Nuexzz

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 279
  • Last login:October 01, 2023, 01:26:58 am
Re: Sega Model 2 UI
« Reply #10 on: March 16, 2019, 11:04:50 am »
Add - Widescreen (correctly)  Virtua Fighter 2            
Add - Widescreen (correctly)  Virtua Fighter 2 (Rev A)               
Add - Widescreen (correctly)  Virtua Fighter 2 (Rev B)           
Add - Widescreen (correctly)  Virtua Fighter 2.1

Code: [Select]
require("model2")
function Init()
end
function Frame()
local gameState = I960_ReadByte(0x50002B)
if gameState==0x7
then
Model2_SetWideScreen(0)
Model2_SetStretchBLow(0)
Model2_SetStretchBHigh(0)
else
Model2_SetWideScreen(1)
Model2_SetStretchBLow(1)
Model2_SetStretchBHigh(1)
end
end
« Last Edit: March 16, 2019, 12:22:54 pm by Nuexzz »

Nuexzz

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 279
  • Last login:October 01, 2023, 01:26:58 am
Re: Sega Model 2 UI
« Reply #11 on: March 16, 2019, 01:36:25 pm »
Add - Widescreen (correctly)  House of the Dead   
Code: [Select]
require("model2")
function Init()
end
function Frame()
Romset_PatchDWord(ROMBASE,0x18610,0xa000000)--no flash screen (by_egregiousguy)
local gameState = I960_ReadByte(0x51EE14)
if gameState==0x2
then
Model2_SetWideScreen(0)
Model2_SetStretchBLow(0)
Model2_SetStretchBHigh(0)
else
Model2_SetWideScreen(1)
Model2_SetStretchBLow(1)
Model2_SetStretchBHigh(1)
end
end

Nuexzz

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 279
  • Last login:October 01, 2023, 01:26:58 am
Re: Sega Model 2 UI
« Reply #12 on: March 16, 2019, 02:49:24 pm »
Add - Widescreen (correctly) Fighting Vipers   

Code: [Select]
require("model2")
function Init()
end
function Frame()
local gameState = I960_ReadByte(0x50002A)
if gameState==0x7
then
Model2_SetWideScreen(0)
Model2_SetStretchBLow(0)
Model2_SetStretchBHigh(0)
else
Model2_SetWideScreen(1)
Model2_SetStretchBLow(1)
Model2_SetStretchBHigh(1)
end
end

Nuexzz

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 279
  • Last login:October 01, 2023, 01:26:58 am
Re: Sega Model 2 UI
« Reply #13 on: March 17, 2019, 10:01:15 am »
some games resist  :banghead:
« Last Edit: March 17, 2019, 10:10:36 am by Nuexzz »

Zebra

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 619
  • Last login:August 19, 2021, 01:12:24 pm
  • I want to build my own arcade controls!
Re: Sega Model 2 UI
« Reply #14 on: March 17, 2019, 07:37:53 pm »
Thanks for sharing. We are now waiting for a supermodel GUI ;)

Yeah... like that will ever happen. Unfortunately I already died from holding my breath while waiting for a Super Model GUI and I am now a ghost.

I have been thinking of trying to use macros in Windows to allow me to select and load games with a mouse click instead of using command line (which is usually enough to make me skip model 3 games altogether).

Nuexzz

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 279
  • Last login:October 01, 2023, 01:26:58 am
Re: Sega Model 2 UI
« Reply #15 on: March 17, 2019, 08:09:28 pm »
Thanks for sharing. We are now waiting for a supermodel GUI ;)

Yeah... like that will ever happen. Unfortunately I already died from holding my breath while waiting for a Super Model GUI and I am now a ghost.

I have been thinking of trying to use macros in Windows to allow me to select and load games with a mouse click instead of using command line (which is usually enough to make me skip model 3 games altogether).


Well yes, I was thinking about (pausing) model 2 UI and starting with model 3, a year ago I did not update my supermodel.
tell me one thing, why did I stop working model 3 UI? if you can post your supermodel.ini.
So we started

Stremon

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 11
  • Last login:November 20, 2019, 12:05:21 am
  • I want to build my own arcade controls!
Re: Sega Model 2 UI
« Reply #16 on: March 20, 2019, 01:44:03 am »
This GUI looks great, but I get a serious virus warning for the zip file with my antivirus (Trojan:Win32/Zpevdo.b).
Is that a false positive or a real undetected threat?

Ali

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 14
  • Last login:March 23, 2024, 05:13:06 pm
  • I want to build my own arcade controls!
Re: Sega Model 2 UI
« Reply #17 on: April 01, 2019, 07:18:49 pm »
I updated my DirectX 9... I cant to run fine the M2 emulator.
BUT... running the Nuexzz "Volume" GUI it ask me to d3d9.dll (no problem I have it in my system...)
But I puuting it in my dicectory...
It now ask me to "encdr.dll", encof.dll, snbar.dll... and I can't find it on my system (Windows 7 - 32bits) or on Internet!
Please, hat's the matter?
Is my DirectX 9 incomplet yet?


Best regards, Ali
« Last Edit: April 01, 2019, 07:25:16 pm by Ali »

Nuexzz

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 279
  • Last login:October 01, 2023, 01:26:58 am
Re: Sega Model 2 UI
« Reply #18 on: April 01, 2019, 09:33:09 pm »
friend are you confused, these files are in the first post of this thread

also, tonight I think I'm going to upload some updates
« Last Edit: April 02, 2019, 02:51:34 am by Nuexzz »

Nuexzz

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 279
  • Last login:October 01, 2023, 01:26:58 am
Re: Sega Model 2 UI
« Reply #19 on: April 02, 2019, 02:52:43 am »
updated the first post

add - new font and color in the gui
add - volume control
Add - drop-down menu in case of adding some hacks :)
add - many games with widescreen support (correct)
fix - writing code that if it was not the key it wrote ERROR
fix - the first resolution option was left blank


games with widescreen (correct) so far

daytona
dayton93
daytonas
daytonase
daytonat
daytonata
daytonagtx
daytonam
desert
doaa 
pltkidsa 
srallyc 
srallycb 
srallyp 
vf2o 
vf2a 
vf2b 
vf2 
doa
fvipers
indy500d
indy500
indy500to
pltkids
sgt24h
vstrikro
vstriker
hotd
skisuprg

Ali

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 14
  • Last login:March 23, 2024, 05:13:06 pm
  • I want to build my own arcade controls!
Re: Sega Model 2 UI
« Reply #20 on: April 02, 2019, 06:16:53 pm »
friend are you confused, these files are in the first post of this thread

also, tonight I think I'm going to upload some updates

Now there are files in the first link!
Until yesterday "File removed copyrights violation"...

Many thanks to the update!

pmc3

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 17
  • Last login:April 10, 2021, 02:54:01 am
  • 404
Re: Sega Model 2 UI
« Reply #21 on: April 03, 2019, 03:47:09 am »
Hi and thanks for your work

But I can not download the file (connected to onedrive or not)   :dunno

Nuexzz

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 279
  • Last login:October 01, 2023, 01:26:58 am
Re: Sega Model 2 UI
« Reply #22 on: April 03, 2019, 04:27:11 am »
thank you uploaded


Nuexzz

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 279
  • Last login:October 01, 2023, 01:26:58 am
Re: Sega Model 2 UI
« Reply #24 on: April 03, 2019, 05:32:50 am »

They are false positives, we already made claims that they scan it in depth, but ... I guess it takes time.

lazzlo

  • Trade Count: (0)
  • Jr. Member
  • **
  • Offline Offline
  • Posts: 1
  • Last login:July 12, 2019, 09:05:20 pm
  • I want to build my own arcade controls!
Re: Sega Model 2 UI
« Reply #25 on: April 05, 2019, 08:22:57 pm »
Nice looking UI.

Any chance of an upload at www.zippyshare.com? I have troubles with the reCAPTCHA showing up at uploaded.

Thanks for any assistance you can provide.

hio3hir0wa

  • Trade Count: (0)
  • Jr. Member
  • **
  • Offline Offline
  • Posts: 1
  • Last login:January 18, 2023, 12:33:10 am
  • I want to build my own arcade controls!
Re: Sega Model 2 UI
« Reply #26 on: April 06, 2019, 05:52:58 pm »
Print.dll included in this program is copying not only the window of UI but also the screenshot of the whole screen being displayed to the clipboard.
What is this required for?
Please tell me.

Nuexzz

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 279
  • Last login:October 01, 2023, 01:26:58 am
Re: Sega Model 2 UI
« Reply #27 on: April 06, 2019, 08:34:55 pm »
it's actually a little dirty trick, because when I started the emulator in window mode it always showed the native resolution of the emu (640x480) then.
Take this resource to show the desktop for 1 second and wait for the window to be resized in background mode from behind.
you can prove that print only works when you launch the game.
Maybe I should remove it if someone seems suspicious, I have no problems

edit:
Here I leave the print disabled, so you can see the difference
« Last Edit: January 03, 2021, 03:48:50 pm by saint »

AMG KC

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 79
  • Last login:June 29, 2022, 05:33:52 am
Re: Sega Model 2 UI
« Reply #28 on: April 23, 2019, 07:43:18 am »
it's actually a little dirty trick, because when I started the emulator in window mode it always showed the native resolution of the emu (640x480) then.
Take this resource to show the desktop for 1 second and wait for the window to be resized in background mode from behind.
you can prove that print only works when you launch the game.
Maybe I should remove it if someone seems suspicious, I have no problems

edit:
Here I leave the print disabled, so you can see the difference

Mine wont load it, says the d3d9dll is missing???

AMG KC

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 79
  • Last login:June 29, 2022, 05:33:52 am
Re: Sega Model 2 UI
« Reply #29 on: April 23, 2019, 07:48:27 am »
it's actually a little dirty trick, because when I started the emulator in window mode it always showed the native resolution of the emu (640x480) then.
Take this resource to show the desktop for 1 second and wait for the window to be resized in background mode from behind.
you can prove that print only works when you launch the game.
Maybe I should remove it if someone seems suspicious, I have no problems

edit:
Here I leave the print disabled, so you can see the difference

Can you ever make it possible to add in networking settings into this GUI as well and the ability to turn on lagfix or other things like that?


Nuexzz

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 279
  • Last login:October 01, 2023, 01:26:58 am
Re: Sega Model 2 UI
« Reply #30 on: April 23, 2019, 07:53:21 am »

hello, when finished with sega model 3UI I plan to add those network functions and clean a little sega model 2UI

AMG KC

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 79
  • Last login:June 29, 2022, 05:33:52 am
Re: Sega Model 2 UI
« Reply #31 on: April 23, 2019, 07:55:19 am »

hello, when finished with sega model 3UI I plan to add those network functions and clean a little sega model 2UI
That would be great :)

Can you use a better place to upload the file? Chrome blocks that one, never had that issue before. I cant stop it blocking the file.

AMG KC

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 79
  • Last login:June 29, 2022, 05:33:52 am
Re: Sega Model 2 UI
« Reply #32 on: April 23, 2019, 07:56:10 am »

hello, when finished with sega model 3UI I plan to add those network functions and clean a little sega model 2UI

Do you have a link to your Model 3 GUI thread??

Nuexzz

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 279
  • Last login:October 01, 2023, 01:26:58 am

AMG KC

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 79
  • Last login:June 29, 2022, 05:33:52 am
Re: Sega Model 2 UI
« Reply #34 on: April 23, 2019, 08:00:16 am »
https://www.supermodel3.com/Forum/viewtopic.php?f=3&t=1636

Thanks mate ;)

Ill check it out now.

Ive been struggling to get the G29 controls working well in the Daytona 3 and Sega Racing Classic, they work so well in M2 Emu. Seems very non-linear in SRC and Daytona 3.

AMG KC

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 79
  • Last login:June 29, 2022, 05:33:52 am
Re: Sega Model 2 UI
« Reply #35 on: April 23, 2019, 08:04:40 am »
Now im not able to download it at all because it says ive reached the limit.

Is there another download mirror?

AMG KC

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 79
  • Last login:June 29, 2022, 05:33:52 am
Re: Sega Model 2 UI
« Reply #36 on: April 23, 2019, 01:20:03 pm »
https://www.supermodel3.com/Forum/viewtopic.php?f=3&t=1636
Finally got to download that, and it is awesome :) Makes it so much better!!

Thanks mate :)

Barry Barcrest

  • I'm only in it for the lack of money
  • Trade Count: (+2)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 1620
  • Last login:November 09, 2021, 09:54:17 am
  • Simple Plan
    • E-Touch Jukebox
Re: Sega Model 2 UI
« Reply #37 on: April 25, 2019, 04:30:41 am »
Am i correct in thinking that this is just passing the command switches to the emulator? It would be nice if you added an additional button to save out an ini file with the settings in. It has been a while since i looked at this but I have put an emulation machine together and so I am starting to dig into the emulators a little. I can't remember it uses on ini with settings for each game or separate ini files...

I am just thinking if you offered the ability to output to the ini file it would make your tool useful for configuring the emulator when calling it from a front end.

AMG KC

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 79
  • Last login:June 29, 2022, 05:33:52 am
Re: Sega Model 2 UI
« Reply #38 on: April 25, 2019, 06:25:16 am »
Am i correct in thinking that this is just passing the command switches to the emulator? It would be nice if you added an additional button to save out an ini file with the settings in. It has been a while since i looked at this but I have put an emulation machine together and so I am starting to dig into the emulators a little. I can't remember it uses on ini with settings for each game or separate ini files...

I am just thinking if you offered the ability to output to the ini file it would make your tool useful for configuring the emulator when calling it from a front end.

One .ini for the whole emulator, and each game saves a file in the config folder for settings and buttons.

negative1

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 1185
  • Last login:February 04, 2024, 04:06:51 pm
  • I want to build my own arcade controls!
Re: Sega Model 2 UI
« Reply #39 on: May 01, 2019, 06:59:20 pm »
thanks, but getting a virus detected from the download, so deleted.

later
-1

AMG KC

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 79
  • Last login:June 29, 2022, 05:33:52 am
Re: Sega Model 2 UI
« Reply #40 on: May 01, 2019, 08:30:18 pm »
thanks, but getting a virus detected from the download, so deleted.

later
-1
Its not a virus, its a false detection.

The reason it detects as that is it has the ability to manipulate other files on the computer, the whole idea of a visual user interface.

shitoken

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 18
  • Last login:June 20, 2023, 03:00:53 am
  • I want to build my own arcade controls!
Re: Sega Model 2 UI
« Reply #41 on: July 15, 2019, 03:47:47 am »
Thank you so much for this release.
May I know if this can be used with Hyperspin/Rocketlauncher?

Nuexzz

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 279
  • Last login:October 01, 2023, 01:26:58 am
Re: Sega Model 2 UI
« Reply #42 on: July 15, 2019, 08:57:41 pm »
Thank you so much for this release.
May I know if this can be used with Hyperspin/Rocketlauncher?


Hi, I have no experience in Hyperspin or Rocketlauncher, but if I remember correctly, you can use ahk modules.
1) Set the game at ease with Sega Model 2 UI
2) try to launch the module.
so you could try
Code: [Select]
Run Sega Model2 UI.exe, , hide
sleep 250
Run Emulator.exe Daytona

shitoken

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 18
  • Last login:June 20, 2023, 03:00:53 am
  • I want to build my own arcade controls!
Re: Sega Model 2 UI
« Reply #43 on: July 17, 2019, 03:25:23 am »
Thank you so much I will try this UI soon

Shenmue is life

  • Trade Count: (0)
  • Jr. Member
  • **
  • Offline Offline
  • Posts: 1
  • Last login:February 09, 2020, 01:11:43 pm
    • Looking for these songs
Re: Sega Model 2 UI
« Reply #44 on: January 03, 2020, 01:42:28 pm »
Hi,
I'm struggling to download your mod as Windows 10 checks the file as a trojan and automatically deletes it, whatever I disable the quarantine afterwards. Is there another way to get the mod? Thanks.

Edit: Never mind. Go to Windows 10 settings > Security >  Real-time protection > Uncheck the real-time protection.
« Last Edit: January 03, 2020, 02:22:25 pm by Shenmue is life »

negative1

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 1185
  • Last login:February 04, 2024, 04:06:51 pm
  • I want to build my own arcade controls!
Re: Sega Model 2 UI
« Reply #45 on: January 04, 2020, 09:32:50 pm »
after turning off the virus protection, i was able to download the UI program finally.

However, now the virus protection keeps deleting the files. oh well.

later
-1

isamu

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 807
  • Last login:April 14, 2024, 08:15:07 pm
  • I'm a llama!
Re: Sega Model 2 UI
« Reply #46 on: January 05, 2020, 12:44:22 am »
after turning off the virus protection, i was able to download the UI program finally.

However, now the virus protection keeps deleting the files. oh well.

later
-1


Have you guys tried adding the program to your exclusion list? I haven't used windows defender in a while but I'm sure there's an option to do this. I switched from Defender to MalwareBytes and couldn't be happier.

negative1

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 1185
  • Last login:February 04, 2024, 04:06:51 pm
  • I want to build my own arcade controls!
Re: Sega Model 2 UI
« Reply #47 on: January 14, 2020, 02:06:39 pm »
after turning off the virus protection, i was able to download the UI program finally.

However, now the virus protection keeps deleting the files. oh well.

later
-1


i tried that. but for some reason, whenever it runs its realtime protection,
it still flags it, and deletes it anyways.

later
-1

Have you guys tried adding the program to your exclusion list? I haven't used windows defender in a while but I'm sure there's an option to do this. I switched from Defender to MalwareBytes and couldn't be happier.

Zebra

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 619
  • Last login:August 19, 2021, 01:12:24 pm
  • I want to build my own arcade controls!
Re: Sega Model 2 UI
« Reply #48 on: February 09, 2020, 11:52:36 am »

Does this one default to optimized settings for each game or does it just give you a convenient interface for selecting those options?
« Last Edit: February 09, 2020, 11:56:59 am by Zebra »

sublemon25

  • Trade Count: (0)
  • Jr. Member
  • **
  • Offline Offline
  • Posts: 2
  • Last login:May 11, 2020, 06:16:15 am
  • I want to build my own arcade controls!
Re: Sega Model 2 UI
« Reply #49 on: May 11, 2020, 04:30:42 am »
How do I get sega model 2 ui? I have searched everywhere but everyone I find has virus in them.

gareth_iowc

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 33
  • Last login:October 04, 2022, 03:27:37 am
  • I want to build my own arcade controls!
Re: Sega Model 2 UI
« Reply #50 on: September 28, 2020, 03:55:31 pm »
Finally a widescreen solution :)

I see the program requires some scripts for example -

daytonas.lua

Code: [Select]
require("model2")
function Init()
end
function Frame()
local gameState = I960_ReadByte(0x5010A4)
if   gameState==0x16
or gameState==0x03
or gameState==0x04
or gameState==0x05
or gameState==0x06
or gameState==0x07
then
Model2_SetStretchBLow(1)
Model2_SetWideScreen(1)
else
Model2_SetStretchBLow(0)
Model2_SetWideScreen(0)
end
end

but I'm already using a script called daytonas.lua written by sailorsat that grabs the lamp and ffb data -

daytonas.lua

Code: [Select]
require("model2"); -- Import model2 machine globals

function Init()
Patch_SpecialInputs();
Patch_LampOutputs();
end

function Patch_SpecialInputs()
-- first, disable old read
Romset_PatchDWord(0, 0x1E504, 0x5CA01E00); -- MOV g4,0x00 (NOOP?)

-- now jump to our patched read
Romset_PatchDWord(0, 0x1E508, 0x090219F8); -- CALL 0x0003FF00

-- read io port
Romset_PatchDWord(0, 0x3FF00, 0x80A03000);
Romset_PatchDWord(0, 0x3FF04, 0x01C00012); -- LDOB g4,0x01C00012

-- read patched mask
Romset_PatchDWord(0, 0x3FF08, 0x80B83000);
Romset_PatchDWord(0, 0x3FF0C, 0x00500820); -- LDOB g7,0x00500820

-- and em
Romset_PatchDWord(0, 0x3FF10, 0x58A50097); -- AND g4,g4,g7

-- restore old mask
Romset_PatchDWord(0, 0x3FF14, 0x8CB800FF); -- LDA g7,0xff

-- return
Romset_PatchDWord(0, 0x3FF18, 0x0A000000);  -- RET
end

function Patch_LampOutputs()
-- reroute 0x01C0001E to 0x00500824
for offset = 0x00000000, 0x0003FFFF, 4 do
if Romset_ReadDWord(0, offset) == 0x01C0001E then
Romset_PatchDWord(0, offset, 0x00500824);
local opcode = offset - 1;
if Romset_ReadByte(0, opcode) == 0x80 then
Romset_PatchByte(0, opcode, 0x90) -- replace LDOB with LD
end
if Romset_ReadByte(0, opcode) == 0x82 then
Romset_PatchByte(0, opcode, 0x92) -- replace STOB with ST
end
end
end
end

function PostDraw()
if I960_ReadByte(RAMBASE + 0x00000820) == 0x00 then
I960_WriteByte(RAMBASE + 0x00000820, 0xFF);
end

-- 0xFF = normal
-- 0xFD = force beginner
-- 0xFB = force advanced
-- 0xF9 = force expert

-- 0xF7 = emergency/remote start

-- 0x7F = ex.start; found in schematics but don't yet know what it does

-- 0x3E = DIK_F4
-- 0x3E = DIK_F5
local data = 0xFF;
data = XOR(SHL(Input_IsKeyPressed(0x3E), 0x07), data); -- F4 for ex.start
data = XOR(SHL(Input_IsKeyPressed(0x3F), 0x03), data);  -- F5 for emergency/remote start
I960_WriteByte(RAMBASE + 0x00000820, data);

Video_DrawText(0,0,HEX8(I960_ReadByte(0x00500824)),0xFFFFFF);
end

I know very little about scripting and was wondering if the two can be combined?

Nuexzz

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 279
  • Last login:October 01, 2023, 01:26:58 am
Re: Sega Model 2 UI
« Reply #51 on: October 05, 2020, 09:04:43 pm »
I think something like this should work.

Code: [Select]
require("model2"); -- Import model2 machine globals
function Frame()
        local gameState = I960_ReadByte(0x5010A4)
        if   gameState==0x16
        or gameState==0x03
        or gameState==0x04
        or gameState==0x05
        or gameState==0x06
        or gameState==0x07
     then
Model2_SetStretchBLow(1)
Model2_SetWideScreen(1)
else
Model2_SetStretchBLow(0)
Model2_SetWideScreen(0)
end
end
function Init()
Patch_SpecialInputs();
Patch_LampOutputs();
       
end
function Patch_SpecialInputs()
-- first, disable old read
Romset_PatchDWord(0, 0x1E504, 0x5CA01E00); -- MOV g4,0x00 (NOOP?)

-- now jump to our patched read
Romset_PatchDWord(0, 0x1E508, 0x090219F8); -- CALL 0x0003FF00

-- read io port
Romset_PatchDWord(0, 0x3FF00, 0x80A03000);
Romset_PatchDWord(0, 0x3FF04, 0x01C00012); -- LDOB g4,0x01C00012

-- read patched mask
Romset_PatchDWord(0, 0x3FF08, 0x80B83000);
Romset_PatchDWord(0, 0x3FF0C, 0x00500820); -- LDOB g7,0x00500820

-- and em
Romset_PatchDWord(0, 0x3FF10, 0x58A50097); -- AND g4,g4,g7

-- restore old mask
Romset_PatchDWord(0, 0x3FF14, 0x8CB800FF); -- LDA g7,0xff

-- return
Romset_PatchDWord(0, 0x3FF18, 0x0A000000);  -- RET
end

function Patch_LampOutputs()
-- reroute 0x01C0001E to 0x00500824
for offset = 0x00000000, 0x0003FFFF, 4 do
if Romset_ReadDWord(0, offset) == 0x01C0001E then
Romset_PatchDWord(0, offset, 0x00500824);
local opcode = offset - 1;
if Romset_ReadByte(0, opcode) == 0x80 then
Romset_PatchByte(0, opcode, 0x90) -- replace LDOB with LD
end
if Romset_ReadByte(0, opcode) == 0x82 then
Romset_PatchByte(0, opcode, 0x92) -- replace STOB with ST
end
end
end
end

function PostDraw()
if I960_ReadByte(RAMBASE + 0x00000820) == 0x00 then
I960_WriteByte(RAMBASE + 0x00000820, 0xFF);
end

-- 0xFF = normal
-- 0xFD = force beginner
-- 0xFB = force advanced
-- 0xF9 = force expert

-- 0xF7 = emergency/remote start

-- 0x7F = ex.start; found in schematics but don't yet know what it does

-- 0x3E = DIK_F4
-- 0x3E = DIK_F5
local data = 0xFF;
data = XOR(SHL(Input_IsKeyPressed(0x3E), 0x07), data); -- F4 for ex.start
data = XOR(SHL(Input_IsKeyPressed(0x3F), 0x03), data);  -- F5 for emergency/remote start
I960_WriteByte(RAMBASE + 0x00000820, data);

Video_DrawText(0,0,HEX8(I960_ReadByte(0x00500824)),0xFFFFFF);
end

Titchgamer

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 4222
  • Last login:December 17, 2023, 08:05:48 am
  • I have a gaming addiction.....
Re: Sega Model 2 UI
« Reply #52 on: October 06, 2020, 01:44:12 am »
Regarding your virus issue guys...,

Your checker should have a exception list where you can set folders in your computer that the AV will ignore.

Bullguard users for instance I can tell you its under settimgs/av/tuning.

Once you have excluded a folder you can put anything you like in it without the AV deleting or quarantining it.

Nuexzz

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 279
  • Last login:October 01, 2023, 01:26:58 am
Re: Sega Model 2 UI
« Reply #53 on: October 10, 2020, 10:10:10 pm »
Finally a widescreen solution :)

I see the program requires some scripts for example -

daytonas.lua

Code: [Select]
require("model2")
function Init()
end
function Frame()
local gameState = I960_ReadByte(0x5010A4)
if   gameState==0x16
or gameState==0x03
or gameState==0x04
or gameState==0x05
or gameState==0x06
or gameState==0x07
then
Model2_SetStretchBLow(1)
Model2_SetWideScreen(1)
else
Model2_SetStretchBLow(0)
Model2_SetWideScreen(0)
end
end

but I'm already using a script called daytonas.lua written by sailorsat that grabs the lamp and ffb data -

daytonas.lua

Code: [Select]
require("model2"); -- Import model2 machine globals

function Init()
Patch_SpecialInputs();
Patch_LampOutputs();
end

function Patch_SpecialInputs()
-- first, disable old read
Romset_PatchDWord(0, 0x1E504, 0x5CA01E00); -- MOV g4,0x00 (NOOP?)

-- now jump to our patched read
Romset_PatchDWord(0, 0x1E508, 0x090219F8); -- CALL 0x0003FF00

-- read io port
Romset_PatchDWord(0, 0x3FF00, 0x80A03000);
Romset_PatchDWord(0, 0x3FF04, 0x01C00012); -- LDOB g4,0x01C00012

-- read patched mask
Romset_PatchDWord(0, 0x3FF08, 0x80B83000);
Romset_PatchDWord(0, 0x3FF0C, 0x00500820); -- LDOB g7,0x00500820

-- and em
Romset_PatchDWord(0, 0x3FF10, 0x58A50097); -- AND g4,g4,g7

-- restore old mask
Romset_PatchDWord(0, 0x3FF14, 0x8CB800FF); -- LDA g7,0xff

-- return
Romset_PatchDWord(0, 0x3FF18, 0x0A000000);  -- RET
end

function Patch_LampOutputs()
-- reroute 0x01C0001E to 0x00500824
for offset = 0x00000000, 0x0003FFFF, 4 do
if Romset_ReadDWord(0, offset) == 0x01C0001E then
Romset_PatchDWord(0, offset, 0x00500824);
local opcode = offset - 1;
if Romset_ReadByte(0, opcode) == 0x80 then
Romset_PatchByte(0, opcode, 0x90) -- replace LDOB with LD
end
if Romset_ReadByte(0, opcode) == 0x82 then
Romset_PatchByte(0, opcode, 0x92) -- replace STOB with ST
end
end
end
end

function PostDraw()
if I960_ReadByte(RAMBASE + 0x00000820) == 0x00 then
I960_WriteByte(RAMBASE + 0x00000820, 0xFF);
end

-- 0xFF = normal
-- 0xFD = force beginner
-- 0xFB = force advanced
-- 0xF9 = force expert

-- 0xF7 = emergency/remote start

-- 0x7F = ex.start; found in schematics but don't yet know what it does

-- 0x3E = DIK_F4
-- 0x3E = DIK_F5
local data = 0xFF;
data = XOR(SHL(Input_IsKeyPressed(0x3E), 0x07), data); -- F4 for ex.start
data = XOR(SHL(Input_IsKeyPressed(0x3F), 0x03), data);  -- F5 for emergency/remote start
I960_WriteByte(RAMBASE + 0x00000820, data);

Video_DrawText(0,0,HEX8(I960_ReadByte(0x00500824)),0xFFFFFF);
end

I know very little about scripting and was wondering if the two can be combined?


I'm glad it works well for you  :o

fablog

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 339
  • Last login:February 18, 2024, 10:30:06 pm
Re: Sega Model 2 UI
« Reply #54 on: October 11, 2020, 09:53:26 pm »
Nuexzz thanks a lot for your work, I like it a lot. Do you know if it's possible to get the sound in 5.1?

Envoyé de mon LEX722 en utilisant Tapatalk


Matt087

  • Trade Count: (0)
  • Jr. Member
  • **
  • Offline Offline
  • Posts: 1
  • Last login:March 01, 2021, 02:14:39 am
  • I want to build my own arcade controls!
Re: Sega Model 2 UI
« Reply #55 on: March 01, 2021, 02:14:39 am »
There is a fix to this UI for it to work in windows 10 , all you have to do is archive the source folder files with Peazip or 7zip and leave it in the folder zipped and windows defender won't delete the files but the UI can still detect them

feref

  • Trade Count: (0)
  • Jr. Member
  • **
  • Offline Offline
  • Posts: 1
  • Last login:May 28, 2021, 03:31:14 pm
  • I want to build my own arcade controls!
Re: Sega Model 2 UI
« Reply #56 on: May 28, 2021, 11:17:26 am »
i know i am very noob with computers and programming so i'm sorry if my question looks stupid. I deactivated all my security settings but i still can't go to the link bc it says that i can't reach the site (google tells me that the link may be mispelled). can you tell me why this happens?

isidoro80

  • Trade Count: (0)
  • Jr. Member
  • **
  • Offline Offline
  • Posts: 1
  • Last login:May 24, 2022, 03:29:55 am
  • I want to build my own arcade controls!
Re: Sega Model 2 UI
« Reply #57 on: June 08, 2021, 04:06:49 am »
hi I have installed the program in windows 10 and disabled antivirus but the UI program does not work. if i try to start emulator.exe i get this error: unable to start the application correctly (0xc0007b)

tangodownNZ

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 67
  • Last login:January 02, 2024, 09:59:53 pm
  • I want to build my own arcade controls!
Re: Sega Model 2 UI
« Reply #58 on: November 25, 2021, 08:34:55 pm »
Is there a way to change the windowed mode resolution for the Model 2 application.

Daytona starts in a small windowed box. If I select switch to full screen its fine goes to full screen and the resolution is like 1080p, perfect.
However, if I leave it in windowed mode but enlarge the window so it takes up the whole screen the resolution is like 620p or something. Is there a way to make the resolution 1080p in the windowed mode so when I enlarge the window I get 1080p.

You might say just run it in full screen mode, but I can't. I am running two screens, and two players. So I need to drag one windowed application over to my second monitor. You can not run two full screen applications on one pc with two monitors.

It seems like it should be an easy fix but I can't figure out why the windowed mode is lower resolution.

Please, I know there must be a tech genius out there who knows how to do this.
« Last Edit: November 30, 2021, 12:06:52 am by tangodownNZ »

Nuexzz

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 279
  • Last login:October 01, 2023, 01:26:58 am
Re: Sega Model 2 UI
« Reply #59 on: November 28, 2021, 11:02:02 pm »
em ... if you don't trust me or the application, don't download or use it (simple)keep using the emu like you did before ... I'm not interested
« Last Edit: November 28, 2021, 11:04:29 pm by Nuexzz »

buttersoft

  • Trade Count: (+1)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 1758
  • Last login:March 22, 2024, 12:55:20 am
  • Is running at 15kHz
Re: Sega Model 2 UI
« Reply #60 on: November 29, 2021, 06:05:18 pm »
P.S By the way the download link from Nuexzz is very buggy and suspicious, its got red flags all over it and my browser will not download it. Nuexzz does not respond to private messages so I would not trust him or the link.

He's a known, long-time member of this community. If you're worried i would suggest hanging around a bit longer or going back through his posts and seeing for yourself.

tangodownNZ

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 67
  • Last login:January 02, 2024, 09:59:53 pm
  • I want to build my own arcade controls!
Re: Sega Model 2 UI
« Reply #61 on: November 29, 2021, 09:24:41 pm »
em ... if you don't trust me or the application, don't download or use it (simple)keep using the emu like you did before ... I'm not interested

I just could not understand why you would not respond when you are probably the only one who knows how to do this. I did wait for a while for a response.

If you could please tell me if there is a way to edit the .ini file to make the windowed resolution larger, not the full screen resolution that would be great. It would help out more people than just me, as I know there are others who are asking me to let them know when a solution has been found.

Thank you
« Last Edit: November 29, 2021, 11:00:16 pm by tangodownNZ »

scju

  • Trade Count: (0)
  • Jr. Member
  • **
  • Offline Offline
  • Posts: 3
  • Last login:November 01, 2022, 01:59:05 am
Re: Sega Model 2 UI
« Reply #62 on: November 29, 2021, 10:19:42 pm »
Is there a way to change the windowed mode resolution for the Model 2 application.
To be honest, the same question for me.  ::)
I hope that one day I can use higher windowed mode resolutions for two or more Model 2 applications on one screen, playing Daytona USA with my friend(s).  :)

tangodownNZ

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 67
  • Last login:January 02, 2024, 09:59:53 pm
  • I want to build my own arcade controls!
Re: Sega Model 2 UI
« Reply #63 on: November 29, 2021, 11:46:21 pm »
Why is my computer saying the GUI provided by Nuexzz has a trojan virus in it please

« Last Edit: November 30, 2021, 12:03:20 am by tangodownNZ »

10yard

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 137
  • Last login:Today at 11:46:56 am
  • L BREAK into program
    • DKAFE Frontend
Re: Sega Model 2 UI
« Reply #64 on: November 30, 2021, 03:42:59 am »
Why is my computer saying the GUI provided by Nuexzz has a trojan virus in it please

It's almost certainly a false-positive virus report.  That explanation has already been offered in this thread.  Threat can be assumed for unrecognised/unpopular software that interacts with file system.  It it works for you then please submit a false-positive report to Windows Defender to help Nuexzz reputation.
Check out my Donkey Kong Arcade Frontend at https://github.com/10yard/dkafe#readme


tangodownNZ

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 67
  • Last login:January 02, 2024, 09:59:53 pm
  • I want to build my own arcade controls!
Re: Sega Model 2 UI
« Reply #65 on: November 30, 2021, 11:58:16 pm »
Is there a way to change the windowed mode resolution for the Model 2 application.
To be honest, the same question for me.  ::)
I hope that one day I can use higher windowed mode resolutions for two or more Model 2 applications on one screen, playing Daytona USA with my friend(s).  :)

Thank you for your support. The more people asking for this the more chance we have that somebody might help

buttersoft

  • Trade Count: (+1)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 1758
  • Last login:March 22, 2024, 12:55:20 am
  • Is running at 15kHz
Re: Sega Model 2 UI
« Reply #66 on: December 01, 2021, 05:26:48 pm »
Thank you for your support. The more people asking for this the more chance we have that somebody might help

Wrong response. Dude, this isn't reddit. Or some other gigantic, faceless, nameless community where some other anon is going to rock up and help. This is a specialised piece of free software on a niche hobby subforum. Your best shot was undoubtedly the author, whose integrity you indirectly and perhaps unwittingly questioned. Alright, flagging a virus warning wasn't completely unreasonable, but the author did not take it well. Then, instead of playing nice, maybe explaining your misstep, you proceeded to double down and get cranky.

I just could not understand why you would not respond when you are probably the only one who knows how to do this. I did wait for a while for a response.

Nuexzz doesn't owe anything to you or anyone else in this situation.

« Last Edit: December 01, 2021, 05:29:43 pm by buttersoft »

tangodownNZ

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 67
  • Last login:January 02, 2024, 09:59:53 pm
  • I want to build my own arcade controls!
Re: Sega Model 2 UI
« Reply #67 on: December 01, 2021, 09:32:13 pm »
Thank you for your support. The more people asking for this the more chance we have that somebody might help

Wrong response. Dude, this isn't reddit. Or some other gigantic, faceless, nameless community where some other anon is going to rock up and help. This is a specialised piece of free software on a niche hobby subforum. Your best shot was undoubtedly the author, whose integrity you indirectly and perhaps unwittingly questioned. Alright, flagging a virus warning wasn't completely unreasonable, but the author did not take it well. Then, instead of playing nice, maybe explaining your misstep, you proceeded to double down and get cranky.

Nuexzz doesn't owe anything to you or anyone else in this situation. - what the.. I just asked for some help?

I take it you are referring to this comment I made - "I just could not understand why you would not respond when you are probably the only one who knows how to do this. I did wait for a while for a response.
If you could please tell me if there is a way to edit the .ini file to make the windowed resolution larger, not the full screen resolution that would be great. It would help out more people than just me, as I know there are others who are asking me to let them know when a solution has been found."

I politely asked for a response. Then I asked the same question again, how is that bad? And I retracted my original comment that may have caused some offense.

If those sorts of comments are enough to get me black listed and shunned forever because I hurt somebodies feeling over a mildly worded comment then I don't want help from that person anyway. I politely asked for some help which did not come and I would still be waiting for a response now if I didn't mention the virus, so I don't really care anymore. I will find somebody else who can help me, who is not so easily offended, then I will help the community out by simply posting the answer and not make people jump through hoops  or making a huge deal about it.

buttersoft

  • Trade Count: (+1)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 1758
  • Last login:March 22, 2024, 12:55:20 am
  • Is running at 15kHz
Re: Sega Model 2 UI
« Reply #68 on: December 01, 2021, 09:51:05 pm »
Alright, lets try again. Internet forums are human communication at sevral removes. We can't cue off each other's body language and tone of voice, so other nuances are much more important. The smaller the community you're interacting with is, the more important this becomes. And when you're dealing with second languages it's even more critical.

You waited three days. For a response to a question about a niche software tool on a slow board in a subforum for a relatively obscure hobby. Then, in netiquette terms, you stomped your little foot and rubbed the software author's nose in the fact you were so patient and it was unthinkable they wouldn't help you, all the while completely ignoring the fact you'd inadvertently aggravated them in the first place.

How do you not get this? You're acting like an entitled little princess. You probably aren't one. But you need to work on how you're acting here.

I don't want help from that person anyway.

I would advise backpedalling, fast, and coming at this again. But it's your choice, bud.


tangodownNZ

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 67
  • Last login:January 02, 2024, 09:59:53 pm
  • I want to build my own arcade controls!
Re: Sega Model 2 UI
« Reply #69 on: December 02, 2021, 01:50:09 am »
Ok. I am sorry for any offence that was caused. I will try to be more respectful in the future.

@buttersoft can you please do me a favor. Download the GUI from here http://uploaded.net/file/ryc0vp4f load some roms into it and run a game and tell me how you get on, because I can't get it to run on my PC. Even if I disable all my anti virus stuff, I still get error messages with various different reasons why this application can't run. I do have it running on an old laptop, so yes I am sure any virus concerns are just unrecognized files, but even though this does run I get an error message saying that
I don't know if Nuexzz would be so kind as to perhaps have another look at this and update it for us.

I don't really need a GUI though, I just thought I could tweak the .ini file to allow for a higher windowed resolution, that is all I want to do.

Thank you
« Last Edit: December 02, 2021, 11:54:43 pm by tangodownNZ »

buttersoft

  • Trade Count: (+1)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 1758
  • Last login:March 22, 2024, 12:55:20 am
  • Is running at 15kHz
Re: Sega Model 2 UI
« Reply #70 on: December 03, 2021, 12:29:13 am »

Nuexzz

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 279
  • Last login:October 01, 2023, 01:26:58 am
Re: Sega Model 2 UI
« Reply #71 on: December 03, 2021, 01:18:48 am »
Ok. I am sorry for any offence that was caused. I will try to be more respectful in the future.

@buttersoft can you please do me a favor. Download the GUI from here http://uploaded.net/file/ryc0vp4f load some roms into it and run a game and tell me how you get on, because I can't get it to run on my PC. Even if I disable all my anti virus stuff, I still get error messages with various different reasons why this application can't run. I do have it running on an old laptop, so yes I am sure any virus concerns are just unrecognized files, but even though this does run I get an error message saying that
I don't know if Nuexzz would be so kind as to perhaps have another look at this and update it for us.

I don't really need a GUI though, I just thought I could tweak the .ini file to allow for a higher windowed resolution, that is all I want to do.

Thank you

See child .. send me the directory where you have the emulatorm2 working and tell me what stretched resolution you want in windowed mode.

there is no option in m2emulator's ini that can do this, but there are external tools
« Last Edit: December 03, 2021, 01:21:08 am by Nuexzz »

Nuexzz

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 279
  • Last login:October 01, 2023, 01:26:58 am
Re: Sega Model 2 UI
« Reply #72 on: December 03, 2021, 01:42:37 am »
See if someone can guide me in which files are virus detected? maybe i can overwrite and update a bit ..

buttersoft

  • Trade Count: (+1)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 1758
  • Last login:March 22, 2024, 12:55:20 am
  • Is running at 15kHz
Re: Sega Model 2 UI
« Reply #73 on: December 03, 2021, 03:05:48 am »
See if someone can guide me in which files are virus detected? maybe i can overwrite and update a bit ..

For me Windows defender flagged xsy.dll, item1.dll. item3.dll, Snbar.dll, print.dll and Sega Model 2UI.exe :) Online virus detectors flagged them as well.

tangodownNZ

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 67
  • Last login:January 02, 2024, 09:59:53 pm
  • I want to build my own arcade controls!
Re: Sega Model 2 UI
« Reply #74 on: December 04, 2021, 01:23:00 am »
Ok. I am sorry for any offence that was caused. I will try to be more respectful in the future.

@buttersoft can you please do me a favor. Download the GUI from here http://uploaded.net/file/ryc0vp4f load some roms into it and run a game and tell me how you get on, because I can't get it to run on my PC. Even if I disable all my anti virus stuff, I still get error messages with various different reasons why this application can't run. I do have it running on an old laptop, so yes I am sure any virus concerns are just unrecognized files, but even though this does run I get an error message saying that
I don't know if Nuexzz would be so kind as to perhaps have another look at this and update it for us.

I don't really need a GUI though, I just thought I could tweak the .ini file to allow for a higher windowed resolution, that is all I want to do.

Thank you

See child .. send me the directory where you have the emulatorm2 working and tell me what stretched resolution you want in windowed mode.

there is no option in m2emulator's ini that can do this, but there are external tools

Thank you Nuexzz, and sorry for my behavior.

I'm not sure if this is what you want but here is the directory path I am using D:\Games\Model 2
My native screen resolution is 2560x1440, if that is possible. Otherwise I would be happy with 1920x1080 but I'm not sure if that will work with my native resolution.
Thank you

tangodownNZ

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 67
  • Last login:January 02, 2024, 09:59:53 pm
  • I want to build my own arcade controls!
Re: Sega Model 2 UI
« Reply #75 on: December 06, 2021, 10:12:07 pm »
Ok. I am sorry for any offence that was caused. I will try to be more respectful in the future.

@buttersoft can you please do me a favor. Download the GUI from here http://uploaded.net/file/ryc0vp4f load some roms into it and run a game and tell me how you get on, because I can't get it to run on my PC. Even if I disable all my anti virus stuff, I still get error messages with various different reasons why this application can't run. I do have it running on an old laptop, so yes I am sure any virus concerns are just unrecognized files, but even though this does run I get an error message saying that
I don't know if Nuexzz would be so kind as to perhaps have another look at this and update it for us.

I don't really need a GUI though, I just thought I could tweak the .ini file to allow for a higher windowed resolution, that is all I want to do.

Thank you

See child .. send me the directory where you have the emulatorm2 working and tell me what stretched resolution you want in windowed mode.

there is no option in m2emulator's ini that can do this, but there are external tools

I realize that this stuff takes time so I am happy to put some money towards the work that you are doing. I don't have alot of money, but if you can figure out how to change the windowed resolution I will be happy to put some money forward.

Super-Becker

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 86
  • Last login:April 12, 2024, 07:31:38 am
  • I want to build my own arcade controls!
Re: Sega Model 2 UI
« Reply #76 on: December 07, 2021, 08:48:59 am »
It would really be great to change the resolution in windowed mode. Another interesting option would be to open two windows in full, on separate screens for linked racing games.

Nuexzz

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 279
  • Last login:October 01, 2023, 01:26:58 am
Re: Sega Model 2 UI
« Reply #77 on: December 07, 2021, 09:57:34 am »
Ok. I am sorry for any offence that was caused. I will try to be more respectful in the future.

@buttersoft can you please do me a favor. Download the GUI from here http://uploaded.net/file/ryc0vp4f load some roms into it and run a game and tell me how you get on, because I can't get it to run on my PC. Even if I disable all my anti virus stuff, I still get error messages with various different reasons why this application can't run. I do have it running on an old laptop, so yes I am sure any virus concerns are just unrecognized files, but even though this does run I get an error message saying that
I don't know if Nuexzz would be so kind as to perhaps have another look at this and update it for us.

I don't really need a GUI though, I just thought I could tweak the .ini file to allow for a higher windowed resolution, that is all I want to do.

Thank you

See child .. send me the directory where you have the emulatorm2 working and tell me what stretched resolution you want in windowed mode.

there is no option in m2emulator's ini that can do this, but there are external tools

I realize that this stuff takes time so I am happy to put some money towards the work that you are doing. I don't have alot of money, but if you can figure out how to change the windowed resolution I will be happy to put some money forward.

Don't make a problem for money, I don't want it, I do this just for hoobie, wait for me a few days please, because I have a lot of work in my life. if you can send your "emulator.ini"

tangodownNZ

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 67
  • Last login:January 02, 2024, 09:59:53 pm
  • I want to build my own arcade controls!
Re: Sega Model 2 UI
« Reply #78 on: December 08, 2021, 03:25:28 am »
Cool thank you Nuexzz. Very much appreciated!

tangodownNZ

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 67
  • Last login:January 02, 2024, 09:59:53 pm
  • I want to build my own arcade controls!
Re: Sega Model 2 UI
« Reply #79 on: December 15, 2021, 01:26:06 am »
Ok. I am sorry for any offence that was caused. I will try to be more respectful in the future.

@buttersoft can you please do me a favor. Download the GUI from here http://uploaded.net/file/ryc0vp4f load some roms into it and run a game and tell me how you get on, because I can't get it to run on my PC. Even if I disable all my anti virus stuff, I still get error messages with various different reasons why this application can't run. I do have it running on an old laptop, so yes I am sure any virus concerns are just unrecognized files, but even though this does run I get an error message saying that
I don't know if Nuexzz would be so kind as to perhaps have another look at this and update it for us.

I don't really need a GUI though, I just thought I could tweak the .ini file to allow for a higher windowed resolution, that is all I want to do.

Thank you

See child .. send me the directory where you have the emulatorm2 working and tell me what stretched resolution you want in windowed mode.

there is no option in m2emulator's ini that can do this, but there are external tools

I realize that this stuff takes time so I am happy to put some money towards the work that you are doing. I don't have alot of money, but if you can figure out how to change the windowed resolution I will be happy to put some money forward.

Don't make a problem for money, I don't want it, I do this just for hoobie, wait for me a few days please, because I have a lot of work in my life. if you can send your "emulator.ini"

Hey Nuexzz, just wondering if you have the emulator.ini file I sent you. You are probably just busy. Would be nice to know if you have it though.

I know people are busy this time of year, but I keep checking here every week for a response.
Any quick response like - "I am too busy at the moment will need to wait until next year" would be appreciated just so I know.

I'll just keep checking here I guess, hopefully next year?
I'm happy to chip in if there is anything I can do to help with this.

Thanks very much and Merry Christmas to those who read this thread. Looking forward to the day we can play two full screens on the same PC!
« Last Edit: December 21, 2021, 09:08:06 pm by tangodownNZ »

tangodownNZ

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 67
  • Last login:January 02, 2024, 09:59:53 pm
  • I want to build my own arcade controls!
Re: Sega Model 2 UI
« Reply #80 on: January 25, 2022, 10:47:51 pm »
Hey Nuexzz,

Sorry I forgot to tell you. You can stick that .ini file right up your  :censored:

Now you guys watch how quickly I get a response. As soon as I say something like that they respond straight away. But when I say please and wait patiently they don't respond. I don't want help from ---punks--- like this. They can stick it.

isamu

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 807
  • Last login:April 14, 2024, 08:15:07 pm
  • I'm a llama!
Re: Sega Model 2 UI
« Reply #81 on: January 26, 2022, 12:25:57 pm »
Hey Nuexzz,

Sorry I forgot to tell you. You can stick that .ini file right up your  :censored:

Now you guys watch how quickly I get a response. As soon as I say something like that they respond straight away. But when I say please and wait patiently they don't respond. I don't want help from ---punks--- like this. They can stick it.



buttersoft

  • Trade Count: (+1)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 1758
  • Last login:March 22, 2024, 12:55:20 am
  • Is running at 15kHz
Re: Sega Model 2 UI
« Reply #82 on: January 26, 2022, 04:24:59 pm »

tangodownNZ

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 67
  • Last login:January 02, 2024, 09:59:53 pm
  • I want to build my own arcade controls!
Re: Sega Model 2 UI
« Reply #83 on: January 26, 2022, 08:54:49 pm »
As predicted, see how fast the replies came  :applaud:
Next thing Nuexzz will say he was just about to get back to me too, but now I've blown it  :laugh2:

I'm not mad. I just think it's very rude and unnecessary what he done. If you can't do it, just say you can't do it, or its going to take 2 -3 months because he's so busy.
Anyway, I don't care anymore I'm over it.

buttersoft

  • Trade Count: (+1)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 1758
  • Last login:March 22, 2024, 12:55:20 am
  • Is running at 15kHz
Re: Sega Model 2 UI
« Reply #84 on: January 26, 2022, 11:49:55 pm »
I bet you're a delight at parties.

Nuexzz

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 279
  • Last login:October 01, 2023, 01:26:58 am
Re: Sega Model 2 UI
« Reply #85 on: January 30, 2022, 03:57:41 am »
As predicted, see how fast the replies came  :applaud:
Next thing Nuexzz will say he was just about to get back to me too, but now I've blown it  :laugh2:

I'm not mad. I just think it's very rude and unnecessary what he done. If you can't do it, just say you can't do it, or its going to take 2 -3 months because he's so busy.
Anyway, I don't care anymore I'm over it.
I am rude? or you a clown who thinks I'm an employee of yours? Not for all the gold in the world would I help him... Is that clear? okay bye
« Last Edit: January 30, 2022, 04:08:04 am by Nuexzz »

Nuexzz

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 279
  • Last login:October 01, 2023, 01:26:58 am
Re: Sega Model 2 UI
« Reply #86 on: January 30, 2022, 04:04:35 am »
I can't believe they are so ignorant that they can manipulate an emulator with (ini) options which were not implemented, but hey these guys are the new generation who grew up using a smartphone without knowing what it's like to use a Windows XP" poor children" :blah:

Nuexzz

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 279
  • Last login:October 01, 2023, 01:26:58 am
Re: Sega Model 2 UI
« Reply #87 on: January 30, 2022, 04:17:16 am »
in the model2ui user interface the requested options are available, now if the antivirus says that it is doubtful. don't be fearful If you are scared, it will be a big problem for you. This life is not for the scared! it's just one! he has :laugh2:

tangodownNZ

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 67
  • Last login:January 02, 2024, 09:59:53 pm
  • I want to build my own arcade controls!
Re: Sega Model 2 UI
« Reply #88 on: April 09, 2022, 06:21:29 am »
@Nuexzz The issue I had with your UI was my antivirus kept quarantine the .dll files. It is sorted now.

Thank you, your UI does allow a maximized window at 1080p. Got there in the end.

Daytona hacks allows infinite time. Is there a way to run the hack application through your UI to allow infinite time? I can't use the hack because it doesn't allow two instances of the same game with maximized windows at 1080p




« Last Edit: April 12, 2022, 03:07:53 am by tangodownNZ »

ThatGuyNamedAA

  • Trade Count: (0)
  • Jr. Member
  • **
  • Offline Offline
  • Posts: 1
  • Last login:May 23, 2022, 10:56:45 pm
  • I want to build my own arcade controls!
Re: Sega Model 2 UI/ Xbox One Controller
« Reply #89 on: April 25, 2022, 08:07:25 pm »
Hello everyone, it really bothers me to have to do many steps to configure my favorite game, then I started to add some features for Daytona and started adding functions until I finished adding all the games.
Keep in mind that if you have errors is because I'm not a programmer (just curious) which I consider a Hobby, I have no trouble with the aggregates I plan to do.
in a few words, I publish it to not keep it for me, as I did with many things.

I have an important question.
Can I use my Xbox One controller as an alternative to an Xbox 360 controller? And if so, does it have to be wired or can it be wireless?
Please answer  :)

Update: I learned that you can, but it is best that you either use a wired controller or use a USB to make it wired.  :cheers:
I'm still looking into wireless play.
« Last Edit: May 15, 2022, 10:34:46 pm by ThatGuyNamedAA »

Yolo_Swaggins

  • Trade Count: (0)
  • Jr. Member
  • **
  • Offline Offline
  • Posts: 2
  • Last login:April 14, 2024, 11:07:43 pm
  • I want to build my own arcade controls!
Re: Sega Model 2 UI
« Reply #90 on: July 08, 2022, 05:49:53 am »
Hi thanks for the patch, i got widescreen to work on virtua cop 1 & 2 but the bullets still only can be shot within the 4:3 size window, if i try and shoot on the outer edge of the screen the bullets wont reach that far although the crosshair will be in that area it's like the bullets are locked into the original 4:3. is there a fix for that or it's just the way it is?

Nuexzz

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 279
  • Last login:October 01, 2023, 01:26:58 am
Re: Sega Model 2 UI
« Reply #91 on: July 09, 2022, 01:23:10 am »
Hi, I had no idea about this error. I'm going to look at it in a month or so to be honest, I don't have a pc yet

Nuexzz

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 279
  • Last login:October 01, 2023, 01:26:58 am
Re: Sega Model 2 UI
« Reply #92 on: July 09, 2022, 01:27:59 am »

could try modifying some of these for the time being.

[Model2_SetWideScreen(1)
Model2_SetStretchBLow(1)
Model2_SetStretchBHigh(1)]

nonosto

  • Trade Count: (0)
  • Jr. Member
  • **
  • Offline Offline
  • Posts: 8
  • Last login:November 10, 2023, 01:37:29 am
  • I want to build my own arcade controls!
Re: Sega Model 2 UI
« Reply #93 on: July 12, 2022, 05:26:35 am »
is it possible to patch original eeprom for widescreen for example sega rally ?

Nuexzz

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 279
  • Last login:October 01, 2023, 01:26:58 am
Re: Sega Model 2 UI
« Reply #94 on: July 21, 2022, 01:48:21 am »
is it possible to patch original eeprom for widescreen for example sega rally ?

hardware i cant help you  :dunno

MydknyteStyrm

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 331
  • Last login:March 20, 2024, 12:19:41 pm
  • Makeup FX Gamer
Re: Sega Model 2 UI
« Reply #95 on: July 25, 2022, 08:40:02 am »
Thank you for this. The widescreen looks fantastic. My only issue is that I can’t get DemulShooter to play nice with your version of the emulator.exe. No matter what I won’t get two guns. Works fine on the 1.1a. Are they different emulators in a sense of the coding you wrote for the widescreen hacks, or are they the same? The INI for both yours and the 1.1 are relatively the same. Does anyone have DemulShooter working with this version? Thanks in advance.

scju

  • Trade Count: (0)
  • Jr. Member
  • **
  • Offline Offline
  • Posts: 3
  • Last login:November 01, 2022, 01:59:05 am
Re: Sega Model 2 UI
« Reply #96 on: August 16, 2022, 01:46:18 am »
To be honest, the same question for me.  ::)
I hope that one day I can use higher windowed mode resolutions for two or more Model 2 applications on one screen, playing Daytona USA with my friend(s).  :)
I mean, now the game is like this:

If you don't mind, Nuexzz, could you please help to adapt resolutions to window sizes?  :)
« Last Edit: August 16, 2022, 02:28:05 am by scju »

Nuexzz

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 279
  • Last login:October 01, 2023, 01:26:58 am
Re: Sega Model 2 UI
« Reply #97 on: August 18, 2022, 01:37:15 am »
I can't help you at the moment, sorry

scju

  • Trade Count: (0)
  • Jr. Member
  • **
  • Offline Offline
  • Posts: 3
  • Last login:November 01, 2022, 01:59:05 am
Re: Sega Model 2 UI
« Reply #98 on: September 13, 2022, 10:48:18 pm »
I can't help you at the moment, sorry
Take your time.  :)

connormmii

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 11
  • Last login:May 16, 2023, 01:08:37 am
  • I want to build my own arcade controls!
Re: Sega Model 2 UI
« Reply #99 on: September 22, 2022, 04:14:16 pm »
Where is the link for the latest version of the UI? Im not sure I'm running the latest version

moonitor

  • Trade Count: (0)
  • Jr. Member
  • **
  • Offline Offline
  • Posts: 1
  • Last login:May 10, 2023, 05:02:09 pm
  • I want to build my own arcade controls!
Re: Sega Model 2 UI
« Reply #100 on: May 10, 2023, 05:02:54 pm »
hello to everyone, I have a problem with Sega Model 3 UI -r886, when I double click it to open an error occurs:
"The file LibreriaIconos.dll is missing".
Do you know how to solve it ?
Thanks

SegaFan22

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 15
  • Last login:March 17, 2024, 04:57:43 am
  • I want to build my own arcade controls!
Re: Sega Model 2 UI
« Reply #101 on: May 13, 2023, 02:23:59 am »
hello to everyone, I have a problem with Sega Model 3 UI -r886, when I double click it to open an error occurs:
"The file LibreriaIconos.dll is missing".
Do you know how to solve it ?
Thanks

Check the title, buddy. This discussion is about the Model 2, not 3. Open a new one or ask elsewhere  :dunno

Monza

  • Trade Count: (0)
  • Jr. Member
  • **
  • Offline Offline
  • Posts: 5
  • Last login:September 27, 2023, 12:39:27 am
  • I want to build my own arcade controls!
Re: Sega Model 2 UI
« Reply #102 on: September 05, 2023, 07:40:06 am »
Link is broken?