![]() |
|
Riverside track project - Printable Version +- Forums (https://www.icr2.net/forum) +-- Forum: CART Racing Headquarters (https://www.icr2.net/forum/forumdisplay.php?fid=1) +--- Forum: Indycar Racing 2 - CART Racing (ICR2) (https://www.icr2.net/forum/forumdisplay.php?fid=2) +--- Thread: Riverside track project (/showthread.php?tid=1537) |
RE: Riverside track project - checkpoint10 - 05-25-2024 I made some rough LPs to test car visibility and I have found: - As Dennis suggested, moving the TSOs as far back as possible minimizes the cars disappearing. - The DYNO statement doesn't appear to work in TSOs (i.e. cars are not drawn on the track TSO when the rest of the TSO is visible). - TV cameras seem to treat objects differently, I think the TSO is still overlapping the track when the car is at a section that shouldn't have the TSO there. I am wondering if it might be possible to adjust the DYNO statement within some track sections of the track.3d file to make the game draw the cars at farther DLONGs. There was one time on Nashville that I somehow made cars visible from the other side of the bridge, even though there is obviously a big DLONG gap between one side and the another side. RE: Riverside track project - Dennis - 05-25-2024 (05-25-2024, 07:42 AM)checkpoint10 Wrote: I made some rough LPs to test car visibility and I have found: You have to modify the structure in the TSO sectors. It's still a mystery, why the structure of the regular sectors in the 3D file works, because it shouldn't, if I understand the functions of the 3D file right, and it doesn't, if I use the same structure in the TSO sectors. This is the structure of a regular subsector FACE (track surface) LIST BSPA (right wall) BSPA (left wall) left objects left wall DYNO right wall right objects track surfaces And this is the structure of a TSO subsector, how I did it BSPN(right wall) BSPN(left wall) left wall FACE(track surface) LIST track surfaces DYNO right wall To collect multiple subsectors to a single object, I used the BSPN function, with the plane of the end points of the walls at the border of the subsectors. There are probably different ways to do this, I did it like this. Let's say the sector has 6 subsectors: s0, s1, s2, s3, s4, s5 then my BSP tree is r1: BSPN() s5,s4 r2: BSPN() s1,s0 r3: BSPN() r1,s3 r4: BSPN() s2,r2 r5: BSPN() r3,r4 RE: Riverside track project - checkpoint10 - 05-25-2024 I actually didn't try anything too different for my track TSOs. All I did was remove the first FACE statement and then remove references to objects. For example: Code: sec35_s0_LO: At the end, I did this. Basically just a list of all the sections in descending order: Code: root: LIST {sec40_s0_LO, sec39_s1_LO, sec39_s0_LO, sec38_s1_LO, sec38_s0_LO, sec37_s0_LO, sec36_s0_LO, sec35_s0_LO};It seems to work well enough... EDIT: I think I may get better results if I broke up my track TSO into the 8 TSOs and put each of them in the ObjectList only as needed. I also found that I was able to get around the TV view issue by putting a BSPF function to make the TSO invisible when the view is slightly above the highest point of my TSO. RE: Riverside track project - samsepi0l - 05-28-2024 (05-25-2024, 04:59 PM)checkpoint10 Wrote: EDIT: I think I may get better results if I broke up my track TSO into the 8 TSOs and put each of them in the ObjectList only as needed. I also found that I was able to get around the TV view issue by putting a BSPF function to make the TSO invisible when the view is slightly above the highest point of my TSO. I think BSPF makes the game run faster than BSPA. I use BSPF more because of this if I can get away with it. I think part of the problem with my Chicago oval is that I used BSPA on many parts of the main grandstand and this might cause some slowdown with many cars on the track at once coming out of t4. RE: Riverside track project - samsepi0l - 06-21-2024 Do you have these 3d files? I was going to make the bridge on the back straight tonight. RE: Riverside track project - checkpoint10 - 06-25-2024 I shared the working folder with you offline. Handing the track build off to you now! RE: Riverside track project - samsepi0l - 06-26-2024 let the TSO's begin RE: Riverside track project - Pavel 69 - 06-26-2024 (06-26-2024, 02:33 PM)samsepi0l Wrote: let the TSO's begin RE: Riverside track project - samsepi0l - 06-27-2024 Do you guys like this for a track screen? I think it is from some fancy modern racing game. I also looked at the "floating grandstand" and I think the easiest way to fix it would be to do a few things: change the hill which is actually a TSO right under the grandstand like pavel said- to make it wider. This way when you approach the braking zone it will take up the full space under the grandstand. Move the objects back further to other sectors so they come on sooner. I am hoping this will work sufficiently. RE: Riverside track project - Pavel 69 - 06-27-2024 I don't like that picture ![]() What about this: ![]()
|