-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProject.asm
970 lines (795 loc) · 23.1 KB
/
Project.asm
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
include Drawing.inc
include UI.inc
include InputMotion.inc
include Shift.inc
include port.inc
.model small
.stack 64
.data
tiles db 640 dup(3) ;Code byte for the content of each tile 0:Status | 1:Frog | 2:Log main | 3:Water | 4:Pavement | 5:Road | 6: log beg. | 7: log end | 8: Car rear | 9: Car front | 10: endPoint
frogPos dw 620
frogPos2 dw 620
fakePos dw 620
BoundsFlag db ?
BoundsFlag2 db ?
direction db ?
chatFlag db ?
readyflag db 0
readyflag2 db 0
levelflag db ?
;------------------Chat module variables---------------------
ToBeSent db ?,'$'
ToBeReceived db '$','$'
Divider db '--------------------------------------------------------------------------------$'
row1 db 1
col1 db 0
row2 db 14
col2 db 0
from1 dw 0100h
to1 dw 0B4fh
from2 dw 0E00h
to2 dw 184Fh
ApplyNewLine db 0Dh
NUllChar db ' $'
GoodByeMessage db 'Goodbye, we wish that you have enjoyed your time!$'
;------------------In game chat variables-------------------------
ToBeSentGame db ?,'$'
ToBeReceivedGame db '$','$'
row1Game db 1
col1Game db 0
row2Game db 2
col2Game db 0
from1Game dw 0100h
to1Game dw 0127h
from2Game dw 0200h
to2Game dw 0227h
scrollRow dw ?
;---------------------------------------------------------------
;------MainMenu\IntroScreen\StatusBar----------------
mes1 db '*To start Frogx86 press ENTER','$'
mes2 db '*To end the program press ESC','$'
mes3 db 'Please enter your name:',10,13 ,'$'
mes4 db 'Press Enter key to continue','$'
mes5 db 'Enter a valid name','$'
mes6 db 'Please enter player2 name:',10,13 ,'$'
mes7 db ' won','$'
mes8 db '*To enter chat press SPACE','$'
mes9 db '*To exit chat press ESC','$'
mes10 db 'To Play level 1 press 1','$'
mes11 db 'To Play level 2 press 2','$'
mes12 db 'You won','$'
MyBuffer1 LABEL BYTE
BufferSize1 DB 15
ActualSize1 DB ?
PlayerName1 DB 15 DUP ('$')
MyBuffer2 LABEL BYTE
BufferSize2 DB 15
ActualSize2 DB ?
PlayerName2 DB 15 DUP ('$')
PlayerScore1 db '0$'
PlayerScore2 db '0$'
PlayerScore1Num db 0
PlayerScore2Num db 0
fakevalue db ? ,'$'
sep db 'Press Esc to exit$'
;-----------------------------------------------------
xpos dw 0
ypos dw 0
color db 0
delayLoops db 4
.code
mov ax,@data
mov ds,ax
;Initializing the serial port with the proper configuration
portinitialization
;Turn the console into video mode
mov ah,0
mov al,13h
int 10h
;The intro screen that provides options ot the user
IntroScreen mes3,mes4,mes5,MyBuffer1,PlayerName1,ActualSize1
MOV AX,0600H ;06 TO SCROLL & 00 FOR FULLJ SCREEN
MOV BH,00H
MOV CX,0000H ;STARTING COORDINATES
MOV DX,184FH ;ENDING COORDINATES
INT 10H
lea si,playerName1
lea di,playerName2
mov cl,6
mov ch,0
;Exchange the names with the other player, give it my name and take his.
NameLoop:
send [si] ;Send a byte of my name
receive3ady fakevalue ;Receive a byte of his name
mov al,fakevalue
mov [di],al
inc si
inc di
inc ActualSize2
loop NameLoop
MainMenu:
;Turn into video mode for the game to start
mov ah,0
mov al,13h
int 10h
;MainMenu\IntroScreen------------
MainMenu mes1,mes2,mes8,mes9,chatFlag
MOV AX,0600H ;06 TO SCROLL & 00 FOR FULLJ SCREEN
MOV BH,00H
MOV CX,0000H ;STARTING COORDINATES
MOV DX,184FH ;ENDING COORDINATES
INT 10H
;-----Level-------------------------
cmp chatFlag,1
je BeginChat
LevelMenu mes10,mes11,levelflag
;-----------------------------------
MOV AX,0600H ;06 TO SCROLL & 00 FOR FULLJ SCREEN
MOV BH,00H
MOV CX,0000H ;STARTING COORDINATES
MOV DX,184FH ;ENDING COORDINATES
INT 10H
gamebegin:
;--------------------------------------------------------------
InitializeArena ;Gives every tile in grid main code with no logs or car then draw
;Drawing Background Once
mov cx,0
mov xpos,0
mov ypos,0
drawBackGround:
mov bx, offset tiles
add bx,cx
DrawTileCode xpos ypos [bx]
add xpos, 10
cmp xpos, 320
jnz BGrowCompleted
mov xpos,0
add ypos,10
BGrowCompleted:
inc cx
cmp cx,640
jnz drawBackGround
InitializeBlocks levelflag;Puts the logs and car codes in places
send readyflag
GameLoop: ;This loop gets Called every loop till player wins
ScoreBar PlayerName1,PlayerScore1,PlayerName2,PlayerScore2,sep ;Writing the score of each player
mov cx,0
mov xpos,0
mov ypos,0
mov bh,0
mov bl,tiles
Shift bx 128 1 frogPos,frogPos2 ;---------This block shifts the rows of water and cars
Shift bx 160 0 frogPos,frogPos2
Shift bx 192 1 frogPos,frogPos2
Shift bx 224 0 frogPos,frogPos2
Shift bx 256 1 frogPos,frogPos2
Shift bx 320 0 fakePos,fakePos
Shift bx 352 1 fakePos,fakePos
Shift bx 384 0 fakePos,fakePos
Shift bx 416 1 fakePos,fakePos
Shift bx 448 0 fakePos,fakePos
Shift bx 480 1 fakePos,fakePos
Shift bx 512 0 fakePos,fakePos
Shift bx 544 1 fakePos,fakePos
Shift bx 576 0 fakePos,fakePos
receive3ady direction ;receive the movement direction from the other player
TakeGameInput frogPos,BoundsFlag ;Take the input from users
cmp BoundsFlag,5 ;If the bounds flag has a value greater than 5, then it's a character.
jbe normal
mov al,BoundsFlag ;move the character into the to be sent variable for sending and printing
mov ToBeSentGame, al
MOVECURSOR row1Game,col1Game ;Move the cursor into the next position
ShowMessage ToBeSentGame ;display the character
inc col1Game ;Increment the current column.
cmp col1Game,40 ;Check if we reached the end of the current line
jne normal
mov col1Game,0 ;If yes, set the cursor back to the beginning of the line
mov scrollRow,8 ;And scroll up by 1 line
scrollVideo scrollRow
normal:
send BoundsFlag ;Send whatever in the boundflag to the other user.
;Check the movements of the other player and apply them to the copy frog
cmp direction,1
je up
cmp direction,2
je down
cmp direction,3
je right
cmp direction,4
je left
cmp direction,5
je mafshoo5
cmp direction,6
ja character
jmp beed
up:
sub frogPos2,32
jmp beed
down:
add frogPos2,32
jmp beed
right:
inc frogPos2
jmp beed
left:
dec frogPos2
jmp beed
mafshoo5:
mov frogPos2,620
jmp beed
character:
mov al, direction ;Move the receieved character to be printed
mov ToBeReceivedGame, al
MOVECURSOR row2Game,col2Game ;Move the cursor into the next position
ShowMessage ToBeReceivedGame ;display the character
inc col2Game ;Increment the current column.
cmp col2Game,40 ;Check if we reached the end of the current line
jne beed
mov col2Game,0 ;If yes, set the cursor back to the beginning of the line
mov scrollRow,16
scrollVideo scrollRow ;And scroll up by 1 line
beed:
mov BoundsFlag,0 ;reset the boundsflag
lea bx,tiles ;Check foreach Frog new Position and check if dead
add bx , frogPos
mov al,tiles[bx]
cmp al,3 ;water
je Dead
cmp al,8 ;Car front
je Dead
cmp al,9 ;Car end
je Dead
jmp Alive
Dead:
mov frogPos,620
mov BoundsFlag,5
Alive:
lea bx,tiles
add bx,frogPos
mov al,[bx]
cmp al,10 ;Check of the current spot is a winning spot
jne Alive2
mov [bx],3 ;If yes, turn it into water (make it disappear, not usuable by other players)
mov frogPos,620 ;Reset the frog position
inc playerScore1 ;Increment the player's score
inc PlayerScore1Num
mov [bx+1],3 ;If x is yellow, check if x+1 is yellow (Used to hide both yellow spots in level 1)
mov [bx-1],3 ;If x is yellow, check if x-1 is yellow (Used to hide both yellow spots in level 1)
Alive2:
lea bx,tiles
add bx,frogPos2
mov al,[bx]
cmp al,10 ;Check of the current spot is a winning spot
jne CheckWon
mov [bx],3 ;If yes, turn it into water (make it disappear, not usuable by other players)
mov frogPos2,620 ;Reset the frog position
inc playerScore2 ;Increment the player's score
inc PlayerScore2Num
mov [bx+1],3 ;If x is yellow, check if x+1 is yellow (Used to hide both yellow spots in level 1)
mov [bx-1],3 ;If x is yellow, check if x-1 is yellow (Used to hide both yellow spots in level 1)
CheckWon: ;--Check the winner (And print his name)
mov al,PlayerScore1Num
mov ah,PlayerScore2Num
cmp al,3d
jge Player1Won ;if the player score is above 3, then he is a winner
cmp ah,3d
jl Continue
Playes2Won:
mov ah,2
mov bh,0
mov dh,10
mov dl,10
int 10h
PrintMessage PlayerName2
mov ah,2
mov bh,0
mov dh,10
add dl,ActualSize2
int 10h
PrintMessage mes7
mov ah, 4ch
int 21h
hlt
Player1Won:
mov ah,2
mov bh,0
mov dh,10
mov dl,10
int 10h
PrintMessage mes12
mov ah, 4ch
int 21h
hlt
Continue:
drawCubes: ;-----All the following is responsible for drawing the whole current frame
mov bx, offset tiles
add bx,cx
mov dl,[bx]
cmp [bx],6
jnz logBeg:
;Draw log beg------------------------
push cx
push dx
mov cx, xpos
mov dx, ypos
add dx,2
DrawHorizontalLine cx, dx, 6, 06h
inc dx
DrawHorizontalLine cx, dx, 7, 06h
inc dx
DrawHorizontalLine cx, dx, 8, 06h
inc dx
DrawHorizontalLine cx, dx, 9, 06h
inc dx
DrawHorizontalLine cx, dx, 8, 06h
inc dx
DrawHorizontalLine cx, dx, 7, 06h
inc dx
DrawHorizontalLine cx, dx, 6, 06h
;water filling
mov dx,ypos
DrawHorizontalLine cx, dx, 10, 001b
inc dx
DrawHorizontalLine cx, dx, 10, 001b
inc dx
add cx,6
DrawHorizontalLine cx, dx, 4, 001b
inc dx
inc cx
DrawHorizontalLine cx, dx, 3, 001b
inc dx
inc cx
DrawHorizontalLine cx, dx, 2, 001b
inc dx
inc cx
DrawHorizontalLine cx, dx, 1, 001b
inc dx
dec cx
DrawHorizontalLine cx, dx, 2, 001b
inc dx
dec cx
DrawHorizontalLine cx, dx, 3, 001b
inc dx
dec cx
DrawHorizontalLine cx, dx, 4, 001b
pop dx
pop cx
;------------------------------------
jmp DoneDrawing
logBeg:
cmp [bx],7
jnz logEnd:
;Draw log End------------------------
push cx
push dx
mov cx, xpos
mov dx, ypos
add cx,4
add dx,2
DrawHorizontalLine cx, dx, 6, 06h
inc dx
dec cx
DrawHorizontalLine cx, dx, 7, 06h
inc dx
dec cx
DrawHorizontalLine cx, dx, 8, 06h
inc dx
dec cx
DrawHorizontalLine cx, dx, 9, 06h
inc dx
inc cx
DrawHorizontalLine cx, dx, 8, 06h
inc dx
inc cx
DrawHorizontalLine cx, dx, 7, 06h
inc dx
inc cx
DrawHorizontalLine cx, dx, 6, 06h
;water filling
mov cx,xpos
mov dx,ypos
DrawHorizontalLine cx, dx, 10, 001b
inc dx
DrawHorizontalLine cx, dx, 10, 001b
inc dx
DrawHorizontalLine cx, dx, 4, 001b
inc dx
DrawHorizontalLine cx, dx, 3, 001b
inc dx
DrawHorizontalLine cx, dx, 2, 001b
inc dx
DrawHorizontalLine cx, dx, 1, 001b
inc dx
DrawHorizontalLine cx, dx, 2, 001b
inc dx
DrawHorizontalLine cx, dx, 3, 001b
inc dx
DrawHorizontalLine cx, dx, 4, 001b
pop dx
pop cx
;------------------------------------
jmp DoneDrawing
logEnd:
cmp [bx],8
jnz carBeg:
;Draw car Beg-----------------------
push cx
push dx
mov cx, xpos
mov dx, ypos
add dx,2
DrawHorizontalLine cx, dx, 10, 001b
inc dx
DrawHorizontalLine cx, dx, 10, 001b
inc dx
DrawHorizontalLine cx, dx, 10, 001b
inc dx
DrawHorizontalLine cx, dx, 10, 001b
inc dx
DrawHorizontalLine cx, dx, 10, 001b
inc dx
DrawHorizontalLine cx, dx, 10, 001b
mov dx,ypos
inc cx
add dx,3
DrawHorizontalLine cx, dx, 8, 11D
inc dx
DrawHorizontalLine cx, dx, 8, 11D
inc dx
DrawHorizontalLine cx, dx, 8, 11D
inc dx
DrawHorizontalLine cx, dx, 8, 11D
pop dx
pop cx
;--------------------------------------
jmp DoneDrawing
carBeg:
cmp [bx],9
jnz carEnd:
;Draw car end--------------------------
push cx
push dx
mov cx, xpos
mov dx, ypos
;first wheel
add cx,2
DrawHorizontalLine cx, dx, 6, 14D
inc dx
DrawHorizontalLine cx, dx, 6, 14D
;car body between the two wheels
mov cx,xpos
inc dx
DrawHorizontalLine cx, dx, 10, 001b
inc dx
DrawHorizontalLine cx, dx, 10, 001b
inc dx
DrawHorizontalLine cx, dx, 10, 001b
inc dx
DrawHorizontalLine cx, dx, 10, 001b
inc dx
DrawHorizontalLine cx, dx, 10, 001b
inc dx
DrawHorizontalLine cx, dx, 10, 001b
;second wheel
inc dx
add cx,2
DrawHorizontalLine cx, dx, 6, 14D
inc dx
DrawHorizontalLine cx, dx, 6, 14D
pop dx
pop cx
;--------------------------------------
jmp DoneDrawing
carEnd:
cmp [bx],2
jnz logMain:
;Draw logMain--------------------------
push cx
push dx
mov cx, xpos
mov dx, ypos
add dx,2
DrawHorizontalLine cx,dx,10,06h
inc dx
DrawHorizontalLine cx,dx,10,06h
inc dx
DrawHorizontalLine cx,dx,10,06h
inc dx
DrawHorizontalLine cx,dx,10,06h
inc dx
DrawHorizontalLine cx,dx,10,06h
inc dx
DrawHorizontalLine cx,dx,10,06h
inc dx
DrawHorizontalLine cx,dx,10,06h
;water filling
mov dx,ypos
DrawHorizontalLine cx,dx,10,001b
inc dx
DrawHorizontalLine cx,dx,10,001b
pop dx
pop cx
;--------------------------------------
jmp DoneDrawing
logMain:
DrawTileCode xpos ypos [bx]
DoneDrawing:
cmp cx,frogPos ;---Drawing the frogs comes at last so it gets drawn after all other objects
jnz Frog:
;Draw Frog----------------------------
;Draw the frog's 4 legs
push cx
push dx
mov cx, xpos
mov dx, ypos
inc cx
DrawVerticalLine cx,dx,4,1110b
add dx,5
DrawVerticalLine cx,dx,4,1110b
mov cx, xpos
mov dx, ypos
add cx,8
DrawVerticalLine cx,dx,4,1110b
add dx,5
DrawVerticalLine cx,dx,4,1110b
;Draw 4 feet
mov cx, xpos
mov dx, ypos
inc dx
DrawPixel cx,dx,1110b
add cx,9
DrawPixel cx,dx,1110b
mov cx, xpos
mov dx, ypos
add dx,7
DrawPixel cx,dx,1110b
add cx,9
DrawPixel cx,dx,1110b
;Draw the connections between legs and body
mov cx, xpos
mov dx, ypos
add cx,2
add dx,3
DrawPixel cx,dx,1110b
add cx,5
DrawPixel cx,dx,1110b
mov cx, xpos
mov dx, ypos
add dx,5
add cx,2
DrawPixel cx,dx,1110b
add cx,5
DrawPixel cx,dx,1110b
;Draw the frog body
mov cx, xpos
mov dx, ypos
add cx,3
add dx,2
DrawVerticalLine cx,dx,6,0100b
add cx,3
DrawVerticalLine cx,dx,6,0100b
mov cx, xpos
mov dx, ypos
add cx,4
DrawVerticalLine cx,dx,9,0100b
inc cx
DrawVerticalLine cx,dx,9,0100b
;Draw the frog's eyes
mov cx, xpos
mov dx, ypos
add cx,3
inc dx
DrawPixel cx,dx,100b
add cx,3
DrawPixel cx,dx,100b
pop dx
pop cx
;--------------------------------
Frog:
cmp cx,frogPos2
jnz Frog2:
;Draw Frog----------------------------
;Draw the frog's 4 legs
push cx
push dx
mov cx, xpos
mov dx, ypos
inc cx
DrawVerticalLine cx,dx,4,1100b
add dx,5
DrawVerticalLine cx,dx,4,1100b
mov cx, xpos
mov dx, ypos
add cx,8
DrawVerticalLine cx,dx,4,1100b
add dx,5
DrawVerticalLine cx,dx,4,1100b
;Draw 4 feet
mov cx, xpos
mov dx, ypos
inc dx
DrawPixel cx,dx,1100b
add cx,9
DrawPixel cx,dx,1100b
mov cx, xpos
mov dx, ypos
add dx,7
DrawPixel cx,dx,1100b
add cx,9
DrawPixel cx,dx,1100b
;Draw the connections between legs and body
mov cx, xpos
mov dx, ypos
add cx,2
add dx,3
DrawPixel cx,dx,1100b
add cx,5
DrawPixel cx,dx,1100b
mov cx, xpos
mov dx, ypos
add dx,5
add cx,2
DrawPixel cx,dx,1100b
add cx,5
DrawPixel cx,dx,1100b
;Draw the frog body
mov cx, xpos
mov dx, ypos
add cx,3
add dx,2
DrawVerticalLine cx,dx,6,1010b
add cx,3
DrawVerticalLine cx,dx,6,1010b
mov cx, xpos
mov dx, ypos
add cx,4
DrawVerticalLine cx,dx,9,1010b
inc cx
DrawVerticalLine cx,dx,9,1010b
;Draw the frog's eyes
mov cx, xpos
mov dx, ypos
add cx,3
inc dx
DrawPixel cx,dx,100b
add cx,3
DrawPixel cx,dx,100b
pop dx
pop cx
;--------------------------------
Frog2:
add xpos, 10
cmp xpos, 320
jnz rowCompleted
mov xpos,0
add ypos,10
rowCompleted:
inc cx
cmp cx,640
jnz drawCubes
jmp GameLoop
BeginChat:
;Switch to text mode
mov ah,00h
mov al,02h
int 10h
portinitialization ;Initialize the port
CLEAR_SCREEN_UP ;Clear the screen
MOVECURSOR 0,0 ;Reset the cursor
MOVECURSOR 12,0 ;Move the cursor to the middle of the screen and divide it into two halves
ShowMessage Divider
MOVECURSOR 0,0 ;Print and first player name
ShowMessage PlayerName1
MOVECURSOR 13,0 ;Print the second player name
ShowMessage PlayerName2
MOVECURSOR 1,0 ;Reset the cursor back at the beginning of the chat window
chat:
mov ToBeReceived,'$' ;reset to default
mov ah,1 ;Read input into buffer
int 16h
jnz Se ;If a key was pressed, let's check it and send it
jmp Re ;Otherwise let's see if we have something to receive.
Se:
mov ah,00 ;Consume the buffer
int 16h
cmp ah,1ch
je enter
cmp al,27
je escape
cmp ah,0Eh
je BackSpace1
mov ToBeSent,al
MOVECURSOR row1,col1 ;Move the cursor to the next position
ShowMessage ToBeSent ;Print the character I have just typed
send ToBeSent ;Send it to the other player
inc col1 ;Increment the current column
cmp col1,80 ;Check if we have reached the end of the lines
je ResetCol1 ;Reset values
BackCol1:
jmp Re
BackSpace1:
cmp col1,0 ;If the cursor is at the beginning of the line and the use press backspace, ignore it
je Re
send ah ;Otherwise tell the other PC to backspace as well
dec col1 ;decrement the col to the previous position (to fill the gap)
MOVECURSOR row1,col1 ;Move the cursor and print a null character
ShowMessage NUllChar
MOVECURSOR row1,col1 ;Show cursor
jmp Re
enter:
mov col1,0 ;reset the col
inc row1 ;increment row
cmp row1,12 ;check if I have consumed my half
je ResetRow1Enter ;if yes, reset and scroll
BackRow1Enter:
MOVECURSOR row1,col1
send ApplyNewLine ;Send the enter to the other user
Re:
receiveChat ToBeReceived ;receive what's on the serial
cmp ToBeReceived,'$' ;if it's still a dollar a sign, then I have received nothing, ignore it
je chat
cmp ToBeReceived, 0Eh ;If I have received a backspace, reflect the changes
je Backspace2
cmp ToBeReceived, 0Dh ; If Have received an enter, reflect the changes
je Enter2
MOVECURSOR row2,col2 ;If i have received a character, move the cursor to the next position
ShowMessage ToBeReceived ;And print it
inc col2 ;Increment the current col
cmp col2,80 ;Check end of line
je ResetCol2 ;If end of line, reset
BackCol2:
jmp chat
Backspace2: ;same as backspace1
dec col2
MOVECURSOR row2,col2
ShowMessage NUllChar
MOVECURSOR row2,col2
jmp chat
Enter2: ;same as enter1
mov col2,0
inc row2
cmp row2,24
je ResetEnter2
BackEnter2:
MOVECURSOR row2,col2
jmp chat
ResetEnter2:
scroll from2,to2 ;If an enter caused me to consume all my space, then scroll one line up
MOVECURSOR 12,0 ;Reset the cursor
ShowMessage Divider ;Redraw the divider, propaply useless
mov row2,23 ;reset the row
jmp BackEnter2
ResetCol1: ;same idea as other resets
mov col1,0
inc row1
cmp row1,12
je ResetRow1
BackRow1:
jmp BackCol1
ResetCol2: ;same idea as other resets
mov col2,0
inc row2
cmp row2,24
je ResetRow2
BackRow2:
jmp BackCol2
ResetRow1: ;same idea as other resets
scroll from1,to1
mov row1,11
jmp BackRow1
ResetRow2: ;same idea as other resets
scroll from2,to2
MOVECURSOR 12,0
ShowMessage Divider
mov row2,23
jmp BackRow2
ResetRow1Enter: ;same idea as other resets
scroll from1,to1
mov row1,11
jmp BackRow1Enter
escape: ;If the user quits chat, move to the main menu
CLEAR_SCREEN_UP
MOVECURSOR 0,0
ShowMessage GoodByeMessage
jmp MainMenu
hlt