annotate harelet.c @ 17:e13e2d661cc8

Make it pretty
author VilyaemKenyaz
date Wed, 13 Sep 2023 04:38:20 -0400
parents 43dcb67b173d
children 7bf25e90a1de
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 printf("X");
5
3879c1178448 Automated Vimcurial commmit
VilyaemKenyaz
parents: 4
diff changeset
61 }
3879c1178448 Automated Vimcurial commmit
VilyaemKenyaz
parents: 4
diff changeset
62 else{
9
4eb02dffc00f Automated Vimcurial commmit
VilyaemKenyaz
parents: 8
diff changeset
63 printf("*");
5
3879c1178448 Automated Vimcurial commmit
VilyaemKenyaz
parents: 4
diff changeset
64 }
1
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
65
7
1bb981516d87 Automated Vimcurial commmit
VilyaemKenyaz
parents: 6
diff changeset
66
1
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
67 }
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
68
5
3879c1178448 Automated Vimcurial commmit
VilyaemKenyaz
parents: 4
diff changeset
69 //Render cursor
7
1bb981516d87 Automated Vimcurial commmit
VilyaemKenyaz
parents: 6
diff changeset
70
1bb981516d87 Automated Vimcurial commmit
VilyaemKenyaz
parents: 6
diff changeset
71 gotoxy(X,Y);
1bb981516d87 Automated Vimcurial commmit
VilyaemKenyaz
parents: 6
diff changeset
72
5
3879c1178448 Automated Vimcurial commmit
VilyaemKenyaz
parents: 4
diff changeset
73 puts("&");
3879c1178448 Automated Vimcurial commmit
VilyaemKenyaz
parents: 4
diff changeset
74
10
c73aed540bdd Automated Vimcurial commmit
VilyaemKenyaz
parents: 9
diff changeset
75 //Move cursor to top of document, so its not trailing the cadcursor
c73aed540bdd Automated Vimcurial commmit
VilyaemKenyaz
parents: 9
diff changeset
76 gotoxy(0,0);
c73aed540bdd Automated Vimcurial commmit
VilyaemKenyaz
parents: 9
diff changeset
77
5
3879c1178448 Automated Vimcurial commmit
VilyaemKenyaz
parents: 4
diff changeset
78
1
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
79
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
80 }
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
81
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
82 /*********************************************
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
83 * Description - This function compiles instructions for CNC machines.
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
84 * Author - William King
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
85 * Date - Sep 08 2023
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
86 * *******************************************/
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
87 void Compile(){
12
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
88
13
8fe2392f2fcc Automated Vimcurial commmit
VilyaemKenyaz
parents: 12
diff changeset
89 char filename[64];
12
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
90 char file[8192];
13
8fe2392f2fcc Automated Vimcurial commmit
VilyaemKenyaz
parents: 12
diff changeset
91 char buffer[64];
12
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
92 unsigned int choice;
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
93
11
1d4df12de9e3 Automated Vimcurial commmit
VilyaemKenyaz
parents: 10
diff changeset
94 clrscr();
6
ec82c868b8b0 Automated Vimcurial commmit
VilyaemKenyaz
parents: 5
diff changeset
95 puts("Select your format\n1. RAW GCODE");
1
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
96 scanf("%d",&choice);
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
97
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
98
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
99 puts("Enter the filename");
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
100 scanf("%s",filename);
13
8fe2392f2fcc Automated Vimcurial commmit
VilyaemKenyaz
parents: 12
diff changeset
101 printf("Compiling %s...\n",filename);
1
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
102 if(choice == 1){
2
1b0ebe86b44c Automated Vimcurial commmit
VilyaemKenyaz
parents: 1
diff changeset
103 //Set the miller
1b0ebe86b44c Automated Vimcurial commmit
VilyaemKenyaz
parents: 1
diff changeset
104 strcat(file,UNITS);
13
8fe2392f2fcc Automated Vimcurial commmit
VilyaemKenyaz
parents: 12
diff changeset
105 strcat(file,"G0 X0 Y0 Z0\n");
2
1b0ebe86b44c Automated Vimcurial commmit
VilyaemKenyaz
parents: 1
diff changeset
106 //Meat of instructions
1b0ebe86b44c Automated Vimcurial commmit
VilyaemKenyaz
parents: 1
diff changeset
107 for(int i = 0;i != numpoints;i++){
4
0ed615367b10 Automated Vimcurial commmit
VilyaemKenyaz
parents: 3
diff changeset
108 //Compose
15
ef57eb9ec02b Automated Vimcurial commmit
VilyaemKenyaz
parents: 14
diff changeset
109 char instruction[64];
13
8fe2392f2fcc Automated Vimcurial commmit
VilyaemKenyaz
parents: 12
diff changeset
110 strcat(instruction,"G0 X ");
14
8b5ff478ec66 Automated Vimcurial commmit
VilyaemKenyaz
parents: 13
diff changeset
111 //Convert X to string
8b5ff478ec66 Automated Vimcurial commmit
VilyaemKenyaz
parents: 13
diff changeset
112 sprintf(buffer,"%d",points[i].X);
8
c60e4315cb7e Automated Vimcurial commmit
VilyaemKenyaz
parents: 7
diff changeset
113 strcat(instruction,buffer);
13
8fe2392f2fcc Automated Vimcurial commmit
VilyaemKenyaz
parents: 12
diff changeset
114 strcat(instruction," Y ");
11
1d4df12de9e3 Automated Vimcurial commmit
VilyaemKenyaz
parents: 10
diff changeset
115 //Convert Y to string
14
8b5ff478ec66 Automated Vimcurial commmit
VilyaemKenyaz
parents: 13
diff changeset
116 sprintf(buffer,"%d",points[i].Y);
8
c60e4315cb7e Automated Vimcurial commmit
VilyaemKenyaz
parents: 7
diff changeset
117 strcat(instruction,buffer);
12
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
118 if(points[i].down = 1){
13
8fe2392f2fcc Automated Vimcurial commmit
VilyaemKenyaz
parents: 12
diff changeset
119 strcat(instruction," Z 5\n");
12
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
120 }
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
121 else{
13
8fe2392f2fcc Automated Vimcurial commmit
VilyaemKenyaz
parents: 12
diff changeset
122 strcat(instruction," Z 0\n");
12
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
123 }
16
43dcb67b173d Automated Vimcurial commmit
VilyaemKenyaz
parents: 15
diff changeset
124 //strcat(instruction,buffer);
4
0ed615367b10 Automated Vimcurial commmit
VilyaemKenyaz
parents: 3
diff changeset
125 //Write to string
0ed615367b10 Automated Vimcurial commmit
VilyaemKenyaz
parents: 3
diff changeset
126 strcat(file,instruction);
2
1b0ebe86b44c Automated Vimcurial commmit
VilyaemKenyaz
parents: 1
diff changeset
127 }
16
43dcb67b173d Automated Vimcurial commmit
VilyaemKenyaz
parents: 15
diff changeset
128
2
1b0ebe86b44c Automated Vimcurial commmit
VilyaemKenyaz
parents: 1
diff changeset
129 //Finish
13
8fe2392f2fcc Automated Vimcurial commmit
VilyaemKenyaz
parents: 12
diff changeset
130 strcat(file,"G0 X0 Y0 Z0\n");
2
1b0ebe86b44c Automated Vimcurial commmit
VilyaemKenyaz
parents: 1
diff changeset
131 WriteFile(filename,file);
1
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
132 }
12
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
133 else{
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
134
16
43dcb67b173d Automated Vimcurial commmit
VilyaemKenyaz
parents: 15
diff changeset
135 puts("Invalid compiliation format");
43dcb67b173d Automated Vimcurial commmit
VilyaemKenyaz
parents: 15
diff changeset
136 scanf("");
12
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
137
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
138
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
139 }
1
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
140
11
1d4df12de9e3 Automated Vimcurial commmit
VilyaemKenyaz
parents: 10
diff changeset
141 puts("Finished Compiling GCODE");
16
43dcb67b173d Automated Vimcurial commmit
VilyaemKenyaz
parents: 15
diff changeset
142 scanf("");
12
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
143
1
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
144 }
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 * Description - Main function
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
149 * Author - William King
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
150 * Date - Sep 08 2023
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
151 * *******************************************/
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
152 void main(int argc, char* argv[]){
9
4eb02dffc00f Automated Vimcurial commmit
VilyaemKenyaz
parents: 8
diff changeset
153 clrscr();
5
3879c1178448 Automated Vimcurial commmit
VilyaemKenyaz
parents: 4
diff changeset
154 while(1){
8
c60e4315cb7e Automated Vimcurial commmit
VilyaemKenyaz
parents: 7
diff changeset
155 Render();
9
4eb02dffc00f Automated Vimcurial commmit
VilyaemKenyaz
parents: 8
diff changeset
156 switch(getchar()){
12
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
157 case 'h':
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
158 X -= step;
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
159 break;
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
160 case 'j':
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
161 Y += step;
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
162 break;
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
163 case 'k':
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
164 Y -= step;
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
165 break;
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
166 case 'l':
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
167 X += step;
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
168 break;
2
1b0ebe86b44c Automated Vimcurial commmit
VilyaemKenyaz
parents: 1
diff changeset
169
12
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
170 case 's':
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
171 puts("New stepsize");
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
172 scanf("%d",&step);
9
4eb02dffc00f Automated Vimcurial commmit
VilyaemKenyaz
parents: 8
diff changeset
173
12
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
174 break;
9
4eb02dffc00f Automated Vimcurial commmit
VilyaemKenyaz
parents: 8
diff changeset
175
12
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
176 case 'a':
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
177 points[numpoints].X = X;
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
178 points[numpoints].Y = Y;
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
179 points[numpoints].down = down;
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
180 numpoints++;
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
181 break;
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
182 case 'd':
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
183 if(down == 1){
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
184 down = 0;
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
185 }
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
186 else{
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
187 down = 1;
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
188 }
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
189 break;
9
4eb02dffc00f Automated Vimcurial commmit
VilyaemKenyaz
parents: 8
diff changeset
190
12
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
191 case 'c':
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
192 Compile();
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
193 break;
14
8b5ff478ec66 Automated Vimcurial commmit
VilyaemKenyaz
parents: 13
diff changeset
194 case 'q':
8b5ff478ec66 Automated Vimcurial commmit
VilyaemKenyaz
parents: 13
diff changeset
195 clrscr();
8b5ff478ec66 Automated Vimcurial commmit
VilyaemKenyaz
parents: 13
diff changeset
196 exit(0);
8b5ff478ec66 Automated Vimcurial commmit
VilyaemKenyaz
parents: 13
diff changeset
197 break;
12
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
198 default:
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
199 putchar('\a');
35e6a7b53e3c Automated Vimcurial commmit
VilyaemKenyaz
parents: 11
diff changeset
200 break;
8
c60e4315cb7e Automated Vimcurial commmit
VilyaemKenyaz
parents: 7
diff changeset
201 }
5
3879c1178448 Automated Vimcurial commmit
VilyaemKenyaz
parents: 4
diff changeset
202 }
3879c1178448 Automated Vimcurial commmit
VilyaemKenyaz
parents: 4
diff changeset
203
1
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
204 exit(0);
47e1b1039d7b Automated Vimcurial commmit
VilyaemKenyaz
parents: 0
diff changeset
205 }