-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
1900 lines (1733 loc) · 48.4 KB
/
main.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#if defined(UNICODE) && !defined(_UNICODE)
#define _UNICODE
#elif defined(_UNICODE) && !defined(UNICODE)
#define UNICODE
#endif
#include <tchar.h>
#include <windows.h>
#include <iostream>
#include <stdio.h>
#include <cmath>
#include <iostream>
#include <fstream>
#include <vector>
#include <stack>
#include <sstream>
#include <list>
#define MAXENTRIES 600
using namespace std;
/* Declare Windows procedure */
LRESULT CALLBACK WindowProcedure (HWND, UINT, WPARAM, LPARAM);
void AddMenus(HWND);
HMENU hmenu;
HMENU bmenu;
HWND g_hWnd;
/* Make the class name into a global variable */
TCHAR szClassName[ ] = _T("CodeBlocksWindowsApp");
int WINAPI WinMain (HINSTANCE hThisInstance,
HINSTANCE hPrevInstance,
LPSTR lpszArgument,
int nCmdShow)
{
HWND hwnd;
/* This is the handle for our window */
MSG messages; /* Here messages to the application are saved */
WNDCLASSEX wincl; /* Data structure for the windowclass */
/* The Window structure */
wincl.hInstance = hThisInstance;
wincl.lpszClassName = szClassName;
wincl.lpfnWndProc = WindowProcedure; /* This function is called by windows */
wincl.style = CS_DBLCLKS; /* Catch double-clicks */
wincl.cbSize = sizeof (WNDCLASSEX);
/* Use default icon and mouse-pointer */
wincl.hIcon = LoadIcon (NULL, IDI_APPLICATION);
wincl.hIconSm = LoadIcon (NULL, IDI_APPLICATION);
wincl.hCursor = LoadCursor (NULL, IDC_HAND);/**mouse look*/
wincl.lpszMenuName = NULL; /* No menu */
wincl.cbClsExtra = 0; /* No extra bytes after the window class */
wincl.cbWndExtra = 0;
/* structure or the window instance */
/* Use Windows's default colour as the background of the window */
wincl.hbrBackground = (HBRUSH) COLOR_WINDOWFRAME ;/**window color*/
/* Register the window class, and if it fails quit the program */
if (!RegisterClassEx (&wincl))
return 0;
/* The class is registered, let's create the program*/
hwnd = CreateWindowEx (
0, /* Extended possibilites for variation */
szClassName, /* Classname */
_T("Code::Blocks Template Windows App"), /* Title Text */
WS_OVERLAPPEDWINDOW, /* default window */
CW_USEDEFAULT, /* Windows decides the position */
CW_USEDEFAULT, /* where the window ends up on the screen */
900, /* The programs width */
600, /* and height in pixels */
HWND_DESKTOP, /* The window is a child-window to desktop */
NULL, /* No menu */
hThisInstance, /* Program Instance handler */
NULL/* No Window Creation data */
);
/* Make the window visible on the screen */
//Use it in clean screen
ShowWindow (hwnd, nCmdShow);
/* Run the message loop. It will run until GetMessage() returns 0 */
while (GetMessage (&messages, NULL, 0, 0))
{
/* Translate virtual-key messages into character messages */
TranslateMessage(&messages);
/* Send message to WindowProcedure */
DispatchMessage(&messages);
}
/* The program return-value is 0 - The value that PostQuitMessage() gave */
return messages.wParam;
}
/**read file*/
void read(vector<int> &arr,string points)
{
stringstream ss(points); /*Read the points from the file*/
for (int i; ss >> i;) /*read the points and store it in vector and ignore the ',' char*/
{
arr.push_back(i);
if (ss.peek() == ',')
ss.ignore();
}
}
void prev(HDC hdc,vector<int> numbers,COLORREF c)
{
for(int i = 0; i<numbers.size(); i+=2) /*every two points we set the pixel that has been stored in the sort vector*/
{
SetPixel(hdc,numbers[i],numbers[i+1],c); /*i=0,i=1 setpixel(0,1) // i=2,i=3 setpixel(2,3) and so on */
}
}
void swap(int& x,int& y){
int tmp=x;
x=y;
y=tmp;
}
void swap(int& x1, int& y1, int& x2, int& y2)
{
int tmp = x1;
x1 = x2;
x2 = tmp;
tmp = y1;
y1 = y2;
y2 = tmp;
}
boolean insideCircle(int x, int y, int xc, int yc, int r) {
int d = sqrt(pow((x-xc),2)+pow((y-yc),2));
return (d<=r);
}
/**to save point */
vector<int> savedPoints;
void save(int x,int y)
{
savedPoints.push_back(x);
savedPoints.push_back(y);
}
/**save files*/
void SaveInFile()
{
ofstream file;
file.open("save.txt"); /*open the file and start to storing in it */
for(int i = 0; i<savedPoints.size(); i+=2)
file << savedPoints[i] << "," << savedPoints[i+1] << ",";
file.close();
}
/**to draw 8 points*/
void Draw8Points(HDC hdc,int xc,int yc,int x,int y,COLORREF c)
{
SetPixel(hdc,xc+x,yc+y,c);
SetPixel(hdc,xc-x,yc+y,c);
SetPixel(hdc,xc-x,yc-y,c);
SetPixel(hdc,xc+x,yc-y,c);
SetPixel(hdc,xc+y,yc+x,c);
SetPixel(hdc,xc-y,yc+x,c);
SetPixel(hdc,xc-y,yc-x,c);
SetPixel(hdc,xc+y,yc-x,c);
save(xc+x,yc+y);
save(xc-x,yc+y);
save(xc-x,yc-y);
save(xc+x,yc-y);
save(xc+y,yc+x);
save(xc-y,yc+x);
save(xc-y,yc-x);
save(xc+y,yc-x);
}
int Round(double x)
{
return (int)(0.5+x);
}
struct Vector{
double v[2];
Vector(double x = 0, double y = 0)
{ v[0] = x; v[1] = y; }
double& operator[](int i){ return v[i];
}
};
struct Vector2
{
double x,y;
Vector2(double a=0,double b=0)
{
x=a; y=b;
}
};
/**lines codes*/
void parametric(HDC hdc,int x1,int y1,int x2,int y2,COLORREF C)
{
int dx=x2-x1;
int dy=y2-y1;
double dt=1.0 / max(dx,dy);
for(double t=0; t<1; t+=dt)
{
double x=x1+t*dx;
double y=y1+t*dy;
SetPixel(hdc,Round(x),Round(y),C);
save(Round(x),Round(y));
}
}
void DDALine(HDC hdc,int xs,int ys,int xe,int ye,COLORREF color)
{
int dx=xe-xs;
int dy=ye-ys;
SetPixel(hdc,xs,ys,color);
save(xs,ys);
if(abs(dx)>=abs(dy))
{
int x=xs,xinc= dx>0?1:-1;
double y=ys,yinc=(double)dy/dx*xinc;
while(x!=xe)
{
x+=xinc;
y+=yinc;
SetPixel(hdc,x,round(y),color);
save(x,y);
}
}
else
{
int y=ys,yinc= dy>0?1:-1;
double x=xs,xinc=(double)dx/dy*yinc;
while(y!=ye)
{
x+=xinc;
y+=yinc;
SetPixel(hdc,round(x),y,color);
save(x,y);
}
}
}
void midpoint(HDC hdc,int x1,int y1,int x2,int y2,COLORREF C)
{
int x=x1;
int y=y1;
SetPixel(hdc,x,y,C);
int dx=x2-x1;
int dy=y2-y1;
if(abs(dx)>=abs(dy))
{
int d=dx-2*dy;
int d1=2*dx-2*dy;
int d2=-2*dy;
while(x<x2)
{
if(d>0)
{
d+=d2;
x++;
}
else
{
d+=d1;
x++;
y++;
}
SetPixel(hdc,x,y,C);
save(x,y);
}
}
else
{
int d=2*dx-dy;
int d1=2*dx-2*dy;
int d2=2*dx;
while(y<y2)
{
int x=x1;
int y=y1;
if(d>0)
{
d+=d1;
y++;
}
else
{
d+=d2;
y++;
x++;
}
SetPixel(hdc,x,y,C);
save(x,y);
}
}
}
/**circle codes */
void DirectPolar(HDC hdc,int xc,int yc,int r,COLORREF C){
double dtheta=1.0 / r;
for(double theta=0; theta<6.28; theta+=dtheta)
{
double x=Round(xc+r*cos(theta));
double y=Round(yc+r*sin(theta));
SetPixel(hdc,x,y,C);
save(x,y);
}
}
void Directcircle(HDC hdc, int xc, int yc, int R, COLORREF c){
int x=0,y=R;
int R2=R*R;
Draw8Points(hdc,xc,yc,x,y,c);
while(x<y)
{
x++;
y=round(sqrt((double)(R2-x*x)));
Draw8Points(hdc,xc,yc,x,y,c);
}
}
void itreativepolar(HDC hdc,int xc,int yc,int r,COLORREF C){
double dtheta=1.0 / r;
double c=cos(dtheta);
double s=sin(dtheta);
double x=r;
double y=0;
Draw8Points(hdc,xc,yc,Round(x),Round(y),C);//first 8 point
while(x>y)
{
x=x*c-y*s;
y=x*s+y*c;
Draw8Points(hdc,xc,yc,Round(x),Round(y),C);
}
}
void midpointCircle(HDC hdc,int xc,int yc,int r,COLORREF C){
double y=r,x=0,d=1-r;
Draw8Points(hdc,xc,yc,Round(x),Round(y),C);
while(x<=y)
{
if(d<0)
{
d+=2*x+3;
x++;
}
else
{
d+=2*(x-y)+5;
x++;
y--;
}
Draw8Points(hdc,xc,yc,Round(x),Round(y),C);
}
}
void modifiedMidpoint(HDC hdc,int xc,int yc,int r,COLORREF C){
int x=0,y=r;
int d=1-r;
int d1=3;
int d2=5-2*r;
while(x<=y)
{
if(d<0)
{
d+=d1;
d2+=2;
d1+=2;
x++;
}
else
{
d+=d2;
d2+=4;
y--;
d1+=2;
x++;
}
Draw8Points(hdc,xc,yc,Round(x),Round(y),C);
}
}
/**flood fill*/
void RFloodFill(HDC hdc,int x,int y,COLORREF Cb,COLORREF Cf,int n)
{
COLORREF C=GetPixel(hdc,x,y);
if(C==Cb || C==Cf)return;
SetPixel(hdc,x,y,Cf);
RFloodFill(hdc,x+1,y,Cb,Cf,6);
RFloodFill(hdc,x-1,y,Cb,Cf,6);
RFloodFill(hdc,x,y+1,Cb,Cf,6);
RFloodFill(hdc,x,y-1,Cb,Cf,6);
save(x,y);
}
struct Vertex
{
double x,y;
Vertex(int x1=0,int y1=0)
{
x=x1;
y=y1;
}
};
void NRFloodFill(HDC hdc,int x,int y,COLORREF Cb,COLORREF Cf,int n)
{
stack<Vertex> S;
S.push(Vertex(x,y));
while(!S.empty())
{
Vertex v=S.top();
S.pop();
COLORREF c=GetPixel(hdc,v.x,v.y);
if(c==Cb || c==Cf)continue;
SetPixel(hdc,v.x,v.y,Cf);
switch(n){
case 7:
S.push(Vertex(v.x+1,v.y));
S.push(Vertex(v.x-1,v.y));
S.push(Vertex(v.x,v.y+1));
S.push(Vertex(v.x,v.y-1));
}
save(x,y);
}
}
/**filling*/
struct Point
{
int x,y;
Point(int x,int y):x(x),y(y)
{
}
};
void FillingL (HDC hdc,int x,int y, COLORREF BC,COLORREF FC,int n)
{
stack <Point> st;
st.push(Point(x,y));
while(!st.empty())
{
Point p=st.top();
st.pop();
COLORREF c= GetPixel(hdc, p.x,p.y );
if (c==BC ||c==FC)
{
continue;
}
SetPixel(hdc,p.x,p.y,FC);
save(p.x,p.y);
switch(n){
case 1:
st.push(Point(p.x+1,p.y));
st.push(Point(p.x,p.y-1));
break;
case 2:
st.push(Point(p.x-1,p.y));
st.push(Point(p.x,p.y-1));
break;
case 3:
st.push(Point(p.x-1,p.y));
st.push(Point(p.x,p.y+1));
break;
case 4:
st.push(Point(p.x+1,p.y));
st.push(Point(p.x,p.y+1));
break;
case 5:
st.push(Point(p.x+1,p.y));
st.push(Point(p.x,p.y-1));
st.push(Point(p.x,p.y+1));
st.push(Point(p.x-1,p.y));
break;
}
save(x,y);
}
}
/**Filling by circle with other circle */
void Draw8Points2(HDC hdc, int xc, int yc, int x, int y, COLORREF c, int Q)
{
if (Q == 1)
{
SetPixel(hdc, xc + x, yc - y, c);
SetPixel(hdc, xc + y, yc - x, c);
save(xc+x,yc-y);
save(xc+y,yc-x);
}
else if (Q == 2)
{
SetPixel(hdc, xc - y, yc - x, c),
SetPixel(hdc, xc - x, yc - y, c);
save(xc-y,yc-x);
save(xc-x,yc-y);
}
else if (Q == 3)
{
SetPixel(hdc, xc - x, yc + y, c);
SetPixel(hdc, xc - y, yc + x, c);
save(xc-x,yc+y);
save(xc-y,yc+x);
}
else if (Q == 4)
{
SetPixel(hdc, xc + x, yc + y, c);
SetPixel(hdc, xc + y, yc + x, c);
save(xc+x,yc+y);
save(xc+y,yc+x);
}
else if (Q=5){
SetPixel(hdc, xc + x, yc - y, c);
SetPixel(hdc, xc + y, yc - x, c);
SetPixel(hdc, xc - y, yc - x, c);
SetPixel(hdc, xc - x, yc - y, c);
SetPixel(hdc, xc - x, yc + y, c);
SetPixel(hdc, xc - y, yc + x, c);
SetPixel(hdc, xc + x, yc + y, c);
SetPixel(hdc, xc + y, yc + x, c);
save(xc+x,yc+y);
save(xc+y,yc+x);
save(xc-x,yc+y);
save(xc-y,yc+x);
save(xc-y,yc-x);
save(xc-x,yc-y);
save(xc+x,yc-y);
save(xc+y,yc-x);
}
}
void CircleFillingcircle(HDC hdc, int xc, int yc, int R, COLORREF c, int Q)
{
int x = 0, y = R;
Draw8Points2(hdc, xc, yc, x, y, c,Q);
while (x < y)
{
int d = (x + 1) * (x + 1) + (y - 0.5) * (y - 0.5) - R * R;
if (d < 0) x++;
else
{
x++; y--;
}
Draw8Points2(hdc, xc, yc, x, y, c,Q);
}
}
/**Ellipse*/
void Draw4Points(HDC hdc, int xc,int yc,int x,int y,COLORREF c){
SetPixel(hdc,xc+x,yc+y,c);
SetPixel(hdc,xc+x,yc-y,c);
SetPixel(hdc,xc-x,yc+y,c);
SetPixel(hdc,xc-x,yc-y,c);
save(xc+x,yc+y);
save(xc-x,yc+y);
save(xc-x,yc-y);
save(xc+x,yc-y);
}
double dy_dx(int x,double A,double B)
{
int y=B*sqrt(1-(pow(x,2)/pow(A,2)));
return (-x*pow(B,2))/(y*pow(A,2));
}
void Ellipse(HDC hdc,int xc,int yc,int A,int B,COLORREF c){
int x=0,y=B;
Draw4Points(hdc,xc,yc,x,y,c);
while(x!=A && y!=0)
{
if(dy_dx(x,A,B)<=1)
{
x++;
y=(B*sqrt(1-(pow(x,2)/pow(A,2))));
Draw4Points(hdc,xc,yc,x,y,c);
}
}
x=A, y=0;
Draw4Points(hdc,xc,yc,x,y,c);
while((y!=B && x!=0))
{
if((dy_dx(x,B,A)<1))
{
y++;
x=(A*sqrt(1-(pow(y,2)/pow(B,2))));
Draw4Points(hdc,xc,yc,x,y,c);
}
}
}
void DrawEllipsePolar(HDC hdc,int xc,int yc,int A,int B,COLORREF c){
double dtheta=1.0/max(A,B);
for(double theta=0;theta<6.28;theta+=dtheta){
double x= Round(xc+A*cos(theta));
double y=Round(yc+B*sin(theta));
SetPixel(hdc,x,y,c);
save(x,y);
}
}
void midptellipse(HDC hdc,int xc,int yc,int A,int B,COLORREF c)
{
double dtheta=1.0/max(A,B);
double cd= cos(dtheta), sd=sin(dtheta);
double x=xc+A, y= yc;
double ct= (x-xc)/A;
double st=(y-yc)/B;
for(double theta=0;theta<6.28;theta+=dtheta){
SetPixel(hdc,Round(x),Round(y),c);
x= x*cd-st*A*sd;
y= y*cd+ct*B*sd;
ct= (x-xc)/A;
st=(y-yc)/B;
save(x,y);
}
}
/**Polygon*/
struct Entry
{
int xmin,xmax;
};
void InitEntries(Entry table[])
{
for(int i=0; i < MAXENTRIES; i++)
{
table[i].xmin = INT_MAX;
table[i].xmax = - INT_MAX;
}
}
void ScanEdge(POINT v1,POINT v2,Entry table[])
{
if(v1.y==v2.y)return;
if(v1.y>v2.y)swap(v1,v2);
double minv=(double)(v2.x-v1.x)/(v2.y-v1.y);
double x=v1.x;
int y=v1.y;
while(y<v2.y){
if(x<table[y].xmin)table[y].xmin=(int)ceil(x);
if(x>table[y].xmax)table[y].xmax=(int)floor(x);
y++;
x+=minv;
}
}
void DrawSanLines(HDC hdc,Entry table[],COLORREF color)
{
for(int y=0;y<MAXENTRIES;y++)
if(table[y].xmin<table[y].xmax)
for(int x=table[y].xmin;x<=table[y].xmax;x++){
SetPixel(hdc,x,y,color);
save(x,y);
}
}
void ConvexFill(HDC hdc,POINT p[],int n,COLORREF color)
{
Entry *table=new Entry[MAXENTRIES];
InitEntries(table);
POINT v1=p[n-1];
for(int i=0;i<n;i++){
POINT v2=p[i];
ScanEdge(v1,v2,table);
v1=p[i];
}
DrawSanLines(hdc,table,color);
delete table;
}
struct EdgeRec
{
double x;
double minv;
int ymax;
bool operator<(EdgeRec r)
{
return x<r.x;
}
};
typedef list<EdgeRec> EdgeList;
EdgeRec InitEdgeRec(POINT& v1,POINT& v2)
{
if(v1.y>v2.y)swap(v1,v2);
EdgeRec rec;
rec.x=v1.x;
rec.ymax=v2.y;
rec.minv=(double)(v2.x-v1.x)/(v2.y-v1.y);
return rec;
}
void InitEdgeTable(POINT *p,int n,EdgeList table[])
{
POINT v1=p[n-1];
for(int i=0;i<n;i++)
{
POINT v2=p[i];
if(v1.y==v2.y){v1=v2;continue;}
EdgeRec rec=InitEdgeRec(v1, v2);
table[v1.y].push_back(rec);
v1=p[i];
}
}
void GeneralPolygonFill(HDC hdc, POINT p[],int n,COLORREF c)
{
EdgeList *table=new EdgeList [MAXENTRIES];
InitEdgeTable(p,n,table);
int y=0;
while(y<MAXENTRIES && table[y].size()==0)y++;
if(y==MAXENTRIES)return;
EdgeList ActiveList=table[y];
while (ActiveList.size()>0)
{
ActiveList.sort();
for(EdgeList::iterator it=ActiveList.begin();it!=ActiveList.end();it++)
{
int x1=(int)ceil(it->x);
it++;
int x2=(int)floor(it->x);
for(int x=x1;x<=x2;x++)SetPixel(hdc,x,y,c);
}
y++;
EdgeList::iterator it=ActiveList.begin();
while(it!=ActiveList.end())
if(y==it->ymax) it=ActiveList.erase(it); else it++;
for(EdgeList::iterator it=ActiveList.begin();it!=ActiveList.end();it++)
it->x+=it->minv;
ActiveList.insert(ActiveList.end(),table[y].begin(),table[y].end());
}
delete[] table;
}
/**clipping*/
void LineClippingC(HDC hdc,int x1,int y1,int x2,int y2,int xc,int yc,int r,COLORREF c){
double dx=x2-x1;
double dy=y2-y1;
for(double t=0;t<1;t+=0.001){
int x=x1+(dx*t);
int y=y1+(dy*t);
if (insideCircle(x,y,xc,yc,r)) {
SetPixel(hdc,x,y,c);
}
}
}
void PointClippingC(HDC hdc, int x,int y,int xc,int yc,int r,COLORREF color) {
if(insideCircle(x,y,xc,yc,r)) {
SetPixel(hdc,x,y,color);
}
}
void PointClipping(HDC hdc,int x,int y,int xleft,int ytop,int xright,int ybottom,COLORREF color)
{
if(x>=xleft && x<= xright && y>=ytop && y<=ybottom)
SetPixel(hdc,x,y,color);
}
union OutCode
{
unsigned All:4;
struct{unsigned left:1,top:1,right:1,bottom:1;};
};
OutCode GetOutCode(double x,double y,int xleft,int ytop,int xright,int ybottom)
{
OutCode out;
out.All=0;
if(x<xleft)out.left=1;else if(x>xright)out.right=1;
if(y<ytop)out.top=1;else if(y>ybottom)out.bottom=1;
return out;
}
void VIntersect(double xs,double ys,double xe,double ye,int x,double *xi,double *yi)
{
*xi=x;
*yi=ys+(x-xs)*(ye-ys)/(xe-xs);
}
void HIntersect(double xs,double ys,double xe,double ye,int y,double *xi,double *yi)
{
*yi=y;
*xi=xs+(y-ys)*(xe-xs)/(ye-ys);
}
void CohenSuth(HDC hdc,int xs,int ys,int xe,int ye,int xleft,int ytop,int xright,int ybottom,COLORREF c)
{
double x1=xs,y1=ys,x2=xe,y2=ye;
OutCode out1=GetOutCode(x1,y1,xleft,ytop,xright,ybottom);
OutCode out2=GetOutCode(x2,y2,xleft,ytop,xright,ybottom);
while( (out1.All || out2.All) && !(out1.All & out2.All))
{
double xi,yi;
if(out1.All)
{
if(out1.left)VIntersect(x1,y1,x2,y2,xleft,&xi,&yi);
else if(out1.top)HIntersect(x1,y1,x2,y2,ytop,&xi,&yi);
else if(out1.right)VIntersect(x1,y1,x2,y2,xright,&xi,&yi);
else HIntersect(x1,y1,x2,y2,ybottom,&xi,&yi);
x1=xi;
y1=yi;
out1=GetOutCode(x1,y1,xleft,ytop,xright,ybottom);
} else
{
if(out2.left)VIntersect(x1,y1,x2,y2,xleft,&xi,&yi);
else if(out2.top)HIntersect(x1,y1,x2,y2,ytop,&xi,&yi);
else if(out2.right)VIntersect(x1,y1,x2,y2,xright,&xi,&yi);
else HIntersect(x1,y1,x2,y2,ybottom,&xi,&yi);
x2=xi;
y2=yi;
out2=GetOutCode(x2,y2,xleft,ytop,xright,ybottom);
}
}
if(!out1.All && !out2.All)
{
parametric(hdc, x1, y1,x2,y2,c);
}
}
typedef vector<Vertex> VertexList;
typedef bool (*IsInFunc)(Vertex& v,int edge);
typedef Vertex (*IntersectFunc)(Vertex& v1,Vertex& v2,int edge);
VertexList ClipWithEdge(VertexList p,int edge,IsInFunc In,IntersectFunc Intersect)
{
VertexList OutList;
Vertex v1=p[p.size()-1];
bool v1_in=In(v1,edge);
for(int i=0;i<(int)p.size();i++)
{
Vertex v2=p[i];
bool v2_in=In(v2,edge);
if(!v1_in && v2_in)
{
OutList.push_back(Intersect(v1,v2,edge));
OutList.push_back(v2);
}else if(v1_in && v2_in) OutList.push_back(v2);
else if(v1_in) OutList.push_back(Intersect(v1,v2,edge));
v1=v2;
v1_in=v2_in;
}
return OutList;
}
bool InLeft(Vertex& v,int edge)
{
return v.x>=edge;
}
bool InRight(Vertex& v,int edge)
{
return v.x<=edge;
}
bool InTop(Vertex& v,int edge)
{
return v.y>=edge;
}
bool InBottom(Vertex& v,int edge)
{
return v.y<=edge;
}
Vertex VIntersect(Vertex& v1,Vertex& v2,int xedge)
{
Vertex res;
res.x=xedge;
res.y=v1.y+(xedge-v1.x)*(v2.y-v1.y)/(v2.x-v1.x);
return res;
}
Vertex HIntersect(Vertex& v1,Vertex& v2,int yedge)
{
Vertex res;
res.y=yedge;
res.x=v1.x+(yedge-v1.y)*(v2.x-v1.x)/(v2.y-v1.y);
return res;
}
void PolygonClip(HDC hdc,POINT *p,int n,int xleft,int ytop,int xright,int ybottom)
{
VertexList vlist;
for(int i=0;i<n;i++)vlist.push_back(Vertex(p[i].x,p[i].y));
vlist=ClipWithEdge(vlist,xleft,InLeft,VIntersect);
vlist=ClipWithEdge(vlist,ytop,InTop,HIntersect);
vlist=ClipWithEdge(vlist,xright,InRight,VIntersect);
vlist=ClipWithEdge(vlist,ybottom,InBottom,HIntersect);
Vertex v1=vlist[vlist.size()-1];
for(int i=0;i<(int)vlist.size();i++)
{
Vertex v2=vlist[i];
MoveToEx(hdc,Round(v1.x),Round(v1.y),NULL);
LineTo(hdc,Round(v2.x),Round(v2.y));
v1=v2;
}
}
/**Cardinal Spline Curve*/
static Vector2 ps[4];
class Vector4
{
double v[4];
public:
Vector4(double a=0,double b=0,double c=0,double d=0)
{
v[0]=a; v[1]=b; v[2]=c; v[3]=d;
}
Vector4(double a[])
{
memcpy(v,a,4*sizeof(double));
}
double& operator[](int i)
{
return v[i];
}
};
class Matrix4
{
Vector4 M[4];
public:
Matrix4(double A[])
{
memcpy(M,A,16*sizeof(double));
}
Vector4& operator[](int i)
{
return M[i];
}
};
Vector4 operator*(Matrix4 M,Vector4& b) // right multiplication of M by b
{
Vector4 res;
for(int i=0;i<4;i++)
for(int j=0;j<4;j++)
res[i]+=M[i][j]*b[j];
return res;
}
double DotProduct(Vector4& a,Vector4& b) //multiplying a raw vector by a column vector
{
return a[0]*b[0]+a[1]*b[1]+a[2]*b[2]+a[3]*b[3];
}
Vector4 GetHermiteCoeff(double x0,double s0,double x1,double s1)
{
static double H[16]={2,1,-2,1,-3,-2,3,-1,0,1,0,0,1,0,0,0};
static Matrix4 basis(H);
Vector4 v(x0,s0,x1,s1);
return basis*v;
}
void DrawHermiteCurve(HDC hdc,Vector2& P0,Vector2& T0,Vector2& P1,Vector2& T1 ,int numpoints, COLORREF color)
{
Vector4 xcoeff=GetHermiteCoeff(P0.x,T0.x,P1.x,T1.x);
Vector4 ycoeff=GetHermiteCoeff(P0.y,T0.y,P1.y,T1.y);
if(numpoints<2)return;
double dt=1.0/(numpoints-1);
for(double t=0;t<=1;t+=dt)
{
Vector4 vt;
vt[3]=1;
for(int i=2;i>=0;i--)vt[i]=vt[i+1]*t;
int x=round(DotProduct(xcoeff,vt));
int y=round(DotProduct(xcoeff,vt));
SetPixel(hdc,x,y,color);
}
}
void DrawHermiteCurve (HDC hdc,Vector2& P0,Vector2& T0,Vector2& P1,Vector2& T1 ,int numpoints)
{
Vector4 xcoeff=GetHermiteCoeff(P0.x,T0.x,P1.x,T1.x);
Vector4 ycoeff=GetHermiteCoeff(P0.y,T0.y,P1.y,T1.y);
if(numpoints<2)return;
double dt=1.0/(numpoints-1);
for(double t=0;t<=1;t+=dt)
{
Vector4 vt;
vt[3]=1;
for(int i=2;i>=0;i--)vt[i]=vt[i+1]*t;
int x=round(DotProduct(xcoeff,vt));
int y=round(DotProduct(ycoeff,vt));
if(t==0)MoveToEx(hdc,x,y,NULL);else LineTo(hdc,x,y);
}
}
void DrawBezierCurve(HDC hdc,Vector2& P0,Vector2& P1,Vector2& P2,Vector2& P3,int numpoints)
{
Vector2 T0(3*(P1.x-P0.x),3*(P1.y-P0.y));