annotate harelet.c @ 13:8fe2392f2fcc

Automated Vimcurial commmit
author VilyaemKenyaz
date Tue, 12 Sep 2023 08:28:49 -0400
parents 35e6a7b53e3c
children 8b5ff478ec66
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
1 /*********************************************
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
2 * Description - Harelet is a CAD and compiler program for CNC milling machines
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
3 * Author - William King
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
4 * Date - Sep 08 2023
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
5 * *******************************************/
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
6
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
7 #include <stdio.h>
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
8 #include <stdlib.h>
4
0ed615367b10 Automated Vimcurial commmit
VilyaemKenyaz
parents: 3
diff changeset
9 #include <string.h>
8
c60e4315cb7e Automated Vimcurial commmit
VilyaemKenyaz
parents: 7
diff changeset
10
1
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
11 #include "basedfilelib.h"
7
1bb981516d87 Automated Vimcurial commmit
VilyaemKenyaz
parents: 6
diff changeset
12
1bb981516d87 Automated Vimcurial commmit
VilyaemKenyaz
parents: 6
diff changeset
13 #ifdef __linux__
1bb981516d87 Automated Vimcurial commmit
VilyaemKenyaz
parents: 6
diff changeset
14 #include "linuxconio.h"
1bb981516d87 Automated Vimcurial commmit
VilyaemKenyaz
parents: 6
diff changeset
15 #endif
1bb981516d87 Automated Vimcurial commmit
VilyaemKenyaz
parents: 6
diff changeset
16
1bb981516d87 Automated Vimcurial commmit
VilyaemKenyaz
parents: 6
diff changeset
17 #ifdef _WIN32
11
1d4df12de9e3 Automated Vimcurial commmit
VilyaemKenyaz
parents: 10
diff changeset
18 #include <windows.h>>
7
1bb981516d87 Automated Vimcurial commmit
VilyaemKenyaz
parents: 6
diff changeset
19 #include <conio.h>
1bb981516d87 Automated Vimcurial commmit
VilyaemKenyaz
parents: 6
diff changeset
20 #endif
1
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
21
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
22 #define DEEPNESS 5
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
23 #define MAXPOINT 4096
13
8fe2392f2fcc Automated Vimcurial commmit
VilyaemKenyaz
parents: 12
diff changeset
24 #define UNITS "G20\n"
2
1b0ebe86b44c Automated Vimcurial commmit
VilyaemKenyaz
parents: 1
diff changeset
25 #define SPEED 20
1
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
26
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
27 typedef struct{
6
ec82c868b8b0 Automated Vimcurial commmit
VilyaemKenyaz
parents: 5
diff changeset
28 unsigned int X;
ec82c868b8b0 Automated Vimcurial commmit
VilyaemKenyaz
parents: 5
diff changeset
29 unsigned int Y;
ec82c868b8b0 Automated Vimcurial commmit
VilyaemKenyaz
parents: 5
diff changeset
30 unsigned int down;
1
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
31 }point;
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
32
4
0ed615367b10 Automated Vimcurial commmit
VilyaemKenyaz
parents: 3
diff changeset
33 point points[MAXPOINT];
1
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
34
8
c60e4315cb7e Automated Vimcurial commmit
VilyaemKenyaz
parents: 7
diff changeset
35 unsigned int X = 100;
11
1d4df12de9e3 Automated Vimcurial commmit
VilyaemKenyaz
parents: 10
diff changeset
36 unsigned int Y = 25;
6
ec82c868b8b0 Automated Vimcurial commmit
VilyaemKenyaz
parents: 5
diff changeset
37 unsigned int step = 5;
5
3879c1178448 Automated Vimcurial commmit
VilyaemKenyaz
parents: 4
diff changeset
38 unsigned int down = 0;
3879c1178448 Automated Vimcurial commmit
VilyaemKenyaz
parents: 4
diff changeset
39 unsigned int numpoints = 0;
1
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
40 char action;
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
41
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
42 /*********************************************
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
43 * Description - Renders the screen
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
44 * Author - William King
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
45 * Date - Sep 08 2023
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
46 * *******************************************/
8
c60e4315cb7e Automated Vimcurial commmit
VilyaemKenyaz
parents: 7
diff changeset
47 void Render(){
7
1bb981516d87 Automated Vimcurial commmit
VilyaemKenyaz
parents: 6
diff changeset
48 clrscr();
10
c73aed540bdd Automated Vimcurial commmit
VilyaemKenyaz
parents: 9
diff changeset
49 gotoxy(0,3);
6
ec82c868b8b0 Automated Vimcurial commmit
VilyaemKenyaz
parents: 5
diff changeset
50 puts("HARELET A CAD PROGRAM BY VILYAEM KENYAZ, PEEP SOFTWARE 2023");
ec82c868b8b0 Automated Vimcurial commmit
VilyaemKenyaz
parents: 5
diff changeset
51 printf("Number of Points: %d X: %d Y: %d STEPSIZE: %d DWN?: %d\n",numpoints,X,Y,step,down);
ec82c868b8b0 Automated Vimcurial commmit
VilyaemKenyaz
parents: 5
diff changeset
52
5
3879c1178448 Automated Vimcurial commmit
VilyaemKenyaz
parents: 4
diff changeset
53 //Render points
1
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
54 for(int i = 0;i != MAXPOINT;i++){
8
c60e4315cb7e Automated Vimcurial commmit
VilyaemKenyaz
parents: 7
diff changeset
55 gotoxy(0,50);
7
1bb981516d87 Automated Vimcurial commmit
VilyaemKenyaz
parents: 6
diff changeset
56
1bb981516d87 Automated Vimcurial commmit
VilyaemKenyaz
parents: 6
diff changeset
57 gotoxy(points[i].X,points[i].Y);
1bb981516d87 Automated Vimcurial commmit
VilyaemKenyaz
parents: 6
diff changeset
58
5
3879c1178448 Automated Vimcurial commmit
VilyaemKenyaz
parents: 4
diff changeset
59 if(points[i].down == 0){
9
4eb02dffc00f Automated Vimcurial commmit
VilyaemKenyaz
parents: 8
diff changeset
60 //puts("X");
4eb02dffc00f Automated Vimcurial commmit
VilyaemKenyaz
parents: 8
diff changeset
61 printf("X");
5
3879c1178448 Automated Vimcurial commmit
VilyaemKenyaz
parents: 4
diff changeset
62 }
3879c1178448 Automated Vimcurial commmit
VilyaemKenyaz
parents: 4
diff changeset
63 else{
9
4eb02dffc00f Automated Vimcurial commmit
VilyaemKenyaz
parents: 8
diff changeset
64
4eb02dffc00f Automated Vimcurial commmit
VilyaemKenyaz
parents: 8
diff changeset
65 //puts("*");
4eb02dffc00f Automated Vimcurial commmit
VilyaemKenyaz
parents: 8
diff changeset
66 printf("*");
5
3879c1178448 Automated Vimcurial commmit
VilyaemKenyaz
parents: 4
diff changeset
67 }
1
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
68
7
1bb981516d87 Automated Vimcurial commmit
VilyaemKenyaz
parents: 6
diff changeset
69
1
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
70 }
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
71
5
3879c1178448 Automated Vimcurial commmit
VilyaemKenyaz
parents: 4
diff changeset
72 //Render cursor
7
1bb981516d87 Automated Vimcurial commmit
VilyaemKenyaz
parents: 6
diff changeset
73
1bb981516d87 Automated Vimcurial commmit
VilyaemKenyaz
parents: 6
diff changeset
74 gotoxy(X,Y);
1bb981516d87 Automated Vimcurial commmit
VilyaemKenyaz
parents: 6
diff changeset
75
5
3879c1178448 Automated Vimcurial commmit
VilyaemKenyaz
parents: 4
diff changeset
76 puts("&");
3879c1178448 Automated Vimcurial commmit
VilyaemKenyaz
parents: 4
diff changeset
77
10
c73aed540bdd Automated Vimcurial commmit
VilyaemKenyaz
parents: 9
diff changeset
78 //Move cursor to top of document, so its not trailing the cadcursor
c73aed540bdd Automated Vimcurial commmit
VilyaemKenyaz
parents: 9
diff changeset
79 gotoxy(0,0);
c73aed540bdd Automated Vimcurial commmit
VilyaemKenyaz
parents: 9
diff changeset
80
5
3879c1178448 Automated Vimcurial commmit
VilyaemKenyaz
parents: 4
diff changeset
81
1
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
82
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
83 }
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
84
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
85 /*********************************************
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
86 * Description - This function compiles instructions for CNC machines.
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
87 * Author - William King
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
88 * Date - Sep 08 2023
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
89 * *******************************************/
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
90 void Compile(){
12
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
91
13
8fe2392f2fcc Automated Vimcurial commmit
VilyaemKenyaz
parents: 12
diff changeset
92 char filename[64];
12
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
93 char file[8192];
13
8fe2392f2fcc Automated Vimcurial commmit
VilyaemKenyaz
parents: 12
diff changeset
94 char buffer[64];
12
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
95 unsigned int choice;
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
96
11
1d4df12de9e3 Automated Vimcurial commmit
VilyaemKenyaz
parents: 10
diff changeset
97 clrscr();
6
ec82c868b8b0 Automated Vimcurial commmit
VilyaemKenyaz
parents: 5
diff changeset
98 puts("Select your format\n1. RAW GCODE");
1
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
99 scanf("%d",&choice);
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
100
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
101
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
102 puts("Enter the filename");
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
103 scanf("%s",filename);
13
8fe2392f2fcc Automated Vimcurial commmit
VilyaemKenyaz
parents: 12
diff changeset
104 printf("Compiling %s...\n",filename);
1
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
105 if(choice == 1){
2
1b0ebe86b44c Automated Vimcurial commmit
VilyaemKenyaz
parents: 1
diff changeset
106 //Set the miller
1b0ebe86b44c Automated Vimcurial commmit
VilyaemKenyaz
parents: 1
diff changeset
107 strcat(file,UNITS);
13
8fe2392f2fcc Automated Vimcurial commmit
VilyaemKenyaz
parents: 12
diff changeset
108 strcat(file,"G0 X0 Y0 Z0\n");
2
1b0ebe86b44c Automated Vimcurial commmit
VilyaemKenyaz
parents: 1
diff changeset
109 //Meat of instructions
1b0ebe86b44c Automated Vimcurial commmit
VilyaemKenyaz
parents: 1
diff changeset
110 for(int i = 0;i != numpoints;i++){
4
0ed615367b10 Automated Vimcurial commmit
VilyaemKenyaz
parents: 3
diff changeset
111 //Compose
12
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
112 char instruction[32];
13
8fe2392f2fcc Automated Vimcurial commmit
VilyaemKenyaz
parents: 12
diff changeset
113 strcat(instruction,"G0 X ");
8
c60e4315cb7e Automated Vimcurial commmit
VilyaemKenyaz
parents: 7
diff changeset
114 strcat(instruction,buffer);
11
1d4df12de9e3 Automated Vimcurial commmit
VilyaemKenyaz
parents: 10
diff changeset
115 //Convert X to string
1d4df12de9e3 Automated Vimcurial commmit
VilyaemKenyaz
parents: 10
diff changeset
116 sprintf(buffer,"%d",&points[i].X);
13
8fe2392f2fcc Automated Vimcurial commmit
VilyaemKenyaz
parents: 12
diff changeset
117 strcat(instruction," Y ");
11
1d4df12de9e3 Automated Vimcurial commmit
VilyaemKenyaz
parents: 10
diff changeset
118 //Convert Y to string
1d4df12de9e3 Automated Vimcurial commmit
VilyaemKenyaz
parents: 10
diff changeset
119 sprintf(buffer,"%d",&points[i].Y);
8
c60e4315cb7e Automated Vimcurial commmit
VilyaemKenyaz
parents: 7
diff changeset
120 strcat(instruction,buffer);
12
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
121 if(points[i].down = 1){
13
8fe2392f2fcc Automated Vimcurial commmit
VilyaemKenyaz
parents: 12
diff changeset
122 strcat(instruction," Z 5\n");
12
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
123 }
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
124 else{
13
8fe2392f2fcc Automated Vimcurial commmit
VilyaemKenyaz
parents: 12
diff changeset
125 strcat(instruction," Z 0\n");
12
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
126 }
8
c60e4315cb7e Automated Vimcurial commmit
VilyaemKenyaz
parents: 7
diff changeset
127 strcat(instruction,buffer);
4
0ed615367b10 Automated Vimcurial commmit
VilyaemKenyaz
parents: 3
diff changeset
128 //Write to string
0ed615367b10 Automated Vimcurial commmit
VilyaemKenyaz
parents: 3
diff changeset
129 strcat(file,instruction);
2
1b0ebe86b44c Automated Vimcurial commmit
VilyaemKenyaz
parents: 1
diff changeset
130 }
1b0ebe86b44c Automated Vimcurial commmit
VilyaemKenyaz
parents: 1
diff changeset
131 //Finish
13
8fe2392f2fcc Automated Vimcurial commmit
VilyaemKenyaz
parents: 12
diff changeset
132 strcat(file,"G0 X0 Y0 Z0\n");
2
1b0ebe86b44c Automated Vimcurial commmit
VilyaemKenyaz
parents: 1
diff changeset
133 WriteFile(filename,file);
1
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
134 }
12
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
135 else{
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
136
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
137 puts("Invalid compile format");
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
138
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
139
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
140 }
1
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
141
11
1d4df12de9e3 Automated Vimcurial commmit
VilyaemKenyaz
parents: 10
diff changeset
142 puts("Finished Compiling GCODE");
1
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
143
12
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
144
1
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
145 }
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
146
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
147
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
148 /*********************************************
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
149 * Description - Main function
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
150 * Author - William King
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
151 * Date - Sep 08 2023
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
152 * *******************************************/
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
153 void main(int argc, char* argv[]){
9
4eb02dffc00f Automated Vimcurial commmit
VilyaemKenyaz
parents: 8
diff changeset
154 clrscr();
5
3879c1178448 Automated Vimcurial commmit
VilyaemKenyaz
parents: 4
diff changeset
155 while(1){
8
c60e4315cb7e Automated Vimcurial commmit
VilyaemKenyaz
parents: 7
diff changeset
156 Render();
9
4eb02dffc00f Automated Vimcurial commmit
VilyaemKenyaz
parents: 8
diff changeset
157 switch(getchar()){
12
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
158 case 'h':
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
159 X -= step;
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
160 break;
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
161 case 'j':
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
162 Y += step;
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
163 break;
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
164 case 'k':
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
165 Y -= step;
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
166 break;
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
167 case 'l':
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
168 X += step;
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
169 break;
2
1b0ebe86b44c Automated Vimcurial commmit
VilyaemKenyaz
parents: 1
diff changeset
170
12
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
171 case 's':
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
172 puts("New stepsize");
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
173 scanf("%d",&step);
9
4eb02dffc00f Automated Vimcurial commmit
VilyaemKenyaz
parents: 8
diff changeset
174
12
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
175 break;
9
4eb02dffc00f Automated Vimcurial commmit
VilyaemKenyaz
parents: 8
diff changeset
176
12
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
177 case 'a':
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
178 points[numpoints].X = X;
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
179 points[numpoints].Y = Y;
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
180 points[numpoints].down = down;
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
181 numpoints++;
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
182 break;
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
183 case 'd':
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
184 if(down == 1){
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
185 down = 0;
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
186 }
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
187 else{
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
188 down = 1;
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
189 }
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
190 break;
9
4eb02dffc00f Automated Vimcurial commmit
VilyaemKenyaz
parents: 8
diff changeset
191
12
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
192 case 'c':
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
193 Compile();
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
194 break;
9
4eb02dffc00f Automated Vimcurial commmit
VilyaemKenyaz
parents: 8
diff changeset
195
12
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
196 default:
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
197 putchar('\a');
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
198 break;
8
c60e4315cb7e Automated Vimcurial commmit
VilyaemKenyaz
parents: 7
diff changeset
199 }
5
3879c1178448 Automated Vimcurial commmit
VilyaemKenyaz
parents: 4
diff changeset
200 }
3879c1178448 Automated Vimcurial commmit
VilyaemKenyaz
parents: 4
diff changeset
201
1
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
202 exit(0);
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
203 }