-
Notifications
You must be signed in to change notification settings - Fork 21
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
Showing
1 changed file
with
83 additions
and
0 deletions.
There are no files selected for viewing
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,83 @@ | ||
using System; | ||
using System.Net.Sockets; | ||
using System.IO; | ||
using System.Text; | ||
|
||
namespace Com.CodeGame.CodeRacing2015.DevKit.CSharpCgdk { | ||
|
||
// цвет нужно задавать hex-числом, например 0xABCDEF, AB - red, CD - green, EF - blue, каждый цвет - число из двух hex-цифр в диапазоне от 00 до FF | ||
|
||
public struct Debug { | ||
|
||
private static TcpClient client; | ||
private static StreamWriter writer; | ||
|
||
public static void connect(string host, int port) { | ||
client = new TcpClient(host, port); | ||
} | ||
|
||
public static void disconnect() { | ||
client.Close(); | ||
} | ||
|
||
private static void sendCommand(string command) { | ||
if (client != null) { | ||
if (writer == null) { | ||
writer = new StreamWriter(client.GetStream (), Encoding.ASCII); | ||
} | ||
writer.WriteLine(command); | ||
} | ||
System.Console.WriteLine(command); | ||
} | ||
|
||
public static void beginPre() { | ||
sendCommand("begin pre"); | ||
} | ||
|
||
public static void beginPost() { | ||
sendCommand("begin post"); | ||
} | ||
|
||
public static void endPre() { | ||
sendCommand("end pre"); | ||
} | ||
|
||
public static void endPost() { | ||
sendCommand("end post"); | ||
} | ||
|
||
private static string encodeColor(int color) { | ||
int red = (color & 0xFF0000) >> 16; | ||
int green = (color & 0x00FF00) >> 8; | ||
int blue = color & 0x0000FF; | ||
|
||
return String.Format("{0} {1} {2}", (double)red / 256.0, (double)green / 256.0, (double)blue / 256.0); | ||
} | ||
|
||
public static void circle(double x, double y, double radius, int color) { | ||
sendCommand(String.Format("circle {0} {1} {2} {3}", x, y, radius, encodeColor(color))); | ||
} | ||
|
||
public static void circle(double x, double y, double radius, int color) { | ||
sendCommand(String.Format("fill_circle {0} {1} {2} {3}", x, y, radius, encodeColor(color))); | ||
} | ||
|
||
public static void rect(double x1, double y1, double x2, double y2, int color) { | ||
sendCommand(String.Format("rect {0} {1} {2} {3} {4}", x1, y1, x2, y2, encodeColor(color))); | ||
} | ||
|
||
public static void fillRect(double x1, double y1, double x2, double y2, int color) { | ||
sendCommand(String.Format("fill_rect {0} {1} {2} {3} {4}", x1, y1, x2, y2, encodeColor(color))); | ||
} | ||
|
||
public static void line(double x1, double y1, double x2, double y2, int color) { | ||
sendCommand(String.Format("line {0} {1} {2} {3} {4}", x1, y1, x2, y2, encodeColor(color))); | ||
} | ||
|
||
public static void print(double x, double y, string msg, int color = 0) { | ||
sendCommand(String.Format("text {0} {1} {2} {3}", x, y, msg, encodeColor(color))); | ||
} | ||
} | ||
|
||
} | ||
|