forked from nanoflite/vecx
-
Notifications
You must be signed in to change notification settings - Fork 1
/
vecx.c
1067 lines (859 loc) · 18.4 KB
/
vecx.c
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
#include <stdio.h>
#include "e6809.h"
#include "vecx.h"
#include "osint.h"
#include "e8910.h"
#define einline __inline
unsigned char rom[8192];
unsigned char cart[32768];
static unsigned char ram[1024];
/* the sound chip registers */
unsigned snd_regs[16];
static unsigned snd_select;
/* the via 6522 registers */
static unsigned via_ora;
static unsigned via_orb;
static unsigned via_ddra;
static unsigned via_ddrb;
static unsigned via_t1on; /* is timer 1 on? */
static unsigned via_t1int; /* are timer 1 interrupts allowed? */
static unsigned via_t1c;
static unsigned via_t1ll;
static unsigned via_t1lh;
static unsigned via_t1pb7; /* timer 1 controlled version of pb7 */
static unsigned via_t2on; /* is timer 2 on? */
static unsigned via_t2int; /* are timer 2 interrupts allowed? */
static unsigned via_t2c;
static unsigned via_t2ll;
static unsigned via_sr;
static unsigned via_srb; /* number of bits shifted so far */
static unsigned via_src; /* shift counter */
static unsigned via_srclk;
static unsigned via_acr;
static unsigned via_pcr;
static unsigned via_ifr;
static unsigned via_ier;
static unsigned via_ca2;
static unsigned via_cb2h; /* basic handshake version of cb2 */
static unsigned via_cb2s; /* version of cb2 controlled by the shift register */
/* analog devices */
static unsigned alg_rsh; /* zero ref sample and hold */
static unsigned alg_xsh; /* x sample and hold */
static unsigned alg_ysh; /* y sample and hold */
static unsigned alg_zsh; /* z sample and hold */
unsigned alg_jch0; /* joystick direction channel 0 */
unsigned alg_jch1; /* joystick direction channel 1 */
unsigned alg_jch2; /* joystick direction channel 2 */
unsigned alg_jch3; /* joystick direction channel 3 */
static unsigned alg_jsh; /* joystick sample and hold */
static unsigned alg_compare;
static long alg_dx; /* delta x */
static long alg_dy; /* delta y */
static long alg_curr_x; /* current x position */
static long alg_curr_y; /* current y position */
enum
{
VECTREX_PDECAY = 30, /* phosphor decay rate */
/* number of 6809 cycles before a frame redraw */
FCYCLES_INIT = VECTREX_MHZ / VECTREX_PDECAY,
/* max number of possible vectors that maybe on the screen at one time.
* one only needs VECTREX_MHZ / VECTREX_PDECAY but we need to also store
* deleted vectors in a single table
*/
VECTOR_CNT = VECTREX_MHZ / VECTREX_PDECAY,
VECTOR_HASH = 65521
};
static unsigned alg_vectoring; /* are we drawing a vector right now? */
static long alg_vector_x0;
static long alg_vector_y0;
static long alg_vector_x1;
static long alg_vector_y1;
static long alg_vector_dx;
static long alg_vector_dy;
static unsigned char alg_vector_color;
long vector_draw_cnt;
long vector_erse_cnt;
static vector_t vectors_set[2 * VECTOR_CNT];
vector_t *vectors_draw;
vector_t *vectors_erse;
static long vector_hash[VECTOR_HASH];
static long fcycles;
/* update the snd chips internal registers when via_ora/via_orb changes */
static einline void snd_update(void)
{
switch (via_orb & 0x18)
{
case 0x00:
/* the sound chip is disabled */
break;
case 0x08:
/* the sound chip is sending data */
break;
case 0x10:
/* the sound chip is recieving data */
if (snd_select != 14)
{
snd_regs[snd_select] = via_ora;
e8910_write(snd_select, via_ora);
}
break;
case 0x18:
/* the sound chip is latching an address */
if ((via_ora & 0xf0) == 0x00)
{
snd_select = via_ora & 0x0f;
}
break;
}
}
/* update the various analog values when orb is written. */
static einline void alg_update(void)
{
switch (via_orb & 0x06)
{
case 0x00:
alg_jsh = alg_jch0;
if ((via_orb & 0x01) == 0x00)
{
/* demultiplexor is on */
alg_ysh = alg_xsh;
}
break;
case 0x02:
alg_jsh = alg_jch1;
if ((via_orb & 0x01) == 0x00)
{
/* demultiplexor is on */
alg_rsh = alg_xsh;
}
break;
case 0x04:
alg_jsh = alg_jch2;
if ((via_orb & 0x01) == 0x00)
{
/* demultiplexor is on */
if (alg_xsh > 0x80)
{
alg_zsh = alg_xsh - 0x80;
}
else
{
alg_zsh = 0;
}
}
break;
case 0x06:
/* sound output line */
alg_jsh = alg_jch3;
break;
}
/* compare the current joystick direction with a reference */
if (alg_jsh > alg_xsh)
{
alg_compare = 0x20;
}
else
{
alg_compare = 0;
}
/* compute the new "deltas" */
alg_dx = (long)alg_xsh - (long)alg_rsh;
alg_dy = (long)alg_rsh - (long)alg_ysh;
}
/* update IRQ and bit-7 of the ifr register after making an adjustment to
* ifr.
*/
static einline void int_update(void)
{
if ((via_ifr & 0x7f) & (via_ier & 0x7f))
{
via_ifr |= 0x80;
}
else
{
via_ifr &= 0x7f;
}
}
unsigned char read8(unsigned address)
{
unsigned char data;
data = 0x00;
if ((address & 0xe000) == 0xe000)
{
/* rom */
data = rom[address & 0x1fff];
}
else if ((address & 0xe000) == 0xc000)
{
if (address & 0x800)
{
/* ram */
data = ram[address & 0x3ff];
}
else if (address & 0x1000)
{
/* io */
switch (address & 0xf)
{
case 0x0:
/* compare signal is an input so the value does not come from
* via_orb.
*/
if (via_acr & 0x80)
{
/* timer 1 has control of bit 7 */
data = (unsigned char)((via_orb & 0x5f) | via_t1pb7 | alg_compare);
}
else
{
/* bit 7 is being driven by via_orb */
data = (unsigned char)((via_orb & 0xdf) | alg_compare);
}
break;
case 0x1:
/* register 1 also performs handshakes if necessary */
if ((via_pcr & 0x0e) == 0x08)
{
/* if ca2 is in pulse mode or handshake mode, then it
* goes low whenever ira is read.
*/
via_ca2 = 0;
}
/* fall through */
case 0xf:
if ((via_orb & 0x18) == 0x08)
{
/* the snd chip is driving port a */
data = (unsigned char)snd_regs[snd_select];
}
else
{
data = (unsigned char)via_ora;
}
break;
case 0x2:
data = (unsigned char)via_ddrb;
break;
case 0x3:
data = (unsigned char)via_ddra;
break;
case 0x4:
/* T1 low order counter */
data = (unsigned char)via_t1c;
via_ifr &= 0xbf; /* remove timer 1 interrupt flag */
via_t1on = 0; /* timer 1 is stopped */
via_t1int = 0;
via_t1pb7 = 0x80;
int_update();
break;
case 0x5:
/* T1 high order counter */
data = (unsigned char)(via_t1c >> 8);
break;
case 0x6:
/* T1 low order latch */
data = (unsigned char)via_t1ll;
break;
case 0x7:
/* T1 high order latch */
data = (unsigned char)via_t1lh;
break;
case 0x8:
/* T2 low order counter */
data = (unsigned char)via_t2c;
via_ifr &= 0xdf; /* remove timer 2 interrupt flag */
via_t2on = 0; /* timer 2 is stopped */
via_t2int = 0;
int_update();
break;
case 0x9:
/* T2 high order counter */
data = (unsigned char)(via_t2c >> 8);
break;
case 0xa:
data = (unsigned char)via_sr;
via_ifr &= 0xfb; /* remove shift register interrupt flag */
via_srb = 0;
via_srclk = 1;
int_update();
break;
case 0xb:
data = (unsigned char)via_acr;
break;
case 0xc:
data = (unsigned char)via_pcr;
break;
case 0xd:
/* interrupt flag register */
data = (unsigned char)via_ifr;
break;
case 0xe:
/* interrupt enable register */
data = (unsigned char)(via_ier | 0x80);
break;
}
}
}
else if (address < 0x8000)
{
/* cartridge */
data = cart[address];
}
else
{
data = 0xff;
}
return data;
}
void write8(unsigned address, unsigned char data)
{
if ((address & 0xe000) == 0xe000)
{
/* rom */
}
else if ((address & 0xe000) == 0xc000)
{
/* it is possible for both ram and io to be written at the same! */
if (address & 0x800)
{
ram[address & 0x3ff] = data;
}
if (address & 0x1000)
{
switch (address & 0xf)
{
case 0x0:
via_orb = data;
snd_update();
alg_update();
if ((via_pcr & 0xe0) == 0x80)
{
/* if cb2 is in pulse mode or handshake mode, then it
* goes low whenever orb is written.
*/
via_cb2h = 0;
}
break;
case 0x1:
/* register 1 also performs handshakes if necessary */
if ((via_pcr & 0x0e) == 0x08)
{
/* if ca2 is in pulse mode or handshake mode, then it
* goes low whenever ora is written.
*/
via_ca2 = 0;
}
/* fall through */
case 0xf:
via_ora = data;
snd_update();
/* output of port a feeds directly into the dac which then
* feeds the x axis sample and hold.
*/
alg_xsh = data ^ 0x80;
alg_update();
break;
case 0x2:
via_ddrb = data;
break;
case 0x3:
via_ddra = data;
break;
case 0x4:
/* T1 low order counter */
via_t1ll = data;
break;
case 0x5:
/* T1 high order counter */
via_t1lh = data;
via_t1c = (via_t1lh << 8) | via_t1ll;
via_ifr &= 0xbf; /* remove timer 1 interrupt flag */
via_t1on = 1; /* timer 1 starts running */
via_t1int = 1;
via_t1pb7 = 0;
int_update();
break;
case 0x6:
/* T1 low order latch */
via_t1ll = data;
break;
case 0x7:
/* T1 high order latch */
via_t1lh = data;
break;
case 0x8:
/* T2 low order latch */
via_t2ll = data;
break;
case 0x9:
/* T2 high order latch/counter */
via_t2c = (data << 8) | via_t2ll;
via_ifr &= 0xdf;
via_t2on = 1; /* timer 2 starts running */
via_t2int = 1;
int_update();
break;
case 0xa:
via_sr = data;
via_ifr &= 0xfb; /* remove shift register interrupt flag */
via_srb = 0;
via_srclk = 1;
int_update();
break;
case 0xb:
via_acr = data;
break;
case 0xc:
via_pcr = data;
if ((via_pcr & 0x0e) == 0x0c)
{
/* ca2 is outputting low */
via_ca2 = 0;
}
else
{
/* ca2 is disabled or in pulse mode or is
* outputting high.
*/
via_ca2 = 1;
}
if ((via_pcr & 0xe0) == 0xc0)
{
/* cb2 is outputting low */
via_cb2h = 0;
}
else
{
/* cb2 is disabled or is in pulse mode or is
* outputting high.
*/
via_cb2h = 1;
}
break;
case 0xd:
/* interrupt flag register */
via_ifr &= ~(data & 0x7f);
int_update();
break;
case 0xe:
/* interrupt enable register */
if (data & 0x80)
{
via_ier |= data & 0x7f;
}
else
{
via_ier &= ~(data & 0x7f);
}
int_update();
break;
}
}
}
else if (address < 0x8000)
{
/* cartridge */
}
}
void vecx_reset(void)
{
unsigned r;
/* ram */
for (r = 0; r < 1024; r++)
{
ram[r] = r & 0xff;
}
for (r = 0; r < 16; r++)
{
snd_regs[r] = 0;
e8910_write(r, 0);
}
/* input buttons */
snd_regs[14] = 0xff;
e8910_write(14, 0xff);
snd_select = 0;
via_ora = 0;
via_orb = 0;
via_ddra = 0;
via_ddrb = 0;
via_t1on = 0;
via_t1int = 0;
via_t1c = 0;
via_t1ll = 0;
via_t1lh = 0;
via_t1pb7 = 0x80;
via_t2on = 0;
via_t2int = 0;
via_t2c = 0;
via_t2ll = 0;
via_sr = 0;
via_srb = 8;
via_src = 0;
via_srclk = 0;
via_acr = 0;
via_pcr = 0;
via_ifr = 0;
via_ier = 0;
via_ca2 = 1;
via_cb2h = 1;
via_cb2s = 0;
alg_rsh = 128;
alg_xsh = 128;
alg_ysh = 128;
alg_zsh = 0;
alg_jch0 = 128;
alg_jch1 = 128;
alg_jch2 = 128;
alg_jch3 = 128;
alg_jsh = 128;
alg_compare = 0; /* check this */
alg_dx = 0;
alg_dy = 0;
alg_curr_x = ALG_MAX_X / 2;
alg_curr_y = ALG_MAX_Y / 2;
alg_vectoring = 0;
vector_draw_cnt = 0;
vector_erse_cnt = 0;
vectors_draw = vectors_set;
vectors_erse = vectors_set + VECTOR_CNT;
fcycles = FCYCLES_INIT;
e6809_read8 = read8;
e6809_write8 = write8;
e6809_reset();
}
/* perform a single cycle worth of via emulation.
* via_sstep0 is the first postion of the emulation.
*/
static einline void via_sstep0(void)
{
unsigned t2shift;
if (via_t1on)
{
via_t1c--;
if ((via_t1c & 0xffff) == 0xffff)
{
/* counter just rolled over */
if (via_acr & 0x40)
{
/* continuous interrupt mode */
via_ifr |= 0x40;
int_update();
via_t1pb7 = 0x80 - via_t1pb7;
/* reload counter */
via_t1c = (via_t1lh << 8) | via_t1ll;
}
else
{
/* one shot mode */
if (via_t1int)
{
via_ifr |= 0x40;
int_update();
via_t1pb7 = 0x80;
via_t1int = 0;
}
}
}
}
if (via_t2on && (via_acr & 0x20) == 0x00)
{
via_t2c--;
if ((via_t2c & 0xffff) == 0xffff)
{
/* one shot mode */
if (via_t2int)
{
via_ifr |= 0x20;
int_update();
via_t2int = 0;
}
}
}
/* shift counter */
via_src--;
if ((via_src & 0xff) == 0xff)
{
via_src = via_t2ll;
if (via_srclk)
{
t2shift = 1;
via_srclk = 0;
}
else
{
t2shift = 0;
via_srclk = 1;
}
}
else
{
t2shift = 0;
}
if (via_srb < 8)
{
switch (via_acr & 0x1c)
{
case 0x00:
/* disabled */
break;
case 0x04:
/* shift in under control of t2 */
if (t2shift)
{
/* shifting in 0s since cb2 is always an output */
via_sr <<= 1;
via_srb++;
}
break;
case 0x08:
/* shift in under system clk control */
via_sr <<= 1;
via_srb++;
break;
case 0x0c:
/* shift in under cb1 control */
break;
case 0x10:
/* shift out under t2 control (free run) */
if (t2shift)
{
via_cb2s = (via_sr >> 7) & 1;
via_sr <<= 1;
via_sr |= via_cb2s;
}
break;
case 0x14:
/* shift out under t2 control */
if (t2shift)
{
via_cb2s = (via_sr >> 7) & 1;
via_sr <<= 1;
via_sr |= via_cb2s;
via_srb++;
}
break;
case 0x18:
/* shift out under system clock control */
via_cb2s = (via_sr >> 7) & 1;
via_sr <<= 1;
via_sr |= via_cb2s;
via_srb++;
break;
case 0x1c:
/* shift out under cb1 control */
break;
}
if (via_srb == 8)
{
via_ifr |= 0x04;
int_update();
}
}
}
/* perform the second part of the via emulation */
static einline void via_sstep1(void)
{
if ((via_pcr & 0x0e) == 0x0a)
{
/* if ca2 is in pulse mode, then make sure
* it gets restored to '1' after the pulse.
*/
via_ca2 = 1;
}
if ((via_pcr & 0xe0) == 0xa0)
{
/* if cb2 is in pulse mode, then make sure
* it gets restored to '1' after the pulse.
*/
via_cb2h = 1;
}
}
static einline void alg_addline(long x0, long y0, long x1, long y1, unsigned char color)
{
unsigned long key;
long index;
key = (unsigned long)x0;
key = key * 31 + (unsigned long)y0;
key = key * 31 + (unsigned long)x1;
key = key * 31 + (unsigned long)y1;
key %= VECTOR_HASH;
/* first check if the line to be drawn is in the current draw list.
* if it is, then it is not added again.
*/
index = vector_hash[key];
if (index >= 0 && index < vector_draw_cnt &&
x0 == vectors_draw[index].x0 &&
y0 == vectors_draw[index].y0 &&
x1 == vectors_draw[index].x1 &&
y1 == vectors_draw[index].y1)
{
vectors_draw[index].color = color;
}
else
{
/* missed on the draw list, now check if the line to be drawn is in
* the erase list ... if it is, "invalidate" it on the erase list.
*/
if (index >= 0 && index < vector_erse_cnt &&
x0 == vectors_erse[index].x0 &&
y0 == vectors_erse[index].y0 &&
x1 == vectors_erse[index].x1 &&
y1 == vectors_erse[index].y1)
{
vectors_erse[index].color = VECTREX_COLORS;
}
vectors_draw[vector_draw_cnt].x0 = x0;
vectors_draw[vector_draw_cnt].y0 = y0;
vectors_draw[vector_draw_cnt].x1 = x1;
vectors_draw[vector_draw_cnt].y1 = y1;
vectors_draw[vector_draw_cnt].color = color;
vector_hash[key] = vector_draw_cnt;
vector_draw_cnt++;
}
}
/* perform a single cycle worth of analog emulation */
static einline void alg_sstep(void)
{
long sig_dx, sig_dy;
unsigned sig_ramp;
unsigned sig_blank;
if ((via_acr & 0x10) == 0x10)
{
sig_blank = via_cb2s;
}
else
{
sig_blank = via_cb2h;
}
if (via_ca2 == 0)
{
/* need to force the current point to the 'orgin' so just
* calculate distance to origin and use that as dx,dy.
*/
sig_dx = ALG_MAX_X / 2 - alg_curr_x;
sig_dy = ALG_MAX_Y / 2 - alg_curr_y;
}
else
{
if (via_acr & 0x80)
{
sig_ramp = via_t1pb7;
}
else
{
sig_ramp = via_orb & 0x80;
}
if (sig_ramp == 0)
{
sig_dx = alg_dx;
sig_dy = alg_dy;
}
else
{
sig_dx = 0;
sig_dy = 0;
}
}
if (alg_vectoring == 0)
{
if (sig_blank == 1 &&
alg_curr_x >= 0 && alg_curr_x < ALG_MAX_X &&
alg_curr_y >= 0 && alg_curr_y < ALG_MAX_Y)
{
/* start a new vector */
alg_vectoring = 1;
alg_vector_x0 = alg_curr_x;
alg_vector_y0 = alg_curr_y;
alg_vector_x1 = alg_curr_x;
alg_vector_y1 = alg_curr_y;
alg_vector_dx = sig_dx;
alg_vector_dy = sig_dy;
alg_vector_color = (unsigned char)alg_zsh;
}
}
else
{
/* already drawing a vector ... check if we need to turn it off */
if (sig_blank == 0)
{
/* blank just went on, vectoring turns off, and we've got a
* new line.
*/
alg_vectoring = 0;
alg_addline(alg_vector_x0, alg_vector_y0,
alg_vector_x1, alg_vector_y1,
alg_vector_color);
}
else if (sig_dx != alg_vector_dx ||
sig_dy != alg_vector_dy ||
(unsigned char)alg_zsh != alg_vector_color)
{
/* the parameters of the vectoring processing has changed.
* so end the current line.
*/
alg_addline(alg_vector_x0, alg_vector_y0,
alg_vector_x1, alg_vector_y1,
alg_vector_color);
/* we continue vectoring with a new set of parameters if the
* current point is not out of limits.
*/
if (alg_curr_x >= 0 && alg_curr_x < ALG_MAX_X &&
alg_curr_y >= 0 && alg_curr_y < ALG_MAX_Y)
{
alg_vector_x0 = alg_curr_x;
alg_vector_y0 = alg_curr_y;
alg_vector_x1 = alg_curr_x;
alg_vector_y1 = alg_curr_y;