-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
809b317
commit fcc2a5a
Showing
8 changed files
with
271 additions
and
1 deletion.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,208 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
|
||
namespace Daktronics.AllSport5000 | ||
{ | ||
class ScoreboardMessageFootball | ||
{ | ||
private string lastMessageText = string.Empty; | ||
|
||
/// <summary> | ||
/// Main clock time as mm:ss or, if there is less than one minute on the game clock, ss.t) | ||
/// </summary> | ||
public string MainClockConditional; | ||
/// <summary> | ||
/// Main clock time as mm:ss.t | ||
/// </summary> | ||
public string MainClockTime; | ||
/// <summary> | ||
/// Time from the element currently being timed (main clock, time out, or time of day) as mm:ss or, if there is less than one minute on the clock, ss.t) | ||
/// </summary> | ||
public string MainClockTimeOutConditional; | ||
/// <summary> | ||
/// Time from the element currently being timed (main clock, time out, or time of day) as mm:ss.t | ||
/// </summary> | ||
public string MainClockTimeOutTime; | ||
public bool MainClockIsZero; | ||
public bool MainClockIsStopped; | ||
public bool MainClockTimeOutHornEnabled; | ||
public bool MainClockHornEnabled; | ||
public bool TimeOutHornEnabled; | ||
/// <summary> | ||
/// Time Out Time (mm:ss) | ||
/// </summary> | ||
public string TimeOutTime; | ||
/// <summary> | ||
/// Time of Day (hh:mm:ss) | ||
/// </summary> | ||
public string TimeOfDay; | ||
public string HomeTeamName; | ||
public string GuestTeamName; | ||
public string HomeTeamNameAbbr; | ||
public string GuestTeamNameAbbr; | ||
public string HomeTeamScore; | ||
public string GuestTeamScore; | ||
public string HomeTimeOutsLeftFull; | ||
public string HomeTimeOutsLeftPartial; | ||
public string HomeTimeOutsLeftTelevision; | ||
public string HomeTimeOutsLeftTotal; | ||
public string GuestTimeOutsLeftFull; | ||
public string GuestTimeOutsLeftPartial; | ||
public string GuestTimeOutsLeftTelevision; | ||
public string GuestTimeOutsLeftTotal; | ||
public bool HomeTimeOut; | ||
public bool GuestTimeOut; | ||
public string Quarter; | ||
/// <summary> | ||
/// Quarter Text ('1st ', 'OT', 'OT/2') | ||
/// </summary> | ||
public string QuarterText; | ||
/// <summary> | ||
/// Quarter Description ('End of 1st') | ||
/// </summary> | ||
public string QuarterDescription; | ||
|
||
|
||
|
||
public ScoreboardMessageFootball(byte[] message) | ||
{ | ||
int posSTX = 0; | ||
int posEOT = 0; | ||
|
||
for (int i = 0; i < message.Length; i++) | ||
{ | ||
switch (message[i]) | ||
{ | ||
case 22: // Synchronous Idle (SYN) | ||
break; | ||
case 1: // Start of Heading (SOH) | ||
break; | ||
case 2: // Start of Text (STX) | ||
posSTX = i; | ||
break; | ||
case 4: // End of Transmission (EOT) | ||
posEOT = i; | ||
break; | ||
case 23: // End of Transmission Block (ETB) | ||
break; | ||
default: | ||
break; | ||
} | ||
|
||
if ((posEOT != 0) && (posSTX != 0)) | ||
{ | ||
break; | ||
} | ||
} | ||
|
||
if (posEOT > posSTX) | ||
{ | ||
string text = System.Text.Encoding.Default.GetString(message, posSTX + 1, posEOT - posSTX - 1); | ||
|
||
if (text != lastMessageText) | ||
{ | ||
lastMessageText = text; | ||
|
||
// Uncomment to see raw output | ||
Console.WriteLine(text + " (" + text.Length.ToString() + ")"); | ||
|
||
|
||
|
||
if (text.Length == 31) | ||
{ | ||
Console.WriteLine("Main clock: " + text.Substring(0, 5)); | ||
Console.WriteLine("Main clock: " + text.Substring(5, 8)); | ||
Console.WriteLine("Main/TO/TOD: " + text.Substring(13, 5)); | ||
Console.WriteLine("Main/TO/TOD: " + text.Substring(18, 8)); | ||
Console.WriteLine("Main clock =0: " + text.Substring(26, 1)); | ||
Console.WriteLine("Main clock Stopped: " + (text.Substring(27, 1) == "s").ToString()); | ||
Console.WriteLine("Main clock/time out horn enabled: " + (text.Substring(28, 1) == "h").ToString()); | ||
Console.WriteLine("Main clock horn enabled: " + (text.Substring(29, 1) == "h").ToString()); | ||
Console.WriteLine("Time out horn enabled: " + (text.Substring(30, 1) == "h").ToString()); | ||
} | ||
else if (text.Length >= 294) | ||
{ | ||
Console.WriteLine("Main clock: " + text.Substring(0, 5)); | ||
Console.WriteLine("Main clock: " + text.Substring(5, 8)); | ||
Console.WriteLine("Main/TO/TOD: " + text.Substring(13, 5)); | ||
Console.WriteLine("Main/TO/TOD: " + text.Substring(18, 8)); | ||
Console.WriteLine("Main clock =0: " + text.Substring(26, 1)); | ||
Console.WriteLine("Main clock Stopped: " + (text.Substring(27, 1) == "s").ToString()); | ||
Console.WriteLine("Main clock/time out horn enabled: " + (text.Substring(28, 1) == "h").ToString()); | ||
Console.WriteLine("Main clock horn enabled: " + (text.Substring(29, 1) == "h").ToString()); | ||
Console.WriteLine("Time out horn enabled: " + (text.Substring(30, 1) == "h").ToString()); | ||
Console.WriteLine("Time out time: " + text.Substring(31, 8)); | ||
Console.WriteLine("Time of day: " + text.Substring(39, 8)); | ||
Console.WriteLine("Home team name: " + text.Substring(47, 20)); | ||
Console.WriteLine("Guest team name: " + text.Substring(67, 20)); | ||
Console.WriteLine("Home team abbr: " + text.Substring(87, 10)); | ||
Console.WriteLine("Guest team abbr: " + text.Substring(97, 10)); | ||
Console.WriteLine("Home team score: " + text.Substring(107, 4)); | ||
Console.WriteLine("Guest team score: " + text.Substring(111, 4)); | ||
Console.WriteLine("Home Time Outs Left - Full: " + text.Substring(115, 2)); | ||
Console.WriteLine("Home Time Outs Left - Partial: " + text.Substring(117, 2)); | ||
Console.WriteLine("Home Time Outs Left - Television: " + text.Substring(119, 2)); | ||
Console.WriteLine("Home Time Outs Left - Total: " + text.Substring(121, 2)); | ||
Console.WriteLine("Guest Time Outs Left - Full: " + text.Substring(123, 2)); | ||
Console.WriteLine("Guest Time Outs Left - Partial: " + text.Substring(125, 2)); | ||
Console.WriteLine("Guest Time Outs Left - Television: " + text.Substring(127, 2)); | ||
Console.WriteLine("Guest Time Outs Left - Total: " + text.Substring(129, 2)); | ||
Console.WriteLine("Home Time Out Indicator: " + text.Substring(131, 1)); | ||
Console.WriteLine("Home Time Out Text: " + text.Substring(132, 4)); | ||
Console.WriteLine("Guest Time Out Indicator: " + text.Substring(136, 1)); | ||
Console.WriteLine("Guest Time Out Text: " + text.Substring(137, 4)); | ||
Console.WriteLine("Quarter: " + text.Substring(141, 2)); | ||
Console.WriteLine("Quarter Text ('1st ', 'OT', 'OT/2'): " + text.Substring(143, 4)); | ||
Console.WriteLine("Quarter Description ('End of 1st'): " + text.Substring(147, 12)); | ||
Console.WriteLine("Internal Relay (' ' or 'z', 's', 'h'): " + text.Substring(159, 1)); | ||
Console.WriteLine("Ad Panel / Caption Power ('c'): " + text.Substring(160, 1)); | ||
Console.WriteLine("Ad Panel / Caption #1 (' ' or 'c'): " + text.Substring(161, 12)); | ||
Console.WriteLine("Ad Panel / Caption #2 (' ' or 'c'): " + text.Substring(162, 12)); | ||
Console.WriteLine("Ad Panel / Caption #3 (' ' or 'c'): " + text.Substring(163, 12)); | ||
Console.WriteLine("Ad Panel / Caption #4 (' ' or 'c'): " + text.Substring(164, 12)); | ||
Console.WriteLine("Reserved for Future Use: " + text.Substring(166, 35)); | ||
Console.WriteLine("Play Clock Time (mm:ss): " + text.Substring(200, 8)); | ||
Console.WriteLine("Play Clock Horn (' ' or 'h'): " + text.Substring(208, 1)); | ||
Console.WriteLine("Home Possession Indicator (' ' or '<'): " + text.Substring(209, 1)); | ||
Console.WriteLine("Home Possession Text (' ' or 'POSS'): " + text.Substring(210, 4)); | ||
Console.WriteLine("Guest Possession Indicator (' ' or '>'): " + text.Substring(214, 1)); | ||
Console.WriteLine("Guest Possession Text (' ' or 'POSS': " + text.Substring(215, 4)); | ||
Console.WriteLine("Ball On: " + text.Substring(219, 2)); | ||
Console.WriteLine("Down ('1st', '2nd', '3rd', '4th'): " + text.Substring(221, 3)); | ||
Console.WriteLine("To Go: " + text.Substring(224, 2)); | ||
Console.WriteLine("Home Score - Period 1: " + text.Substring(226, 2)); | ||
Console.WriteLine("Home Score - Period 2: " + text.Substring(228, 2)); | ||
Console.WriteLine("Home Score - Period 3: " + text.Substring(230, 2)); | ||
Console.WriteLine("Home Score - Period 4: " + text.Substring(232, 2)); | ||
Console.WriteLine("Home Score - Period 5: " + text.Substring(234, 2)); | ||
Console.WriteLine("Home Score - Period 6: " + text.Substring(236, 2)); | ||
Console.WriteLine("Home Score - Period 7: " + text.Substring(238, 2)); | ||
Console.WriteLine("Home Score - Period 8: " + text.Substring(240, 2)); | ||
Console.WriteLine("Home Score - Period 9: " + text.Substring(242, 2)); | ||
Console.WriteLine("Home Score - Current Period: " + text.Substring(244, 2)); | ||
Console.WriteLine("Guest Score - Period 1: " + text.Substring(246, 2)); | ||
Console.WriteLine("Guest Score - Period 2: " + text.Substring(248, 2)); | ||
Console.WriteLine("Guest Score - Period 3: " + text.Substring(250, 2)); | ||
Console.WriteLine("Guest Score - Period 4: " + text.Substring(252, 2)); | ||
Console.WriteLine("Guest Score - Period 5: " + text.Substring(254, 2)); | ||
Console.WriteLine("Guest Score - Period 6: " + text.Substring(256, 2)); | ||
Console.WriteLine("Guest Score - Period 7: " + text.Substring(258, 2)); | ||
Console.WriteLine("Guest Score - Period 8: " + text.Substring(260, 2)); | ||
Console.WriteLine("Guest Score - Period 9: " + text.Substring(262, 2)); | ||
Console.WriteLine("Guest Score - Current Period: " + text.Substring(264, 2)); | ||
Console.WriteLine("Home Rushing Yards: " + text.Substring(266, 4)); | ||
Console.WriteLine("Home Passing Yards: " + text.Substring(270, 4)); | ||
Console.WriteLine("Home Total Yards: " + text.Substring(274, 4)); | ||
Console.WriteLine("Guest Rushing Yards: " + text.Substring(278, 4)); | ||
Console.WriteLine("Guest Passing Yards: " + text.Substring(282, 4)); | ||
Console.WriteLine("Guest Total Yards: " + text.Substring(286, 4)); | ||
Console.WriteLine("Home First Downs: " + text.Substring(290, 2)); | ||
Console.WriteLine("Guest First Downs: " + text.Substring(292, 2)); | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?xml version='1.0' encoding='utf-8'?> | ||
<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)" GeneratedClassNamespace="csharp" GeneratedClassName="Settings"> | ||
<Profiles /> | ||
<Settings> | ||
<Setting Name="SerialPortName" Type="System.String" Scope="User"> | ||
<Value Profile="(Default)">COM3</Value> | ||
</Setting> | ||
</Settings> | ||
</SettingsFile> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<configuration> | ||
<configSections> | ||
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" > | ||
<section name="csharp.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" /> | ||
</sectionGroup> | ||
</configSections> | ||
<userSettings> | ||
<csharp.Settings> | ||
<setting name="SerialPortName" serializeAs="String"> | ||
<value>COM3</value> | ||
</setting> | ||
</csharp.Settings> | ||
</userSettings> | ||
</configuration> |
Binary file added
BIN
+3.54 KB
csharp/csharp/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache
Binary file not shown.
Binary file modified
BIN
+167 Bytes
(100%)
csharp/csharp/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache
Binary file not shown.