SlotForum banner

Race Rotation Status (Driver Status)

686 Views 4 Replies 3 Participants Last post by  Slot'n 77
Hi All,

I've been hacking RC's XAML files whenever I get a chance to tweak it for my purposes. Sure is a cool system for slot racing and testing.

I'd like to know if there is a way in RC to display the rotation status of drivers. I know the Slotrak software has a screen that is a lot like RC's "Race Results" XAML but it also shows what the driver's current rotation status is, e.g., Active (shown by current lane color behind driver's name), "Out" (The word "Out" next to the driver's name indicating they are still in the rotation but waiting for a lane), and "Done" (indicating the driver has completed the rotation).

Searched like crazy for this since I thought it would be something others had already covered but didn't find anything in the forums yet.

Anybody done this? Any ideas?

I've been able to add "On Deck/Up Next" to my primary race screen XAML, which is very helpful. But it would be great to have a window or screen display between heats that shows the status of the rotation/race.

Thanks,

Steve
1 - 5 of 5 Posts
This isn't supported in RC. You'd have to make a request in the feature request thread. I'm not sure how easy/hard that would be to do but I'm sure it's possible.
If you startup RC live you got a list of all heats in an event. This is presented better than the xaml in RC
Great input, thanks!

The Heat windows aren't quite what I was looking for. So I guess I'll wait and see what other's have to say before adding it to the Feature Requests.
Hacked the Race Day screen with this:


<DockPanel Grid.Column="2" Height="195" Width="280">
<Grid Grid.Column="2" VerticalAlignment="Top" Margin="15,0,15,0" >
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="50" />
</Grid.RowDefinitions>
<TextBlock Grid.Row="0" FontSize="20" Foreground="#ffef0d" Text="ON DECK:" Margin="0,6,0,0" FontWeight="Bold" HorizontalAlignment="Left" VerticalAlignment="Bottom" />
<Viewbox Margin="0,-10,0,4" VerticalAlignment="Center" HorizontalAlignment="Left" Stretch="Fill" MinWidth="120" MaxHeight="30" MinHeight="28" Grid.Row="1" Grid.Column="2">
<Border BorderThickness="1" BorderBrush="Gray">
<TextBlock Grid.Row="1" Name="OnDeckNickname1_1" Margin="0,0,0,0" Padding="1" FontSize="32" Foreground="#00FF05" Background="Purple" FontWeight="Bold" VerticalAlignment="Top"
HorizontalAlignment="Left" />
</Border>
</Viewbox>

</Grid>
</DockPanel>

Shows the On-Deck driver in the top middle part of the screen with lane color.
See less See more
1 - 5 of 5 Posts
This is an older thread, you may not receive a response, and could be reviving an old thread. Please consider creating a new thread.
Top