I want to to make a shared drawing board in C#. This means that two people connected via a TCP connection can draw on this board. The idea (for now) is that people can click on the screen and draw. What do you think is the best method for this?
It's easy enough to draw a dot when the user clicks on a certain spot, but it gets a little more complicated when the user drags the mouse, where you need to draw a line between the last point and the current. Also that doesn't work so well, so I draw a dot where the line starts to improve things a bit, but it's not that good.

Lastly, I need to also send this over TCP, so I need to distinguish between the two. I hoped that I could just send points and have it draw it on the other side, but it seems it wouldn't work. Any ideas except also sending the type?

drawing

EDIT:
ok, I'm going with a IDrawingArgument interface that has Dispatch(myForm), and basically does double dispatch, so it solves the TCP problem (going to serialize/deserialize it).
Lines are still a bit bulky.

link|improve this question

67% accept rate
feedback

2 Answers

up vote 3 down vote accepted

One little tip... on your mousemove event. keep a flag that wont fire the event again until the last event that set the flag turns it off. i.e.:

bool isDrawing = false;
public void myCanvas_MouseMove(object sender, EventArgs e)
{
     if(!isDrawing)
     {
         isDrawing = true;
         // Do drawing here
         isDrawing = false;
     }
}

This helped me a lot when doing drawing in a mousemove event.

link|improve this answer
I think that just might do it. It's basically a lock, I reckon? – Nefzen Jun 10 '09 at 15:24
Tried it, it doesn't make much of a difference. – Nefzen Jun 10 '09 at 15:33
The next time I added was a delay... Not letting the draw event fire unless its been at least 5 milliseconds since the last one fired.. or 3ms.. depending on your draw method. This halps smooth out the drawing. – Neil N Jun 10 '09 at 16:32
^the next "thing" I adeed was a delay...^ – Neil N Jun 10 '09 at 16:33
feedback

Dots: (x,y),(x2,y2),(x3,y3)

Lines: (x,y,x2,y2),(x3,y3,x4,y4)

Thus, the format is a list of tuples. Tuples of size 4 are lines, of size 2 are points. Note that if your system gets more complicated, you'll really regret not just doing something like:

Dots: D(x,y),D(x2,y2),D(x3,y3)

Lines: L(x,y,x2,y2),L(x3,y3,x4,y4)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.