Project

General

Profile

Feature #188

Updated by Jesús M. Broceño 10 months ago

ZRound tells me in various ways when the car passes the measurement line. It's a sound and it's a zround display 

 But isn't it difficult to understand in what order the cars passed during race events? 

 For example, when 3 cars pass at once. The sound will fire 3 times. I understand that 3 cars have passed, but I don't know the order 

 So I would like to know if it is possible to have a mini window like this. The history of passing the measurement line is displayed here 
 ``` 
  +--------------------------+ 
  | DriverName | Laps | Time | 
  +--------------------------+ 
  |              |        |        | 
  |              |        |        | 
  |              |        |        | 
  |              |        |        | 
  +--------------------------+ 
 ``` 
  When the car passes the measurement line, its driver will be displayed at the top 

 ``` 
  +--------------------------+ 
  | DriverName | Laps | Time | 
  +--------------------------+ 
  | K.Yano       |    1     |11.089| 
  |              |        |        | 
  |              |        |        | 
  |              |        |        | 
  +--------------------------+ 
 ``` 
 Here is an example of two cars passing after that 
 ``` 
  +--------------------------+ 
  | DriverName | Laps | Time | 
  +--------------------------+ 
  |    Mike        |    1     |09.021| 
  |    Jesus       |    1     |08.078| 
  | K.Yano       |    1     |11.089| 
  |              |        |        | 
  +--------------------------+ 
 ``` 
  It will look like this when the leading driver passes again. This does not indicate heat ranking 
 ``` 
  +--------------------------+ 
  | DriverName | Laps | Time | 
  +--------------------------+ 
  | K.Yano       |    2     |09.123| 
  |    Mike        |    1     |09.021| 
  |    Jesus       |    1     |08.078| 
  | K.Yano       |    1     |11.089| 
  |              |        |        | 
  +--------------------------+ 
 ``` 
 If possible, it would be nice to be able to change the background color of Driver name. The background color changes when each driver updates the Best Lap 

 ### Implementation 

 New panel added to the main console 
 ![](clipboard-202307241930-ia3dz.png) 


 It can be    decoupled as bestlaps form .... 
 ![](clipboard-202307241930-irozo.png) 

 - Font size can be adjusted with ctlr and the mouse wheel (editado)  
 - It can be cleared manually (using the "clear" option on the context menu). It's automatically cleared before starting every timing session 
 - It shown on green the racer's best time, on purple the session best time and on white a normal lap. Even/odd rows are colored on different background tone for better reading

Back