• Welcome to PiBoSo Official Forum. Please login or sign up.
 
April 20, 2024, 01:57:31 AM

News:

World Racing Series beta14 available! :)


Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Messages - gaga_dreher

1
General Discussion / AI BOT
March 04, 2024, 04:39:38 PM
Hey folks!

So, I'm all about motorcycle simulators and guess what? I'm making a 'BOT' for GP Bikes! The plan is to let it do loads of laps fast to test stuff out.

Here's where I need your help – got any data from your races? I wanna use it to make the bot smarter, then see if it can beat you guys 😬. Any data, old or new, from any track, would be super awesome!

Cheers for any help you can give!
2
General Discussion / Re: Track - MATLAB
April 14, 2021, 07:56:22 PM
Quote from: HornetMaX on April 14, 2021, 09:53:09 AMEach track comes with a .tcl (centerline) file: it's text and contains the description of the segments (straights, arcs). Some info from the output plugin sample file:

/******************************************************************************
structures and functions to receive the track center line
******************************************************************************/

typedef struct
{
 int m_iType; /* 0 = straight; 1 = curve */
 float m_fLength; /* meters */
 float m_fRadius; /* curve radius in meters. < 0 for left curves; 0 for straights */
 float m_fAngle; /* start angle in degrees. 0 = north */
 float m_afStart[2]; /* start position in meters */
 float m_fHeight; /* start height in meters */
} SPluginsTrackSegment_t;


Thank you !! 🤝
3
General Discussion / Track - MATLAB
April 13, 2021, 11:56:40 PM
Hi folks,

I would like to plot the track using matlab. Can anyone gimme an idea how to do it?

Thanks