MTM2.com

A forum for mtm2 discussion
FAQ :: Search :: Members :: Groups :: Register
Login
It is currently Thu Mar 28, 2024 2:19 pm



Post new topic Reply to topic  [ 22 posts ]  Go to page 1, 2  Next   
Author Message
 Post subject: MTM2 Beta Patch 0.30 - The UI attack
PostPosted: Tue Aug 02, 2016 2:39 am 
Member
User avatar

Joined: Mon Jul 02, 2001 2:01 pm
Posts: 1399
Location: Lost in Translation
So it's time,

http://www.mtm2.com/~mtmg/misc/Beta0.30.rar (rar file - 63mb)
http://www.mtm2.com/~mtmg/misc/Beta0.30.zip (zip file - 75mb)

Changes from Beta 0.27

- "too many vertices" error should have been fixed. I have doubled the vertices limit. Am curious if it's going to be hit.
- I have not been able to get the game to crash on Zoon Kitchen 2 and/or Toys in the Attic. Either i inadvertently fixed it or it requires a very specific action. Please let me know if you guys can crash it.
- Pitch black hall-of-mirror bug has been fixed.
- Removed obsolete resolutions (320x200). Now the game defaults to 640x480 as the lowest. Also removed 2560x1440 as it doesn't work with Directx5.
- Improved the fail safe mechanism in case a wrong resolution is chosen. The game should default to 640x480.
- The checkpoint finder has been improved... somewhat. It's not a garbled mess anymore. It's not great but it's functional at least.

Notes:

- The checkpoint finder... it's functional but it is still a mess. However, there is no way I can improve it without significant code rewrite. The finders rely on 3 different files, .raw, .act and .aai. Raw and Act are easily obtainable with FlyRaw but .AAI is not. It's an anti-aliasing mechanism and the game simply crashes without it. Hence there is no way I can make it 100%. Meh. Have to go through the code and remove any sort of dependency on this file. The dashboard also makes heavy use of AAI which also means I got no chance of getting that to work properly either.
- I am not able to lock out the non-3dfx compatible resolutions. I have come to realize the game doesn't have a mechanism to tell itself apart from 3dfx or direct3d. It only tells itself apart from software. Instead I chose to label 3dfx the two workable options. 640x480 and 856x480 (remember, for 856x480 you need to set nGlide to stretch the screen to end up with proper wide screen).
- Instant Replay is fugly but I have no desire to spend my immediate time making it pretty. Maybe I will fix it eventually but it's extremely low priority. However, I do want to point out something weird is going on with the zoom out button. I haven't been able to find why. Most of the the time it doesn't render correctly and it overlaps the other buttons. You might have to open the replay window several times until the button works properly (it doesn't display correctly but it doesn't overlap the other buttons).
- The joystick calibration has an extra green line to the left. Does not affect usability in any way.
- About screen doesn't work. 4/5 it crashes.
- Software mode crashes on some tracks (like Fila's Adventure) but Direct3d/3dfx works fine.

Still To Do:
- While you guys are testing this I will fix About screen + the two loading screens. If no other significant issues come up, once I have the new screens ready I will launch this as the first community patch. And after the release of the community patch I will start investing time into improving the game like increasing the draw distance even further, increase object limits and trying to get the dern menu to disappear under Win8/10 (this menu thing has become essential due to the finder only half working) etc. I will post a more detailed thread about what the future holds once the full release is upon us.


Top
 Profile  
 
 Post subject: Re: MTM2 Beta Patch 0.30 - The UI attack
PostPosted: Tue Aug 02, 2016 11:07 am 
Member

Joined: Sun Mar 01, 2015 4:34 pm
Posts: 44
WOW

Thanks Fila for doing this, giving your time to make this real. If I wasn't too lazy, I would read my C++ 6.0 book that I owned.(you were the main person why I bought that book) XD
So I can try to help you :)


Top
 Profile  
 
 Post subject: Re: MTM2 Beta Patch 0.30 - The UI attack
PostPosted: Tue Aug 02, 2016 12:42 pm 
Member
User avatar

Joined: Mon Jul 02, 2001 2:01 pm
Posts: 1399
Location: Lost in Translation
I found the code that positions the finder, so as as quick workaround until I figure out the menu thing will be to move the finder just a little lower.


Top
 Profile  
 
 Post subject: Re: MTM2 Beta Patch 0.30 - The UI attack
PostPosted: Wed Aug 03, 2016 6:47 pm 
Member
User avatar

Joined: Sun Oct 16, 2005 4:39 pm
Posts: 1816
Location: Winnipeg Manitoba, Canada
Have a look here
https://msdn.microsoft.com/en-ca/librar ... 77(v=vs.85).aspx
Search for a few of those in code, such as DrawMenubar.
The issue is probably around there somewhere. I wouldn't be surprised if the game always drew the menu, and then drew the game frame overtop of it on the same buffer. And some change in Windows prevents that from working.
If necessary, on the game load, use GetMenu to retrieve the handle, then removemenu.
I am not actually sure how to put the menu back afterwards.

_________________
Image


Top
 Profile  
 
 Post subject: Re: MTM2 Beta Patch 0.30 - The UI attack
PostPosted: Thu Aug 04, 2016 10:32 pm 
Member
User avatar

Joined: Sun Oct 16, 2005 4:39 pm
Posts: 1816
Location: Winnipeg Manitoba, Canada
Crashed.
Image
I was on the hook, and pressing F to turn off the broken finder, and that happened.
-Edit
I did the exact same thing in Wilderness 2 (this update makes this amazing track look even better) and it works smoothly. So must be something about zoon kitchen 2

_________________
Image


Top
 Profile  
 
 Post subject: Re: MTM2 Beta Patch 0.30 - The UI attack
PostPosted: Thu Aug 04, 2016 10:49 pm 
Member
User avatar

Joined: Mon Jul 02, 2001 2:01 pm
Posts: 1399
Location: Lost in Translation
Hmmm... I do think there is indeed particular situations in which it crashes and it might have something to do with the vertexbuffer. I'll try increasing that.

In the meantime I toyed around with increasing the draw distance even further and while I did get it to work but there's issues. Number one issue is that the framerate drops between 5-10fps on Win 10 on object heavy tracks. I am confident to say that this problem is related to the obsolete rendering engine that simply cannot handle so many vertices efficiently. I can implement the draw distance but some tracks will have issues(an example is Fila's Adventure and Alpine's Certifiably Crazy). The ideal scenario is obviously porting the game to dx9 which would probably take care of that. Meh.


Top
 Profile  
 
 Post subject: Re: MTM2 Beta Patch 0.30 - The UI attack
PostPosted: Fri Aug 05, 2016 1:18 pm 
Member
User avatar

Joined: Sun Oct 16, 2005 4:39 pm
Posts: 1816
Location: Winnipeg Manitoba, Canada
Fila wrote:
Hmmm... I do think there is indeed particular situations in which it crashes and it might have something to do with the vertexbuffer. I'll try increasing that.

In the meantime I toyed around with increasing the draw distance even further and while I did get it to work but there's issues. Number one issue is that the framerate drops between 5-10fps on Win 10 on object heavy tracks. I am confident to say that this problem is related to the obsolete rendering engine that simply cannot handle so many vertices efficiently. I can implement the draw distance but some tracks will have issues(an example is Fila's Adventure and Alpine's Certifiably Crazy). The ideal scenario is obviously porting the game to dx9 which would probably take care of that. Meh.

Yeah 9 would be freaking hard. Could probably do 7 or 8 though. A lot changed between 8 and 9, making porting very difficult. 7 or 8 might literally just be changing the references and solving compile errors. I've never done it myself though.
As for the performance drop, are you using the 3dFX or the DX version? Your current version for me on 4790k is easily exceeding 60fps in every track I tried when using the DX version.

_________________
Image


Top
 Profile  
 
 Post subject: Re: MTM2 Beta Patch 0.30 - The UI attack
PostPosted: Fri Aug 05, 2016 1:26 pm 
Member
User avatar

Joined: Mon Jul 02, 2001 2:01 pm
Posts: 1399
Location: Lost in Translation
It's a performance drop all across the board, in 3dfx, dx and software and happens at every resolution, including 640x480.


Top
 Profile  
 
 Post subject: Re: MTM2 Beta Patch 0.30 - The UI attack
PostPosted: Sun Aug 07, 2016 8:04 pm 
Member
User avatar

Joined: Mon Jul 02, 2001 2:01 pm
Posts: 1399
Location: Lost in Translation
OK, Zkitchen has started crashing for me too. It's weird that it didn't crash for all the times I tried it earlier (must have been over 10 times). And the reason it's crashing is not what I thought it is so meh. Have to try and figure this out. I'm starting to think the crash on ZKitchen might be in some way connected to the animated textures and objects. If you notice, the animations look like they are on fast forward for the arrows and for the fans (until you get close to the fans, then they behave normally). Hmmmmmmm. If the draw distance is decreased then it works fine.


Top
 Profile  
 
 Post subject: Re: MTM2 Beta Patch 0.30 - The UI attack
PostPosted: Sun Aug 07, 2016 11:17 pm 
Member
User avatar

Joined: Sun Oct 16, 2005 4:39 pm
Posts: 1816
Location: Winnipeg Manitoba, Canada
Fila wrote:
OK, Zkitchen has started crashing for me too. It's weird that it didn't crash for all the times I tried it earlier (must have been over 10 times). And the reason it's crashing is not what I thought it is so meh. Have to try and figure this out. I'm starting to think the crash on ZKitchen might be in some way connected to the animated textures and objects. If you notice, the animations look like they are on fast forward for the arrows and for the fans (until you get close to the fans, then they behave normally). Hmmmmmmm. If the draw distance is decreased then it works fine.

Ok that sounds complicated.
Good luck

_________________
Image


Top
 Profile  
 
 Post subject: Re: MTM2 Beta Patch 0.30 - The UI attack
PostPosted: Mon Aug 08, 2016 5:40 am 
Member
User avatar

Joined: Mon Jul 02, 2001 2:01 pm
Posts: 1399
Location: Lost in Translation
Sigh. Spent the whole day on this and I'm not any closer to finding out what's happening. Also it doesn't help that ZKitchen seems to be a special scenario.


Top
 Profile  
 
 Post subject: Re: MTM2 Beta Patch 0.30 - The UI attack
PostPosted: Mon Aug 08, 2016 12:55 pm 
Member

Joined: Tue Jul 27, 2010 9:32 pm
Posts: 15
Love the work you're doing - here's my experience with the new beta so far.

1) No problems with vertices now. I've been able to turn the tire tracks back on and everything works fine.
2) Perhaps it's unique to my system, but the checkpoint finder is working just fine for me. I'm running Windows XP, in case that matters.
3) Regarding the Zoon Kitchen/Toys in the Attic issue, I encountered that with the last beta and was able to fix it with NOBLIMP.pod. I think the issue is related to what's discussed here: viewtopic.php?f=13&t=1996&hilit=blimp

I think I shared that in the last thread but maybe it'll be helpful to post it again. If I had to guess, because Toys in the Attic and Zoon Kitchen 1 & 2 have elevated tracks, the blimp ends up being crowded by objects and the game struggles to render it. In the last beta, it looked to me like the blimp was "freaking out", blinking in and out of existence right before the game crashed. I don't know how the blimp works - if you can just set it to always be much higher in the sky, or if it would be more practical to just mod the affected tracks so the blimp is up and out of the way. But if nothing works NOBLIMP.pod solves the issue, and all three tracks run perfectly for me now.

The new menu screens look great, I'm very impressed. As you get towards the end of modding this game, I have a bold suggestion to make. It might be a lot of work though, so let me know if you're interested.


Top
 Profile  
 
 Post subject: Re: MTM2 Beta Patch 0.30 - The UI attack
PostPosted: Mon Aug 08, 2016 2:10 pm 
Member
User avatar

Joined: Mon Jul 02, 2001 2:01 pm
Posts: 1399
Location: Lost in Translation
2) What resolution are you running at?
3) Yeah The blimp has a connection to the problem but it's not just that. I took out the blimp and hasn't crashed anymore but it's still not right. The helicopter (if you call it for example) will "freak out" just like the blimp does. And so far I have not been able to figure out why. I can't tell if it's the elevation, or the overload of animated models or what. The sheer number of models should not be the problem but if the draw distance is decreased then it works fine. Since I made the changes trying to fix it initially, I have not been able to get it to crash on Toys and ZKitchen1. It works great on my end and the blimp/helicopter behave normal. It's only ZKitchen2 that freaks out.

You can always make suggestions. I'm welcome to hear any ideas, it's just a matter of whether I am capable of actually implementing them :)


Top
 Profile  
 
 Post subject: Re: MTM2 Beta Patch 0.30 - The UI attack
PostPosted: Mon Aug 08, 2016 3:20 pm 
Member

Joined: Tue Jul 27, 2010 9:32 pm
Posts: 15
I'm running the game at 1440 x 900. I haven't noticed any issues with the checkpoint finder at all. As for my suggestion, I just checked the source code thread and you may be a step ahead of me.

Fila wrote:
I noticed stuff like the mtm1 drag racing code is still there.

re-adding drag races etc I'm totally up for trying to implement.


It would be great if you could re-add the drag races some point down the line. I know you might need to create new menus to make that work so if that is the case and you'd like any help I'd gladly do my best.


Top
 Profile  
 
 Post subject: Re: MTM2 Beta Patch 0.30 - The UI attack
PostPosted: Mon Aug 08, 2016 6:36 pm 
Member
User avatar

Joined: Mon Jul 02, 2001 2:01 pm
Posts: 1399
Location: Lost in Translation
Yeah at 1440x900 the finder is mostly fine. Once you go above 1280x1024 it starts getting messy.


Top
 Profile  
 
 Post subject: Re: MTM2 Beta Patch 0.30 - The UI attack
PostPosted: Mon Aug 08, 2016 7:02 pm 
Member
User avatar

Joined: Sun Oct 16, 2005 4:39 pm
Posts: 1816
Location: Winnipeg Manitoba, Canada
Well then, maybe it's time for the blimp to die?
Or at least make it say something else, something about us, and not goodyear lol

_________________
Image


Top
 Profile  
 
 Post subject: Re: MTM2 Beta Patch 0.30 - The UI attack
PostPosted: Mon Aug 08, 2016 7:37 pm 
Member
User avatar

Joined: Mon Jul 02, 2001 2:01 pm
Posts: 1399
Location: Lost in Translation
I'm thinking of adding a button that allows you to disable the blimp. Even though technically if you use sparse scenery it should disable blimp.

Btw bconley, what XP version are you running? With service pack3?


Top
 Profile  
 
 Post subject: Re: MTM2 Beta Patch 0.30 - The UI attack
PostPosted: Mon Aug 08, 2016 10:17 pm 
Member

Joined: Tue Jul 27, 2010 9:32 pm
Posts: 15
Windows XP professional with service pack 3.


Top
 Profile  
 
 Post subject: Re: MTM2 Beta Patch 0.30 - The UI attack
PostPosted: Tue Aug 09, 2016 12:11 am 
Member
User avatar

Joined: Mon Jul 02, 2001 2:01 pm
Posts: 1399
Location: Lost in Translation
Yeah figures. Someone was trying to get it to work on SP2 but it won't. SP3 is probably the minimum required because Microsoft.


Top
 Profile  
 
 Post subject: Re: MTM2 Beta Patch 0.30 - The UI attack
PostPosted: Tue Aug 09, 2016 7:20 pm 
Member
User avatar

Joined: Mon Oct 27, 2003 7:28 pm
Posts: 603
This is flat amazing, Fila. So nice to be able to run MTM2 in a high resolution in DirectX without having to screw around with nGlide. Lovely stuff. More impetus to finish the HD trucks...

Image
Image

Interesting that in running the game, the menu bar appears, but doesn't show up in these screenshots, so there's obviously a DirectX thing going on there.


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 22 posts ]  Go to page 1, 2  Next   


Who is online

Users browsing this forum: No registered users and 25 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group