-
Notifications
You must be signed in to change notification settings - Fork 18
/
sdlgfx.pp
1532 lines (1286 loc) · 49.7 KB
/
sdlgfx.pp
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
unit sdlgfx;
{$MODE FPC}
{
GearHead: Arena, a roguelike mecha CRPG
Copyright (C) 2005 Joseph Hewitt
This library is free software; you can redistribute it and/or modify it
under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or (at
your option) any later version.
The full text of the LGPL can be found in license.txt.
This library is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser
General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this library; if not, write to the Free Software Foundation,
Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
}
interface
uses SDL,SDL_TTF,SDL_Image,texutil,gears,dos,ui4gh;
Type
SensibleSpritePtr = ^SensibleSprite;
SensibleSprite = Record
Name,Color: String;
W,H: Integer; { Width and Height of each cell. }
Img: PSDL_Surface;
Next: SensibleSpritePtr;
end;
RedrawProcedureType = Procedure;
DynamicRect = Object
dx,dy,w,h,anchor: Integer;
function GetRect: TSDL_Rect;
end;
const
StdBlack: TSDL_Color = ( r: 0; g: 0; b: 0 );
StdWhite: TSDL_Color = ( r:255; g:255; b:255 );
MenuItem: TSDL_Color = ( r:90; g:156; b:179 );
MenuSelect: TSDL_Color = ( r:128; g:255; b:230 );
PlayerBlue: TSDL_Color = ( r: 0; g:141; b:211 );
AllyPurple: TSDL_Color = ( r:236; g: 0; b:211 );
EnemyRed: TSDL_Color = ( r:230; g: 0; b: 0 );
NeutralGrey: TSDL_Color = ( r:150; g:150; b:150 );
DarkGrey: TSDL_Color = ( r:100; g:100; b:100 );
InfoGreen: TSDL_Color = ( r: 50; g:200; b: 0 );
InfoHiLight: TSDL_Color = ( r:100; g:250; b: 0 );
TextboxGrey: TSDL_Color = ( r:130; g:120; b:125 );
NeutralBrown: TSDL_Color = ( r:240; g:201; b: 20 );
BorderBlue: TSDL_Color = ( r: 0; g:101; b:151 );
BrightYellow: TSDL_Color = ( r:255; g:201; b: 0 );
ScreenWidth = 1280;
ScreenHeight = 720;
BigFontSize = 13;
SmallFontSize = 11;
Right_Column_Width = 220;
Dialog_Area_Height = 110;
ANC_upperleft = 0;
ANC_upper = 1;
ANC_upperright = 2;
ANC_left = 3;
ANC_middle = 4;
ANC_right = 5;
ANC_lowerleft = 6;
ANC_lower = 7;
ANC_lowerright = 8;
ZONE_Map: TSDL_Rect = ( x:10; y:10; w: ScreenWidth - Right_Column_Width - 30 ; h: ScreenHeight - Dialog_Area_Height - 20 );
ZONE_Clock: TSDL_Rect = ( x: ScreenWidth - Right_Column_Width - 10 ; y:ScreenHeight - Dialog_Area_Height - 30; w:Right_Column_Width; h:20 );
ZONE_PCInfo: TSDL_Rect = ( x: ScreenWidth - Right_Column_Width - 10 ; y:10; w:Right_Column_Width; h:150 );
ZONE_Dialog: TSDL_Rect = ( x:10; y: ScreenHeight - Dialog_Area_Height ; w: ScreenWidth - 20 ; h:Dialog_Area_Height-10 );
ZONE_TitleScreenMenu: DynamicRect = ( dx:-100; dy:50; w:200; h:100; anchor: ANC_middle );
ZONE_TitleScreenLogo: DynamicRect = ( dx:-250; dy:-190; w:500; h:215; anchor: ANC_middle );
ZONE_TitleScreenVersion: DynamicRect = ( dx:-50; dy:-25; w:100; h:20; anchor: ANC_lowerright );
ZONE_TargetInfo: DynamicRect = ( dx: -Right_Column_Width -10 ; dy:10; w:Right_Column_Width; h:150; anchor: ANC_upperright );
ZONE_TargetDistance: DynamicRect = ( dx: -Right_Column_Width -10 ; dy:176; w:Right_Column_Width; h:20; anchor: ANC_upperright );
ZONE_CharGenChar: DynamicRect = ( dx:-368; dy:-210; w: 500 ; h: 420; anchor: ANC_middle );
ZONE_CharGenMenu: DynamicRect = ( dx:148; dy:-50; w:220; h:230; anchor: ANC_middle );
ZONE_CharGenCaption: DynamicRect = ( dx:148; dy:190; w:220; h:20; anchor: ANC_middle );
ZONE_CharGenDesc: DynamicRect = ( dx:148; dy:-210; w:220; h:150; anchor: ANC_middle );
ZONE_CharGenPrompt: DynamicRect = ( dx:-150; dy:-245; w:300; h:20; anchor: ANC_middle );
ZONE_CharGenHint: DynamicRect = ( dx:-160; dy:225; w:320; h:20; anchor: ANC_middle );
ZONE_CharViewChar: DynamicRect = ( dx:-368; dy:-260; w: 500 ; h: 420; anchor: ANC_middle );
ZONE_CharViewMenu: DynamicRect = ( dx:148; dy:-100; w:220; h:230; anchor: ANC_middle );
ZONE_CharViewCaption: DynamicRect = ( dx:148; dy:140; w:220; h:20; anchor: ANC_middle );
ZONE_CharViewDesc: DynamicRect = ( dx:148; dy:-260; w:220; h:150; anchor: ANC_middle );
ZONE_TextInputPrompt: DynamicRect = ( dx:-210; dy:-51; w:420; h:16; anchor: ANC_middle );
ZONE_TextInput: DynamicRect = ( dx:-210; dy:-27; w:420; h:16; anchor: ANC_middle );
ZONE_TextInputBigBox: DynamicRect = ( dx:-220; dy:-61; w:440; h:56; anchor: ANC_middle );
ZONE_PhoneInstructions: DynamicRect = ( dx:-200; dy:15; w:400; h:16; anchor: ANC_middle );
ZONE_InteractStatus: DynamicRect = ( dx:-250; dy: -210; w: 395; h: 40; anchor: ANC_middle );
ZONE_InteractMsg: DynamicRect = ( dx: -250; dy:-120; w:395; h: 110; anchor: ANC_middle );
ZONE_InteractMenu: DynamicRect = ( dx: -250; dy:-5; w:500; h: 120; anchor: ANC_middle );
ZONE_InteractPhoto: DynamicRect = ( dx: 150; dy: -185; w: 100; h: 150; anchor: ANC_middle );
ZONE_InteractInfo: DynamicRect = ( dx: -250; dy:-165; w:395; h:40; anchor: ANC_middle );
ZONE_InteractTotal: DynamicRect = ( dx: -255; dy: -215; w: 510; h: 335; anchor: ANC_middle );
ZONE_Menu: DynamicRect = ( dx: 10; dy:10; w:Right_Column_Width; h:205; anchor: ANC_upperleft );
ZONE_Menu1: DynamicRect = ( dx: 10; dy:10; w:Right_Column_Width; h:100; anchor: ANC_upperleft );
ZONE_Menu2: DynamicRect = ( dx: 10; dy:126; w:Right_Column_Width; h:80; anchor: ANC_upperleft );
ZONE_MemoText: DynamicRect = ( dx:-175; dy:-150; w:350; h:200; anchor: ANC_middle );
ZONE_MemoMenu: DynamicRect = ( dx:-175; dy:55; w:350; h:50; anchor: ANC_middle );
ZONE_MemoTotal: DynamicRect = ( dx:-180; dy:-155; w:360; h:265; anchor: ANC_middle );
ZONE_CenterMenu: DynamicRect = ( dx:-120; dy:-155; w:240; h:210; anchor: ANC_middle );
ZONE_FHQTitle: DynamicRect = ( dx:-165; dy:-255; w:300; h:20; anchor: ANC_middle );
ZONE_FHQMenu: DynamicRect = ( dx:-280; dy:-210; w:292; h:340; anchor: ANC_middle );
ZONE_FHQInfo: DynamicRect = (dx:30; dY:-210; W: 250; H: 340; anchor: ANC_middle);
ZONE_FHQMenu1: DynamicRect = ( dx:-280; dy:-210; w:292; h:180; anchor: ANC_middle );
ZONE_FHQMenu2: DynamicRect = ( dx:-280; dy: -15; w:292; h:145; anchor: ANC_middle );
ZONE_BPTotal: DynamicRect = (dx:-285; dY:-215; W: 570; H: 350; anchor: ANC_middle);
ZONE_BPHeader: DynamicRect = (dx:-280; dY:-210; W: 292; H: 40; anchor: ANC_middle);
ZONE_EqpMenu: DynamicRect = ( dx:-280; dy:-165; w:292; h:100; anchor: ANC_middle );
ZONE_InvMenu: DynamicRect = ( dx:-280; dy:-60; w:292; h:145; anchor: ANC_middle );
ZONE_BPInstructions: DynamicRect = (dx:-280; dY:90; W: 292; H: 40; anchor: ANC_middle);
ZONE_BPInfo: DynamicRect = (dx:30; dY:-210; W: 250; H: 340; anchor: ANC_middle);
ZONE_ShopNPCName: DynamicRect = ( dx:-330; dy: -230; w: 100; h: 32; anchor: ANC_middle );
ZONE_ShopNPCPortrait: DynamicRect = ( dx:-330; dy: -210; w: 100; h: 150; anchor: ANC_middle );
ZONE_ShopText: DynamicRect = ( dx:-225; dy: -230; w: 287; h: 170; anchor: ANC_middle );
ZONE_ShopPCName: DynamicRect = ( dx:-330; dy: -30; w: 100; h: 32; anchor: ANC_middle );
ZONE_ShopPCPortrait: DynamicRect = ( dx:-330; dy: -10; w: 100; h: 150; anchor: ANC_middle );
ZONE_ShopMenu: DynamicRect = ( dx:-225; dy: -30; w: 287; h: 170; anchor: ANC_middle );
ZONE_ShopInfo: DynamicRect = (dx:85; dY:-225; W: 250; H: 340; anchor: ANC_middle);
ZONE_ShopCash: DynamicRect = ( dx:135; dy: 130; w: 150; h: 16; anchor: ANC_middle );
ZONE_ShopTop: DynamicRect = ( dx:-335; dy: -235; w: 402; h: 180; anchor: ANC_middle );
ZONE_ShopBottom: DynamicRect = ( dx:-335; dy: -35; w: 402; h: 180; anchor: ANC_middle );
ZONE_MoreText: DynamicRect = ( dx:-350; dy:-270; w: 700 ; h: 385; anchor: ANC_middle );
ZONE_MorePrompt: DynamicRect = ( dx:-300; dy: 130 ; w:600; h:30; anchor: ANC_middle );
ZONE_YesNoTotal: DynamicRect = ( dx:-180; dy:-155; w:360; h:265; anchor: ANC_middle );
ZONE_YesNoPrompt: DynamicRect = ( dx:-175; dy:-150; w:350; h:200; anchor: ANC_middle );
ZONE_YesNoMenu: DynamicRect = ( dx:-175; dy:55; w:350; h:50; anchor: ANC_middle );
Console_History_Length = 240;
GH_REPEAT_DELAY = 200;
GH_REPEAT_INTERVAL = 50;
{Color set constants.}
CS_Clothing = 1;
CS_Skin = 2;
CS_Hair = 3;
CS_PrimaryMecha = 4;
CS_SecondaryMecha = 5;
CS_Detailing = 6;
var
Game_Screen: PSDL_Surface;
Mouse_Pointer: PSDL_Surface;
Game_Font,Info_Font: PTTF_Font;
Game_Sprites,Cursor_Sprite: SensibleSpritePtr;
Text_Messages: SAttPtr;
Console_History: SAttPtr;
Mouse_X, Mouse_Y: LongInt; { Current mouse position. }
Animation_Phase: Integer;
Last_Clock_Update: UInt32;
MasterColorList: SAttPtr;
Music_List: SAttPtr;
{ MyMusic: P_Mix_Music;}
Function RandomColorString( ColorSet: Integer ): String;
Procedure GHFlip;
Procedure DisposeSpriteList(var LList: SensibleSpritePtr);
Procedure RemoveSprite(var LMember: SensibleSpritePtr);
Procedure CleanSpriteList;
procedure DrawSprite( Spr: SensibleSpritePtr; MyDest: TSDL_Rect; Frame: Integer );
procedure DrawAlphaSprite( Spr: SensibleSpritePtr; MyDest: TSDL_Rect; Frame: Integer );
Function ConfirmSprite( Name: String; const Color: String; W,H: Integer ): SensibleSpritePtr;
Procedure FillRectWithSprite( MyRect: TSDL_Rect; MySprite: SensibleSpritePtr; MyFrame,OffX,OffY: Integer );
Procedure FillRectWithSprite( MyRect: TSDL_Rect; MySprite: SensibleSpritePtr; MyFrame: Integer );
function RPGKey: Char;
Procedure ClrZone( var Z: TSDL_Rect );
Procedure ClrScreen;
Function PrettyPrint( msg: string; Width: Integer; var FG: TSDL_Color; DoCenter: Boolean; MyFont: PTTF_Font ): PSDL_Surface;
Procedure QuickText( const msg: String; MyDest: TSDL_Rect; Color: TSDL_Color );
Procedure QuickTinyText( const msg: String; MyDest: TSDL_Rect; Color: TSDL_Color );
Procedure CMessage( const msg: String; Z: TSDL_Rect; C: TSDL_Color );
Procedure GameMSG( const msg: string; Z: TSDL_Rect; var C: TSDL_Color );
Procedure GameMSG( const msg: string; Z: TSDL_Rect; var C: TSDL_Color; MyFont: PTTF_FONT );
Function DirKey( ReDrawer: RedrawProcedureType ): Integer;
Procedure EndOfGameMoreKey;
Function TextLength( F: PTTF_Font; const msg: String ): LongInt;
Procedure RedrawConsole;
Procedure DialogMSG(msg: string); {can't const}
Function GetStringFromUser( const Prompt: String; ReDrawer: RedrawProcedureType ): String;
Function MsgString( const MsgLabel: String ): String;
Function MoreHighFirstLine( LList: SAttPtr ): Integer;
Procedure MoreText( LList: SAttPtr; FirstLine: Integer; ReDrawer: RedrawProcedureType );
Procedure ClearExtendedBorder( Dest: TSDL_Rect );
Procedure InfoBox( MyBox: TSDL_Rect );
Procedure DrawBPBorder;
Procedure DrawCharGenBorder;
Procedure SetupCombatDisplay;
Procedure SetupHQDisplay;
Procedure SetupFactoryDisplay;
Procedure SetupYesNoDisplay;
Procedure SetupInteractDisplay( TeamColor: TSDL_Color );
Procedure SetupMemoDisplay;
Procedure SetupWizardDisplay();
implementation
const
WindowName: PChar = 'GearHead Arena SDL Version';
IconName: PChar = 'GearHead';
var
Infobox_Border,Infobox_Backdrop: SensibleSpritePtr;
Function DynamicRect.GetRect: TSDL_Rect;
{ Return the TSDL_Rect described by this DynamicRect, given the current }
{ screen size. }
var
MyRect: TSDL_Rect;
begin
MyRect.W := Self.W;
MyRect.H := Self.H;
MyRect.X := Game_Screen^.W * (self.anchor mod 3) div 2 + Self.DX;
MyRect.Y := Game_Screen^.H * (self.anchor div 3) div 2 + Self.DY;
GetRect := MyRect;
end;
Function RandomColorString( ColorSet: Integer ): String;
{ Select a random color string belonging to the provided color set. }
var
C,Candidates: SAttPtr;
it: String;
begin
Candidates := Nil;
C := MasterColorList;
while C <> Nil do begin
if ( Length( C^.Info ) > 6 ) and ( C^.Info[ ColorSet ] = '+' ) then begin
StoreSAtt( Candidates, RetrieveAString( C^.Info ) );
end;
C := C^.Next;
end;
if Candidates <> Nil then begin
it := SelectRandomSAtt( Candidates )^.Info;
end else begin
it := '100 100 100';
end;
DisposeSAtt( Candidates );
RandomColorString := it;
end;
Procedure GHFlip;
{ Copy from the GH screen bitmap to the actual screen. }
var
MyDest: TSDL_Rect;
begin
SDL_PumpEvents;
SDL_GetMouseState( Mouse_X , Mouse_Y );
MyDest.X := Mouse_X;
MyDest.Y := Mouse_Y;
{ If a mouse pointer is defined, draw it. }
if Mouse_Pointer <> Nil then begin
SDL_BlitSurface( Mouse_Pointer , Nil , Game_Screen , @MyDest );
end;
SDL_Flip( game_Screen );
end;
Function ScaleColorValue( V , I: Integer ): Byte;
{ Scale a color value. }
begin
V := ( V * I ) div 200;
if V > 255 then V := 255;
ScaleColorValue := V;
end;
Function MakeSwapBitmap( MyImage: PSDL_Surface; RSwap,YSwap,GSwap: PSDL_Color ): PSDL_Surface;
{ Given a bitmap, create an 8-bit copy with pure colors. }
{ 0 : Transparent (0,0,255) }
{ 1 - 63 : Grey Scale }
{ 64 - 127 : Pure Red }
{ 128 - 191 : Pure Yellow }
{ 192 - 255 : Pure Green }
{ Then, swap those colors out for the requested colors. }
var
MyPal: Array [0..255] of TSDL_Color;
T: Integer;
MyImage2: PSDL_Surface;
begin
{ Initialize the palette. }
for t := 1 to 64 do begin
MyPal[ T - 1 ].r := ( t * 4 ) - 1;
MyPal[ T - 1 ].g := ( t * 4 ) - 1;
MyPal[ T - 1 ].b := ( t * 4 ) - 1;
MyPal[ T + 63 ].r := ( t * 4 ) - 1;
MyPal[ T + 63 ].g := 0;
MyPal[ T + 63 ].b := 0;
MyPal[ T + 127 ].r := ( t * 4 ) - 1;
MyPal[ T + 127 ].g := ( t * 4 ) - 1;
MyPal[ T + 127 ].b := 0;
MyPal[ T + 191 ].r := 0;
MyPal[ T + 191 ].g := ( t * 4 ) - 1;
MyPal[ T + 191 ].b := 0;
end;
MyPal[ 0 ].r := 0;
MyPal[ 0 ].g := 0;
MyPal[ 0 ].b := 255;
{ Create replacement surface. }
MyImage2 := SDL_CreateRGBSurface( SDL_SWSURFACE , MyImage^.W , MyImage^.H , 8 , 0 , 0 , 0 , 0 );
SDL_SetPalette( MyImage2 , SDL_LOGPAL or SDL_PHYSPAL , MyPal , 0 , 256 );
SDL_FillRect( MyImage2 , Nil , SDL_MapRGB( MyImage2^.Format , 0 , 0 , 255 ) );
SDL_SetColorKey( MyImage2 , SDL_SRCCOLORKEY or SDL_RLEACCEL , SDL_MapRGB( MyImage2^.Format , 0 , 0, 255 ) );
{ Blit from the original to the copy. }
SDL_BlitSurface( MyImage , Nil , MyImage2 , Nil );
{ Redefine the palette. }
for t := 1 to 64 do begin
MyPal[ T + 63 ].r := ScaleColorValue( RSwap^.R , t * 4 );
MyPal[ T + 63 ].g := ScaleColorValue( RSwap^.G , t * 4 );
MyPal[ T + 63 ].b := ScaleColorValue( RSwap^.B , t * 4 );
MyPal[ T + 127 ].r := ScaleColorValue( YSwap^.R , t * 4 );
MyPal[ T + 127 ].g := ScaleColorValue( YSwap^.G , t * 4 );
MyPal[ T + 127 ].b := ScaleColorValue( YSwap^.B , t * 4 );
MyPal[ T + 191 ].r := ScaleColorValue( GSwap^.R , t * 4 );
MyPal[ T + 191 ].g := ScaleColorValue( GSwap^.G , t * 4 );
MyPal[ T + 191 ].b := ScaleColorValue( GSwap^.B , t * 4 );
end;
SDL_SetPalette( MyImage2 , SDL_LOGPAL or SDL_PHYSPAL , MyPal , 0 , 256 );
MakeSwapBitmap := MyImage2;
end;
Procedure RedefinePalette( MyImage: PSDL_Surface; RSwap,YSwap,GSwap: PSDL_Color );
{ For a paletted image, redefine the bitmap. }
var
MyPal: Array [0..255] of TSDL_Color;
T: Integer;
begin
{ Redefine the palette. }
for t := 1 to 64 do begin
MyPal[ T - 1 ].r := ( t * 4 ) - 1;
MyPal[ T - 1 ].g := ( t * 4 ) - 1;
MyPal[ T - 1 ].b := ( t * 4 ) - 1;
MyPal[ T + 63 ].r := ScaleColorValue( RSwap^.R , t * 4 );
MyPal[ T + 63 ].g := ScaleColorValue( RSwap^.G , t * 4 );
MyPal[ T + 63 ].b := ScaleColorValue( RSwap^.B , t * 4 );
MyPal[ T + 127 ].r := ScaleColorValue( YSwap^.R , t * 4 );
MyPal[ T + 127 ].g := ScaleColorValue( YSwap^.G , t * 4 );
MyPal[ T + 127 ].b := ScaleColorValue( YSwap^.B , t * 4 );
MyPal[ T + 191 ].r := ScaleColorValue( GSwap^.R , t * 4 );
MyPal[ T + 191 ].g := ScaleColorValue( GSwap^.G , t * 4 );
MyPal[ T + 191 ].b := ScaleColorValue( GSwap^.B , t * 4 );
end;
SDL_SetPalette( MyImage , SDL_LOGPAL or SDL_PHYSPAL , MyPal , 0 , 256 );
end;
Procedure GenerateColor( var ColorString: String; var ColorStruct: TSDL_Color );
{ Generate the color from the string. }
var
n: Integer;
begin
n := ExtractValue( ColorString );
if n > 255 then n := 255;
ColorStruct.R := n;
n := ExtractValue( ColorString );
if n > 255 then n := 255;
ColorStruct.G := n;
n := ExtractValue( ColorString );
if n > 255 then n := 255;
ColorStruct.B := n;
end;
Function LocateSpriteByNameColor( const name,color: String ): SensibleSpritePtr;
{ Locate the sprite which matches the name provided. }
{ If no such sprite exists, return Nil. }
var
S: SensibleSpritePtr;
begin
S := Game_Sprites;
while ( S <> Nil ) and ( ( S^.Name <> name ) or ( S^.Color <> Color ) ) do begin
S := S^.Next;
end;
LocateSpriteByNameColor := S;
end;
Function NewSprite: SensibleSpritePtr;
{ Add an empty sprite description to the list. }
var
it: SensibleSpritePtr;
begin
New(it);
if it = Nil then exit( Nil );
{Initialize values.}
it^.Next := Game_Sprites;
it^.Color := '';
Game_Sprites := it;
NewSprite := it;
end;
Function AddSprite( name, color: String; W,H: Integer ): SensibleSpritePtr;
{ Add a new element to the Sprite List. Load the image for this sprite }
{ from disk, if possible. }
var
fname: PChar;
it: SensibleSpritePtr;
tmp: PSDL_Surface;
RSwap,YSwap,GSwap: TSDL_Color;
begin
{Allocate memory for our new element.}
it := NewSprite;
if it = Nil then Exit( Nil );
it^.Name := Name;
it^.Color := Color;
it^.W := W;
it^.H := H;
name := FSearch( name , Graphics_Directory );
if name <> '' then begin
fname := QuickPCopy( name );
{ Attempt to load the image. }
it^.Img := IMG_Load( fname );
if it^.Img <> Nil then begin
{ Set transparency color. }
SDL_SetColorKey( it^.Img , SDL_SRCCOLORKEY or SDL_RLEACCEL , SDL_MapRGB( it^.Img^.Format , 0 , 0, 255 ) );
{ If a color swap has been specified, handle that here. }
if Color <> '' then begin
GenerateColor( Color , RSwap );
GenerateColor( Color , YSwap );
GenerateColor( Color , GSwap );
if UseAdvancedColoring and ( it^.Img^.format^.palette <> Nil ) then begin
RedefinePalette( it^.Img , @RSwap , @YSwap , @GSwap );
end else begin
tmp := MakeSwapBitmap( it^.Img , @RSwap , @YSwap , @GSwap );
SDL_FreeSurface( it^.Img );
it^.img := tmp;
end;
end;
{ Convert to the screen mode. }
{ This will make blitting far quicker. }
tmp := SDL_ConvertSurface( it^.Img , Game_Screen^.Format , SDL_SRCCOLORKEY );
SDL_FreeSurface( it^.Img );
it^.Img := TMP;
end;
Dispose( fname );
end else begin
it^.Img := Nil;
end;
{Return a pointer to the new element.}
AddSprite := it;
end;
Procedure DisposeSpriteList(var LList: SensibleSpritePtr);
{Dispose of the list, freeing all associated system resources.}
var
LTemp: SensibleSpritePtr;
begin
while LList <> Nil do begin
LTemp := LList^.Next;
if LList^.Img <> Nil then SDL_FreeSurface( LList^.Img );
Dispose(LList);
LList := LTemp;
end;
end;
Procedure RemoveSprite(var LMember: SensibleSpritePtr);
{Locate and extract member LMember from list LList.}
{Then, dispose of LMember.}
var
a,b: SensibleSpritePtr;
begin
{Initialize A and B}
B := Game_Sprites;
A := Nil;
{Locate LMember in the list. A will thereafter be either Nil,}
{if LMember if first in the list, or it will be equal to the}
{element directly preceding LMember.}
while (B <> LMember) and (B <> Nil) do begin
A := B;
B := B^.next;
end;
if B = Nil then begin
{Major FUBAR. The member we were trying to remove can't}
{be found in the list.}
writeln('ERROR- RemoveLink asked to remove a link that doesnt exist.');
end
else if A = Nil then begin
{There's no element before the one we want to remove,}
{i.e. it's the first one in the list.}
Game_Sprites := B^.Next;
B^.Next := Nil;
DisposeSpriteList(B);
end
else begin
{We found the attribute we want to delete and have another}
{one standing before it in line. Go to work.}
A^.next := B^.next;
B^.Next := Nil;
DisposeSpriteList(B);
end;
end;
Procedure CleanSpriteList;
{ Go through the sprite list and remove those sprites we aren't likely to }
{ need immediately... i.e., erase those ones which have a COLOR string defined. }
var
S,S2: SensibleSpritePtr;
begin
S := Game_Sprites;
while S <> Nil do begin
S2 := S^.Next;
if ( S^.Color <> '' ) or ( S^.img = Nil ) then begin
RemoveSprite( S );
end;
S := S2;
end;
end;
Procedure DrawAnimImage( Image: PSDL_Surface; W,H,Frame: Integer; var MyDest: TSDL_Rect );
{ This procedure is modeled after the command from Blitz Basic. }
var
MySource: TSDL_Rect;
begin
MySource.W := W;
MySource.H := H;
if W > Image^.W then W := Image^.W;
MySource.X := ( Frame mod ( Image^.W div W ) ) * W;
MySource.Y := ( Frame div ( Image^.W div W ) ) * H;
SDL_BlitSurface( Image , @MySource , Game_Screen , @MyDest );
end;
procedure DrawSprite( Spr: SensibleSpritePtr; MyDest: TSDL_Rect; Frame: Integer );
{ Draw a sensible sprite. }
begin
{ First make sure that we have some valid sprite data... }
if ( Spr <> Nil ) and ( Spr^.Img <> Nil ) then begin
{ All the info checks out. Print it. }
DrawAnimImage( Spr^.Img , Spr^.W , Spr^.H , Frame , MyDest );
end;
end;
procedure DrawAlphaSprite( Spr: SensibleSpritePtr; MyDest: TSDL_Rect; Frame: Integer );
{ Draw a sensible sprite. }
begin
{ First make sure that we have some valid sprite data... }
if ( Spr <> Nil ) and ( Spr^.Img <> Nil ) then begin
{ All the info checks out. Print it. }
SDL_SetAlpha( Spr^.Img , SDL_SRCAlpha , Alpha_Level );
DrawAnimImage( Spr^.Img , Spr^.W , Spr^.H , Frame , MyDest );
SDL_SetAlpha( Spr^.Img , SDL_SRCAlpha , SDL_Alpha_Opaque );
end;
end;
Function ConfirmSprite( Name: String; const Color: String; W,H: Integer ): SensibleSpritePtr;
{ Try to locate the requested sprite in the requested color. If the sprite }
{ is already loaded, then return its address. If not, load it and color it. }
var
S: SensibleSpritePtr;
begin
{ First, find the sprite. If by some strange chance it hasn't been }
{ loaded yet, load it now. }
S := LocateSpriteByNameColor( Name , Color );
if S = Nil then S := AddSprite( Name , Color , W , H );
{ Set the width and height fields. }
S^.W := W;
S^.H := H;
ConfirmSprite := S;
end;
function RPGKey: Char;
{ Read a readable key from the keyboard and return its ASCII value. }
var
a: String;
event : TSDL_Event;
m2: PChar;
width,height: Integer;
pmsg: PChar;
begin
a := '';
repeat
{ Wait for events. }
if SDL_PollEvent( @event ) = 1 then begin
{ See if this event is a keyboard one... }
if event.type_ = SDL_KEYDOWN then begin
{ Check to see if it was an ASCII character we received. }
case event.key.keysym.sym of
SDLK_F1: begin
pmsg := QuickPCopy( Config_Directory + replacehash('Demo#.bmp',Bstr(animation_phase)) );
SDL_SaveBmp( Game_Screen , pmsg );
Dispose( pmsg );
end;
SDLK_Up,SDLK_KP8: a := RPK_Up;
SDLK_Down,SDLK_KP2: a := RPK_Down;
SDLK_Left,SDLK_KP4: a := RPK_Left;
SDLK_Right,SDLK_KP6: a := RPK_Right;
SDLK_KP7: a := RPK_UpLeft;
SDLK_KP9: a := RPK_UpRight;
SDLK_KP1: a := RPK_DownLeft;
SDLK_KP3: a := RPK_DownRight;
SDLK_Backspace: a := #8;
SDLK_KP_Enter: a := #10;
SDLK_KP5: a := '5';
else
if( event.key.keysym.unicode < $80 ) and ( event.key.keysym.unicode > 0 ) then begin
a := Char( event.key.keysym.unicode );
end;
end;
end else if ( event.type_ = SDL_MOUSEButtonDown ) then begin
{ Return a mousebutton event. }
if event.button.button = SDL_BUTTON_LEFT then begin
a := RPK_MouseButton;
end else if event.button.button = SDL_BUTTON_RIGHT then begin
a := RPK_RightButton;
end;
end else if event.type_ = SDL_VIDEORESIZE then begin
width := event.resize.w;
if width < 800 then width := 800;
height := event.resize.h;
if height < 600 then height := 600;
Game_Screen := SDL_SetVideoMode(width, height, 0, SDL_HWSURFACE or SDL_DoubleBuf or SDL_RESIZABLE );
end;
end else begin
if SDL_GetTicks < ( Last_Clock_Update + 20 ) then SDL_Delay( Last_Clock_Update + 30 - SDL_GetTicks );
Last_Clock_Update := SDL_GetTicks + 30;
Animation_Phase := ( Animation_Phase + 1 ) mod 6000;
a := RPK_TimeEvent;
end;
{ Keep going until either a character is found, or an error is reported. }
until ( a <> '' );
{ Possibly load music now. }
{ if ( Music_List <> Nil ) and ( Mix_PlayingMusic() = 0 ) then begin
if MyMusic <> Nil then MIX_FreeMusic( MyMusic );
m2 := QuickPCopy( SelectRandomSAtt( Music_List )^.info );
MyMusic := MIX_LoadMus( m2 );
Dispose( m2 );
Mix_PlayMusic( MyMusic , 1 );
end;}
if a <> '' then RPGKey := a[1]
else RPGKey := 'Z';
end;
Procedure ClrZone( var Z: TSDL_Rect );
{ Clear the specified screen zone. }
begin
SDL_FillRect( game_screen , @Z , SDL_MapRGB( Game_Screen^.Format , 0 , 0 , 0 ) );
end;
Procedure ClrScreen;
{ Clear the specified screen zone. }
begin
SDL_FillRect( game_screen , Nil , SDL_MapRGB( Game_Screen^.Format , 0 , 0 , 0 ) );
end;
Function TextLength( F: PTTF_Font; const msg: String ): LongInt;
{ Determine how long "msg" will be using the default "game_font". }
var
pmsg: PChar; { Gotta convert to pchar, pain in the ass... }
W,Y: LongInt; { W means width I guess... Y is anyone's guess. Height? }
begin
{ Convert the string to a pchar. }
pmsg := QuickPCopy( msg );
{ Call the alleged size calculation function. }
TTF_SizeText( F , pmsg , W , Y );
{ get rid of the PChar, since it's served its usefulness. }
Dispose( pmsg );
TextLength := W;
end;
Procedure GetNextLine( var TheLine , msg , NextWord: String; Width: Integer; MyFont: PTTF_Font );
{ Get a line of text of maximum width "Width". }
var
LC: Boolean; { Loop Condition. So I wasn't very creative when I named it, so what? }
begin
{ Loop condition starts out as TRUE. }
LC := True;
{ Start building the line. }
repeat
NextWord := ExtractWord( Msg );
if TextLength( MyFont , THEline + ' ' + NextWord) < Width then
THEline := THEline + ' ' + NextWord
else
LC := False;
until (not LC) or (NextWord = '') or ( TheLine[Length(TheLine)] = #13 );
{ If the line ended due to a line break, deal with it. }
if ( TheLine[Length(TheLine)] = #13 ) then begin
{ Display the line break as a space. }
TheLine[Length(TheLine)] := ' ';
NextWord := ExtractWord( msg );
end;
end;
{Can't const}
Function PrettyPrint( msg: string; Width: Integer; var FG: TSDL_Color; DoCenter: Boolean; MyFont: PTTF_Font ): PSDL_Surface;
{ Create a SDL_Surface containing all the text within "msg" formatted }
{ in lines of no longer than "width" pixels. Sound simple? Mostly just }
{ tedious, I'm afraid. }
var
SList,SA: SAttPtr;
S_Total,S_Temp: PSDL_Surface;
MyDest: SDL_Rect;
pline: PChar;
NextWord: String;
THELine: String; {The line under construction.}
begin
{ CLean up the message a bit. }
DeleteWhiteSpace( msg );
if msg = '' then Exit( Nil );
{THELine = The first word in this iteration}
THELine := ExtractWord( msg );
NextWord := '';
SList := Nil;
{Start the main processing loop.}
while TheLine <> '' do begin
GetNextLine( TheLine , msg , NextWord , Width, MyFont );
{ Output the line. }
{ Next append it to whatever has already been created. }
StoreSAtt( SList , TheLine );
{ Prepare for the next iteration. }
TheLine := NextWord;
end; { while TheLine <> '' }
{ Create a bitmap for the message. }
if SList <> Nil then begin
{ Create a big bitmap to hold everything. }
{ S_Total := SDL_CreateRGBSurface( SDL_SWSURFACE , width , TTF_FontLineSkip( MyFont ) * NumSAtts( SList ) , 16 , 0 , 0 , 0 , 0 );
} S_Total := SDL_CreateRGBSurface( SDL_SWSURFACE , width , TTF_FontLineSkip( MyFont ) * NumSAtts( SList ) , 32 , $FF000000 , $00FF0000 , $0000FF00 , $000000FF );
MyDest.X := 0;
MyDest.Y := 0;
{ Add each stored string to the bitmap. }
SA := SList;
while SA <> Nil do begin
pline := QuickPCopy( SA^.Info );
S_Temp := TTF_RenderText_Solid( MyFont , pline , fg );
{$IFDEF LINUX}
SDL_SetColorKey( S_Temp , SDL_SRCCOLORKEY , SDL_MapRGB( S_Temp^.Format , 0 , 0, 0 ) );
{$ENDIF}
Dispose( pline );
{ We may or may not be required to do centering of the text. }
if DoCenter then begin
MyDest.X := ( Width - TextLength( MyFont , SA^.Info ) ) div 2;
end else begin
MyDest.X := 0;
end;
SDL_BlitSurface( S_Temp , Nil , S_Total , @MyDest );
SDL_FreeSurface( S_Temp );
MyDest.Y := MyDest.Y + TTF_FontLineSkip( MyFont );
SA := SA^.Next;
end;
DisposeSAtt( SList );
end else begin
S_Total := Nil;
end;
PrettyPrint := S_Total;
end;
Procedure QuickText( const msg: String; MyDest: TSDL_Rect; Color: TSDL_Color );
{ Quickly draw some text to the screen, without worrying about }
{ line-splitting or justification or anything. }
var
pline: PChar;
MyText: PSDL_Surface;
begin
pline := QuickPCopy( msg );
MyText := TTF_RenderText_Solid( game_font , pline , Color );
{$IFDEF LINUX}
if MyText <> Nil then SDL_SetColorKey( MyText , SDL_SRCCOLORKEY , SDL_MapRGB( MyText^.Format , 0 , 0, 0 ) );
{$ENDIF}
Dispose( pline );
SDL_BlitSurface( MyText , Nil , Game_Screen , @MyDest );
SDL_FreeSurface( MyText );
end;
Procedure QuickTinyText( const msg: String; MyDest: TSDL_Rect; Color: TSDL_Color );
{ Quickly draw some text to the screen, without worrying about }
{ line-splitting or justification or anything. }
var
pline: PChar;
MyText: PSDL_Surface;
begin
pline := QuickPCopy( msg );
MyText := TTF_RenderText_Solid( info_font , pline , Color );
Dispose( pline );
MyDest.X := MyDest.X - ( MyText^.W div 2 );
SDL_BlitSurface( MyText , Nil , Game_Screen , @MyDest );
SDL_FreeSurface( MyText );
end;
Procedure CMessage( const msg: String; Z: TSDL_Rect; C: TSDL_Color );
{ Print a message to the screen, centered in the requested rect. }
{ Clear the specified zone before doing so. }
var
MyText: PSDL_Surface;
MyDest: TSDL_Rect;
begin
MyText := PrettyPrint( msg , Z.W , C , True, game_font );
if MyText <> Nil then begin
MyDest := Z;
MyDest.Y := MyDest.Y + ( Z.H - MyText^.H ) div 2;
SDL_SetClipRect( Game_Screen , @Z );
SDL_BlitSurface( MyText , Nil , Game_Screen , @MyDest );
SDL_FreeSurface( MyText );
SDL_SetClipRect( Game_Screen , Nil );
end;
end;
Procedure GameMSG( const msg: string; Z: TSDL_Rect; var C: TSDL_Color; MyFont: PTTF_FONT );
{ Print a line-justified message in the requested screen zone. }
{ Clear the specified zone before doing so. }
var
MyText: PSDL_Surface;
begin
{ClrZone( Z );}
MyText := PrettyPrint( msg , Z.W , C , False, MyFont );
if MyText <> Nil then begin
SDL_SetClipRect( Game_Screen , @Z );
SDL_BlitSurface( MyText , Nil , Game_Screen , @Z );
SDL_FreeSurface( MyText );
SDL_SetClipRect( Game_Screen , Nil );
end;
end;
Procedure GameMSG( const msg: string; Z: TSDL_Rect; var C: TSDL_Color );
{ Call the above procedure with the default font. }
begin
GameMSG( msg, Z, C, game_font );
end;
Function DirKey( ReDrawer: RedrawProcedureType ): Integer;
{ Get a direction selection from the user. If a standard direction }
{ key was selected, return its direction (0 is East, increase }
{ clockwise). See Locale.pp for details. }
{ Return -1 if no good direction was chosen. }
var
K: Char;
DK: Integer;
begin
DK := -2;
repeat
K := RPGKey;
if K = KeyMap[ KMC_East ].KCode then begin
DK := 0;
end else if K = KeyMap[ KMC_SouthEast ].KCode then begin
DK := 1;
end else if K = KeyMap[ KMC_South ].KCode then begin
DK := 2;
end else if K = KeyMap[ KMC_SouthWest ].KCode then begin
DK := 3;
end else if K = KeyMap[ KMC_West ].KCode then begin
DK := 4;
end else if K = KeyMap[ KMC_NorthWest ].KCode then begin
DK := 5;
end else if K = KeyMap[ KMC_North ].KCode then begin
DK := 6;
end else if K = KeyMap[ KMC_NorthEast ].KCode then begin
DK := 7;
end else if K = RPK_TimeEvent then begin
ReDrawer;
GHFlip();
end else begin
DK := -1;
end;
until DK <> -2;
DirKey := DK;
end;
Procedure EndOfGameMoreKey;
{ The end of the game has been reached. Wait for the user to }
{ press either the space bar or the ESC key. }
var
A: Char;
begin
{ Keep reading keypresses until either a space or an ESC/Backspace is found. }
repeat
A := RPGKey;
until ( A = ' ' ) or ( A = #27 ) or ( A = #8 );
end;
Procedure RedrawConsole;
{ Redraw the console. Yay! }
var
SL: SAttPtr;
MyDest: TSDL_Rect;
NumLines,LineNum: Integer;
begin
SDL_SetClipRect( Game_Screen , @ZONE_Dialog );
MyDest := ZONE_Dialog;
NumLines := ( ZONE_Dialog.H div TTF_FontLineSkip( game_font ) ) + 1;
LineNum := NumLines;
SL := RetrieveSAtt( Console_History , NumSAtts( Console_History ) - NumLines + 1 );
if SL = Nil then begin
SL := Console_History;
LineNum := NumSAtts( Console_History );
end;
while LineNum > 0 do begin
{ Set the coords for this line. }