Game Lines

Technologies used in project: Java SE, Swing.

Each player in his turn draws a straight line connecting the unconnected vertices. Each player has a different color for the segment. Loses the one who first builds a triangle from its own segments.

A little explanation.

The first move, if it makes a computer, is not important: all direct are equivalent. After that, the computer does not have more than 29 possible lines, and he studies them all. Computer compares the weight each of them:

  1. the segment closes the losing triangle;
  2. a segment closes a triangle, two sides of which belong to my opponent;
  3. the segment is closed by a mixed triangle (one side of which is mine and the other one is my opponent);
  4. the segment connects two mixed vertices (from each of them comes my side, and also the side of my opponent);
  5. the segment connects the mixed vertex and the vertex from which only one side leaves;
  6. a segment connects two vertices, each of which belongs to only one segment, which I spent;
  7. a segment connects two peaks, each of which belongs to only one segment, one of which I spent, and the other – my opponent;
  8. a segment connects two vertices, which do not belong to the segments I have drawn;
  9. the segment passes through a “clean” (not yet used) vertex;
  10. a segment connects a clean vertex with a vertex that does not belong to my segments;
  11. a segment connects two pure vertices.

The computer makes the move with the greatest weight.