-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Linux][lostwsga] Aiming problem #155
Comments
Which build are you using and where did you get it from? I’m pretty certain Lost World works fine. You may need to calibrate things in the service menu and then double check your INI file settings. Can you paste both your INI file as well as Supermodel.log after running lostwsga? |
Hi trzy, I am using Supermodel 0.3a-WIP, I got it from your Github page running: git clone https://github.com/trzy/Supermodel.git My GPU info: 4.6 (Core Profile) Mesa 24.0.5-1ubuntu1 (core profile). The emulator is installed on Ubuntu 24.04 LTS, with gcc 13.2.0 and libglu1-mesa-dev installed. Here are the files you asked. I tried to calibrate the gun in Service Mode but it was moving only on the horizontal plan. I converted the .ini file into a .txt one otherwise Github would not have accepted it. |
I think there's a few issues coming together here that makes this problem keep coming around. If you look at the OPs log file, you'll see lostwsga is requested and loaded, but on the next line down lostwsgp is called in.
A merged ROM set issue? The next problem is Supermodel is looking for out dated hard coded game names in Model3.cpp. https://github.com/trzy/Supermodel/blob/master/Src/Model3/Model3.cpp#L613
Btw, There is also hard coded name check in Main.cpp
Plus, when you add in the fact that users can amend their Games.xml to change the gun type, users mileage really will vary when playing lost world games. |
This is a really good point! We should not be looking for names but rather checking for the inputs that the game has, in the Game struct. |
Hello Trzy and ToBul, thanks for the explanations. Sorry Trzy, by writing this:
You mean that I should look into Games.xml? Sorry I am still a beginner from this point of view ;) By the way, changing the rom solved the problem. Why my first rom was faulty and why the new one is working? Regards. |
You're ROMs wouldn't of been faulty, just merged. Supermodel doesn't always handle merged ROMs correctly. Supermodel then fails to identify the ROM it loads due to outdated code. From reading other posts, I think Supermodel also struggles with ROMs scud and scudau. This means users aren't always getting the version of the game they think they are getting. Bart has said he would like to improve the game loading logic at some point. I wish him luck as the game loader file is over 1000 lines long, and I don't understand a word of it. 😄 |
I wish him luck as well. Anyway he is doing an amazing job on the emulator :) |
It’ll be easy — I’ll take the list of files and send it to ChatGPT with a prompt and Games.xml and it’ll tell us what game it is. While I’m at it, maybe also add a voice interface to Supermodel so you can just tell it what options you want and how to map your inputs 😉Sent from my iPhoneOn Sep 6, 2024, at 2:11 PM, WebSiteFurbo ***@***.***> wrote:
I wish him luck as well. Anyway he is doing an amazing job on the emulator :)
—Reply to this email directly, view it on GitHub, or unsubscribe.You are receiving this because you commented.Message ID: ***@***.***>
|
@WebSiteFurbo Yooooo, just remove the controller JOY1XAXIS & JOY1YAXIS inputs from the ini file, or unplug/disconnect your controller. You are getting clashing inputs with the controller which causes mouse moment to be stuck on one axis. Simples! Not linux related btw |
Hello to everybody,
I noticed that:
I think it is a bug because the following configuration in the ini file works very well with Ocean Hunter but not for The Lost World, so I do not want to modify it:
; Analog guns (Ocean Hunter, LA Machineguns)
InputAnalogGunLeft = "KEY_LEFT" ; digital, move gun left
InputAnalogGunRight = "KEY_RIGHT" ; digital, move gun right
InputAnalogGunUp = "KEY_UP" ; digital, move gun up
InputAnalogGunDown = "KEY_DOWN" ; digital, move gun down
InputAnalogGunX = "MOUSE_XAXIS,JOY1_XAXIS" ; analog, full X axis
InputAnalogGunY = "MOUSE_YAXIS,JOY1_YAXIS" ; analog, full Y axis
InputAnalogTriggerLeft = "KEY_A,JOY1_BUTTON1,MOUSE_LEFT_BUTTON"
InputAnalogTriggerRight = "KEY_S,JOY1_BUTTON2,MOUSE_RIGHT_BUTTON"
I noticed that during the boot an error message appears as well:
I tried to find this "Sensor Gun!!" warning on the official manual but I did not find it.
00000482.pdf
Any help is greatly appreciated.
The text was updated successfully, but these errors were encountered: