-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathi_elks.c
722 lines (573 loc) · 19.8 KB
/
i_elks.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
/*-----------------------------------------------------------------------------
*
*
* Copyright (C) 2024 Frenkel Smeijers
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
* 02111-1307, USA.
*
* DESCRIPTION:
* Code specific to ELKS
*
*-----------------------------------------------------------------------------*/
#include <stdarg.h>
#include <stdint.h>
#include <sys/time.h>
#include "compiler.h"
#include "d_main.h"
#include "i_system.h"
#include "m_random.h"
#include "r_defs.h"
#include "v_video.h"
#include "w_wad.h"
#include "globdata.h"
#define PLANEWIDTH 80
#define SCREENHEIGHT_CGA 200
extern const int16_t CENTERY;
static uint8_t __far* _s_viewwindow;
static uint8_t __far* _s_statusbar;
static uint8_t __far* videomemory_view;
static uint8_t __far* videomemory_statusbar;
static boolean isGraphicsModeSet = false;
#if defined __WATCOMC__
static void I_SetScreenMode(uint16_t mode);
#pragma aux I_SetScreenMode = \
"push si", \
"push di", \
"push bp", \
"push es", \
"cli", \
"int 0x10", \
"sti", \
"pop es", \
"pop bp", \
"pop di", \
"pop si" \
parm [ax]
#elif defined __IA16_SYS_ELKS
static void I_SetScreenMode(uint16_t mode)
{
// SI, DI, BP, ES and probably DS are to be saved
// cli and sti are used to make a proper BIOS call from ELKS
__asm__(
"push %%si;"
"push %%di;"
"push %%bp;"
"push %%es;"
"cli;"
"int $0x10;"
"sti;"
"pop %%es;"
"pop %%bp;"
"pop %%di;"
"pop %%si;"
: /* no outputs */
: "a" (mode)
: ); //list of modified registers
}
#else
#error unsupported compiler
#endif
void I_InitGraphics(void)
{
I_SetScreenMode(6);
videomemory_view = D_MK_FP(0xb800, ((PLANEWIDTH - VIEWWINDOWWIDTH) / 2) + (((SCREENHEIGHT_CGA - SCREENHEIGHT) / 2) * PLANEWIDTH) / 2 + __djgpp_conventional_base);
videomemory_statusbar = D_MK_FP(0xb800, ((PLANEWIDTH - SCREENWIDTH * 2 / 8) / 2) + (((SCREENHEIGHT_CGA - SCREENHEIGHT) / 2) * PLANEWIDTH) / 2 + VIEWWINDOWHEIGHT * PLANEWIDTH / 2 + __djgpp_conventional_base);
_s_viewwindow = Z_MallocStatic(VIEWWINDOWWIDTH * VIEWWINDOWHEIGHT);
_s_statusbar = Z_MallocStatic(SCREENWIDTH * ST_HEIGHT);
isGraphicsModeSet = true;
}
static void I_ShutdownGraphics(void)
{
if (isGraphicsModeSet)
I_SetScreenMode(3);
}
void I_SetPalette(int8_t pal)
{
UNUSED(pal);
}
#define B0 (0 << 0)
#define B1 (1 << 0)
#define B2 (3 << 0)
static const uint8_t VGA_TO_BW_LUT_0[256] =
{
B0, B0, B0, B1, B2, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0,
B2, B2, B2, B2, B2, B2, B2, B2, B1, B1, B1, B1, B1, B1, B1, B1,
B1, B1, B1, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0,
B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2,
B2, B1, B1, B1, B1, B1, B1, B1, B1, B1, B1, B0, B0, B0, B0, B0,
B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2,
B1, B1, B1, B1, B1, B1, B1, B1, B1, B1, B0, B0, B0, B0, B0, B0,
B2, B2, B2, B2, B2, B1, B1, B1, B1, B1, B1, B0, B0, B0, B0, B0,
B2, B2, B2, B2, B2, B1, B1, B1, B1, B1, B1, B1, B1, B1, B1, B1,
B1, B1, B1, B1, B1, B1, B0, B0, B1, B1, B1, B1, B1, B1, B0, B0,
B2, B2, B2, B2, B1, B1, B1, B0, B2, B2, B2, B2, B2, B2, B1, B1,
B1, B1, B1, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0,
B2, B2, B2, B2, B1, B1, B1, B0, B0, B0, B0, B0, B0, B0, B0, B0,
B2, B2, B2, B2, B2, B2, B2, B2, B2, B1, B1, B1, B1, B1, B1, B1,
B2, B2, B2, B2, B2, B2, B2, B2, B1, B1, B1, B0, B0, B0, B0, B0,
B0, B0, B0, B0, B0, B0, B0, B0, B2, B2, B2, B1, B1, B0, B0, B1
};
#undef B0
#undef B1
#undef B2
#define B0 (0 << 0)
#define B1 (2 << 0)
#define B2 (3 << 0)
static const uint8_t VGA_TO_BW_LUT_0b[256] =
{
B0, B0, B0, B1, B2, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0,
B2, B2, B2, B2, B2, B2, B2, B2, B1, B1, B1, B1, B1, B1, B1, B1,
B1, B1, B1, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0,
B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2,
B2, B1, B1, B1, B1, B1, B1, B1, B1, B1, B1, B0, B0, B0, B0, B0,
B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2,
B1, B1, B1, B1, B1, B1, B1, B1, B1, B1, B0, B0, B0, B0, B0, B0,
B2, B2, B2, B2, B2, B1, B1, B1, B1, B1, B1, B0, B0, B0, B0, B0,
B2, B2, B2, B2, B2, B1, B1, B1, B1, B1, B1, B1, B1, B1, B1, B1,
B1, B1, B1, B1, B1, B1, B0, B0, B1, B1, B1, B1, B1, B1, B0, B0,
B2, B2, B2, B2, B1, B1, B1, B0, B2, B2, B2, B2, B2, B2, B1, B1,
B1, B1, B1, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0,
B2, B2, B2, B2, B1, B1, B1, B0, B0, B0, B0, B0, B0, B0, B0, B0,
B2, B2, B2, B2, B2, B2, B2, B2, B2, B1, B1, B1, B1, B1, B1, B1,
B2, B2, B2, B2, B2, B2, B2, B2, B1, B1, B1, B0, B0, B0, B0, B0,
B0, B0, B0, B0, B0, B0, B0, B0, B2, B2, B2, B1, B1, B0, B0, B1
};
#undef B0
#undef B1
#undef B2
#define B0 (0 << 2)
#define B1 (1 << 2)
#define B2 (3 << 2)
static const uint8_t VGA_TO_BW_LUT_1[256] =
{
B0, B0, B0, B1, B2, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0,
B2, B2, B2, B2, B2, B2, B2, B2, B1, B1, B1, B1, B1, B1, B1, B1,
B1, B1, B1, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0,
B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2,
B2, B1, B1, B1, B1, B1, B1, B1, B1, B1, B1, B0, B0, B0, B0, B0,
B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2,
B1, B1, B1, B1, B1, B1, B1, B1, B1, B1, B0, B0, B0, B0, B0, B0,
B2, B2, B2, B2, B2, B1, B1, B1, B1, B1, B1, B0, B0, B0, B0, B0,
B2, B2, B2, B2, B2, B1, B1, B1, B1, B1, B1, B1, B1, B1, B1, B1,
B1, B1, B1, B1, B1, B1, B0, B0, B1, B1, B1, B1, B1, B1, B0, B0,
B2, B2, B2, B2, B1, B1, B1, B0, B2, B2, B2, B2, B2, B2, B1, B1,
B1, B1, B1, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0,
B2, B2, B2, B2, B1, B1, B1, B0, B0, B0, B0, B0, B0, B0, B0, B0,
B2, B2, B2, B2, B2, B2, B2, B2, B2, B1, B1, B1, B1, B1, B1, B1,
B2, B2, B2, B2, B2, B2, B2, B2, B1, B1, B1, B0, B0, B0, B0, B0,
B0, B0, B0, B0, B0, B0, B0, B0, B2, B2, B2, B1, B1, B0, B0, B1
};
#undef B0
#undef B1
#undef B2
#define B0 (0 << 2)
#define B1 (2 << 2)
#define B2 (3 << 2)
static const uint8_t VGA_TO_BW_LUT_1b[256] =
{
B0, B0, B0, B1, B2, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0,
B2, B2, B2, B2, B2, B2, B2, B2, B1, B1, B1, B1, B1, B1, B1, B1,
B1, B1, B1, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0,
B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2,
B2, B1, B1, B1, B1, B1, B1, B1, B1, B1, B1, B0, B0, B0, B0, B0,
B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2,
B1, B1, B1, B1, B1, B1, B1, B1, B1, B1, B0, B0, B0, B0, B0, B0,
B2, B2, B2, B2, B2, B1, B1, B1, B1, B1, B1, B0, B0, B0, B0, B0,
B2, B2, B2, B2, B2, B1, B1, B1, B1, B1, B1, B1, B1, B1, B1, B1,
B1, B1, B1, B1, B1, B1, B0, B0, B1, B1, B1, B1, B1, B1, B0, B0,
B2, B2, B2, B2, B1, B1, B1, B0, B2, B2, B2, B2, B2, B2, B1, B1,
B1, B1, B1, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0,
B2, B2, B2, B2, B1, B1, B1, B0, B0, B0, B0, B0, B0, B0, B0, B0,
B2, B2, B2, B2, B2, B2, B2, B2, B2, B1, B1, B1, B1, B1, B1, B1,
B2, B2, B2, B2, B2, B2, B2, B2, B1, B1, B1, B0, B0, B0, B0, B0,
B0, B0, B0, B0, B0, B0, B0, B0, B2, B2, B2, B1, B1, B0, B0, B1
};
#undef B0
#undef B1
#undef B2
#define B0 (0 << 4)
#define B1 (1 << 4)
#define B2 (3 << 4)
static const uint8_t VGA_TO_BW_LUT_2[256] =
{
B0, B0, B0, B1, B2, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0,
B2, B2, B2, B2, B2, B2, B2, B2, B1, B1, B1, B1, B1, B1, B1, B1,
B1, B1, B1, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0,
B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2,
B2, B1, B1, B1, B1, B1, B1, B1, B1, B1, B1, B0, B0, B0, B0, B0,
B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2,
B1, B1, B1, B1, B1, B1, B1, B1, B1, B1, B0, B0, B0, B0, B0, B0,
B2, B2, B2, B2, B2, B1, B1, B1, B1, B1, B1, B0, B0, B0, B0, B0,
B2, B2, B2, B2, B2, B1, B1, B1, B1, B1, B1, B1, B1, B1, B1, B1,
B1, B1, B1, B1, B1, B1, B0, B0, B1, B1, B1, B1, B1, B1, B0, B0,
B2, B2, B2, B2, B1, B1, B1, B0, B2, B2, B2, B2, B2, B2, B1, B1,
B1, B1, B1, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0,
B2, B2, B2, B2, B1, B1, B1, B0, B0, B0, B0, B0, B0, B0, B0, B0,
B2, B2, B2, B2, B2, B2, B2, B2, B2, B1, B1, B1, B1, B1, B1, B1,
B2, B2, B2, B2, B2, B2, B2, B2, B1, B1, B1, B0, B0, B0, B0, B0,
B0, B0, B0, B0, B0, B0, B0, B0, B2, B2, B2, B1, B1, B0, B0, B1
};
#undef B0
#undef B1
#undef B2
#define B0 (0 << 4)
#define B1 (2 << 4)
#define B2 (3 << 4)
static const uint8_t VGA_TO_BW_LUT_2b[256] =
{
B0, B0, B0, B1, B2, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0,
B2, B2, B2, B2, B2, B2, B2, B2, B1, B1, B1, B1, B1, B1, B1, B1,
B1, B1, B1, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0,
B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2,
B2, B1, B1, B1, B1, B1, B1, B1, B1, B1, B1, B0, B0, B0, B0, B0,
B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2,
B1, B1, B1, B1, B1, B1, B1, B1, B1, B1, B0, B0, B0, B0, B0, B0,
B2, B2, B2, B2, B2, B1, B1, B1, B1, B1, B1, B0, B0, B0, B0, B0,
B2, B2, B2, B2, B2, B1, B1, B1, B1, B1, B1, B1, B1, B1, B1, B1,
B1, B1, B1, B1, B1, B1, B0, B0, B1, B1, B1, B1, B1, B1, B0, B0,
B2, B2, B2, B2, B1, B1, B1, B0, B2, B2, B2, B2, B2, B2, B1, B1,
B1, B1, B1, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0,
B2, B2, B2, B2, B1, B1, B1, B0, B0, B0, B0, B0, B0, B0, B0, B0,
B2, B2, B2, B2, B2, B2, B2, B2, B2, B1, B1, B1, B1, B1, B1, B1,
B2, B2, B2, B2, B2, B2, B2, B2, B1, B1, B1, B0, B0, B0, B0, B0,
B0, B0, B0, B0, B0, B0, B0, B0, B2, B2, B2, B1, B1, B0, B0, B1
};
#undef B0
#undef B1
#undef B2
#define B0 (0 << 6)
#define B1 (1 << 6)
#define B2 (3 << 6)
static const uint8_t VGA_TO_BW_LUT_3[256] =
{
B0, B0, B0, B1, B2, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0,
B2, B2, B2, B2, B2, B2, B2, B2, B1, B1, B1, B1, B1, B1, B1, B1,
B1, B1, B1, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0,
B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2,
B2, B1, B1, B1, B1, B1, B1, B1, B1, B1, B1, B0, B0, B0, B0, B0,
B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2,
B1, B1, B1, B1, B1, B1, B1, B1, B1, B1, B0, B0, B0, B0, B0, B0,
B2, B2, B2, B2, B2, B1, B1, B1, B1, B1, B1, B0, B0, B0, B0, B0,
B2, B2, B2, B2, B2, B1, B1, B1, B1, B1, B1, B1, B1, B1, B1, B1,
B1, B1, B1, B1, B1, B1, B0, B0, B1, B1, B1, B1, B1, B1, B0, B0,
B2, B2, B2, B2, B1, B1, B1, B0, B2, B2, B2, B2, B2, B2, B1, B1,
B1, B1, B1, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0,
B2, B2, B2, B2, B1, B1, B1, B0, B0, B0, B0, B0, B0, B0, B0, B0,
B2, B2, B2, B2, B2, B2, B2, B2, B2, B1, B1, B1, B1, B1, B1, B1,
B2, B2, B2, B2, B2, B2, B2, B2, B1, B1, B1, B0, B0, B0, B0, B0,
B0, B0, B0, B0, B0, B0, B0, B0, B2, B2, B2, B1, B1, B0, B0, B1
};
#undef B0
#undef B1
#undef B2
#define B0 (0 << 6)
#define B1 (2 << 6)
#define B2 (3 << 6)
static const uint8_t VGA_TO_BW_LUT_3b[256] =
{
B0, B0, B0, B1, B2, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0,
B2, B2, B2, B2, B2, B2, B2, B2, B1, B1, B1, B1, B1, B1, B1, B1,
B1, B1, B1, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0,
B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2,
B2, B1, B1, B1, B1, B1, B1, B1, B1, B1, B1, B0, B0, B0, B0, B0,
B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2, B2,
B1, B1, B1, B1, B1, B1, B1, B1, B1, B1, B0, B0, B0, B0, B0, B0,
B2, B2, B2, B2, B2, B1, B1, B1, B1, B1, B1, B0, B0, B0, B0, B0,
B2, B2, B2, B2, B2, B1, B1, B1, B1, B1, B1, B1, B1, B1, B1, B1,
B1, B1, B1, B1, B1, B1, B0, B0, B1, B1, B1, B1, B1, B1, B0, B0,
B2, B2, B2, B2, B1, B1, B1, B0, B2, B2, B2, B2, B2, B2, B1, B1,
B1, B1, B1, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0, B0,
B2, B2, B2, B2, B1, B1, B1, B0, B0, B0, B0, B0, B0, B0, B0, B0,
B2, B2, B2, B2, B2, B2, B2, B2, B2, B1, B1, B1, B1, B1, B1, B1,
B2, B2, B2, B2, B2, B2, B2, B2, B1, B1, B1, B0, B0, B0, B0, B0,
B0, B0, B0, B0, B0, B0, B0, B0, B2, B2, B2, B1, B1, B0, B0, B1
};
#undef B0
#undef B1
#undef B2
static boolean refreshStatusBar;
void I_FinishUpdate(void)
{
// view window
uint8_t __far* src = _s_viewwindow;
uint8_t __far* dst = videomemory_view;
for (uint_fast8_t y = 0; y < VIEWWINDOWHEIGHT / 2; y++) {
_fmemcpy(dst, src, VIEWWINDOWWIDTH);
dst += 0x2000;
src += VIEWWINDOWWIDTH;
_fmemcpy(dst, src, VIEWWINDOWWIDTH);
dst -= 0x2000 - PLANEWIDTH;
src += VIEWWINDOWWIDTH;
}
// status bar
if (refreshStatusBar)
{
refreshStatusBar = false;
uint8_t __far* src = _s_statusbar;
dst = videomemory_statusbar;
for (uint_fast8_t y = 0; y < ST_HEIGHT / 2; y++) {
for (uint_fast8_t x = 0; x < (SCREENWIDTH * 2 / 8); x++) {
*dst++ = (VGA_TO_BW_LUT_3[*src++] | VGA_TO_BW_LUT_2[*src++] | VGA_TO_BW_LUT_1[*src++] | VGA_TO_BW_LUT_0[*src++]);
}
dst += 0x2000 - (SCREENWIDTH * 2 / 8);
for (uint_fast8_t x = 0; x < (SCREENWIDTH * 2 / 8); x++) {
*dst++ = (VGA_TO_BW_LUT_3b[*src++] | VGA_TO_BW_LUT_2b[*src++] | VGA_TO_BW_LUT_1b[*src++] | VGA_TO_BW_LUT_0b[*src++]);
}
dst -= 0x2000 - (PLANEWIDTH - (SCREENWIDTH * 2 / 8));
}
}
}
void R_InitColormaps(void)
{
fullcolormap = W_GetLumpByName("COLORMAP"); // Never freed
}
#define COLEXTRABITS (8 - 1)
#define COLBITS (8 + 1)
static uint8_t nearcolormap[256];
#define L_FP_OFF D_FP_OFF
static uint16_t nearcolormapoffset = 0xffff;
void R_DrawColumn(const draw_column_vars_t *dcvars)
{
int16_t count = (dcvars->yh - dcvars->yl) + 1;
// Zero length, column does not exceed a pixel.
if (count <= 0)
return;
const uint8_t __far* source = dcvars->source;
if (nearcolormapoffset != L_FP_OFF(dcvars->colormap))
{
_fmemcpy(nearcolormap, dcvars->colormap, 256);
nearcolormapoffset = L_FP_OFF(dcvars->colormap);
}
uint8_t __far* dst = _s_viewwindow + (dcvars->yl * VIEWWINDOWWIDTH) + dcvars->x;
const uint16_t fracstep = dcvars->fracstep;
uint16_t frac = (dcvars->texturemid >> COLEXTRABITS) + (dcvars->yl - CENTERY) * fracstep;
while (count--)
{
*dst = nearcolormap[source[frac>>COLBITS]];
dst += VIEWWINDOWWIDTH;
frac += fracstep;
}
}
void R_DrawColumnFlat(uint8_t col, const draw_column_vars_t *dcvars)
{
int16_t count = (dcvars->yh - dcvars->yl) + 1;
if (count <= 0)
return;
const uint8_t color1 = col;
const uint8_t color2 = (color1 << 4 | color1 >> 4);
const uint8_t colort = color1 + color2;
uint8_t color = (dcvars->yl & 1) ? color1 : color2;
uint8_t __far* dest = _s_viewwindow + (dcvars->yl * VIEWWINDOWWIDTH) + dcvars->x;
while (count--)
{
*dest = color;
dest += VIEWWINDOWWIDTH;
color = colort - color;
}
}
#define FUZZOFF (VIEWWINDOWWIDTH)
#define FUZZTABLE 50
static const int8_t fuzzoffset[FUZZTABLE] =
{
FUZZOFF,-FUZZOFF,FUZZOFF,-FUZZOFF,FUZZOFF,FUZZOFF,-FUZZOFF,
FUZZOFF,FUZZOFF,-FUZZOFF,FUZZOFF,FUZZOFF,FUZZOFF,-FUZZOFF,
FUZZOFF,FUZZOFF,FUZZOFF,-FUZZOFF,-FUZZOFF,-FUZZOFF,-FUZZOFF,
FUZZOFF,-FUZZOFF,-FUZZOFF,FUZZOFF,FUZZOFF,FUZZOFF,FUZZOFF,-FUZZOFF,
FUZZOFF,-FUZZOFF,FUZZOFF,FUZZOFF,-FUZZOFF,-FUZZOFF,FUZZOFF,
FUZZOFF,-FUZZOFF,-FUZZOFF,-FUZZOFF,-FUZZOFF,FUZZOFF,FUZZOFF,
FUZZOFF,FUZZOFF,-FUZZOFF,FUZZOFF,FUZZOFF,-FUZZOFF,FUZZOFF
};
void R_DrawFuzzColumn(const draw_column_vars_t *dcvars)
{
int16_t dc_yl = dcvars->yl;
int16_t dc_yh = dcvars->yh;
// Adjust borders. Low...
if (dc_yl <= 0)
dc_yl = 1;
// .. and high.
if (dc_yh >= VIEWWINDOWHEIGHT - 1)
dc_yh = VIEWWINDOWHEIGHT - 2;
int16_t count = (dc_yh - dc_yl) + 1;
// Zero length, column does not exceed a pixel.
if (count <= 0)
return;
if (nearcolormapoffset != L_FP_OFF(&fullcolormap[6 * 256]))
{
_fmemcpy(nearcolormap, &fullcolormap[6 * 256], 256);
nearcolormapoffset = L_FP_OFF(&fullcolormap[6 * 256]);
}
uint8_t __far* dest = _s_viewwindow + (dc_yl * VIEWWINDOWWIDTH) + dcvars->x;
static int16_t fuzzpos = 0;
do
{
*dest = nearcolormap[dest[fuzzoffset[fuzzpos]]];
dest += VIEWWINDOWWIDTH;
fuzzpos++;
if (fuzzpos >= FUZZTABLE)
fuzzpos = 0;
} while(--count);
}
void V_DrawRaw(int16_t num, uint16_t offset)
{
refreshStatusBar = true;
const uint8_t __far* lump = W_TryGetLumpByNum(num);
if (lump != NULL)
{
uint16_t lumpLength = W_LumpLength(num);
_fmemcpy(&_s_statusbar[offset - (SCREENHEIGHT - ST_HEIGHT) * SCREENWIDTH], lump, lumpLength);
Z_ChangeTagToCache(lump);
}
else
W_ReadLumpByNum(num, &_s_statusbar[offset - (SCREENHEIGHT - ST_HEIGHT) * SCREENWIDTH]);
}
void ST_Drawer(void)
{
if (ST_NeedUpdate())
ST_doRefresh();
}
void V_DrawPatchNotScaled(int16_t x, int16_t y, const patch_t __far* patch)
{
y -= patch->topoffset;
x -= patch->leftoffset;
byte __far* desttop = _s_statusbar + (y * SCREENWIDTH) + x - (SCREENHEIGHT - ST_HEIGHT) * SCREENWIDTH;
int16_t width = patch->width;
for (int16_t col = 0; col < width; col++, desttop++)
{
const column_t __far* column = (const column_t __far*)((const byte __far*)patch + (uint16_t)patch->columnofs[col]);
// step through the posts in a column
while (column->topdelta != 0xff)
{
const byte __far* source = (const byte __far*)column + 3;
byte __far* dest = desttop + (column->topdelta * SCREENWIDTH);
uint16_t count = column->length;
while (count--)
{
*dest = *source++;
dest += SCREENWIDTH;
}
column = (const column_t __far*)((const byte __far*)column + column->length + 4);
}
}
}
static segment_t I_Malloc(uint32_t initialsizetotry, uint32_t *size)
{
uint32_t paragraphs = initialsizetotry / PARAGRAPH_SIZE;
uint8_t __far* ptr = fmemalloc(paragraphs * PARAGRAPH_SIZE);
while (paragraphs != 0 && ptr == NULL)
{
paragraphs--;
ptr = fmemalloc(paragraphs * PARAGRAPH_SIZE);
}
if (paragraphs == 0)
{
*size = 0;
return 0;
}
else
{
*size = paragraphs * PARAGRAPH_SIZE;
segment_t segment = D_FP_SEG(ptr);
printf("%6ld bytes allocated at 0x%4x\n", *size, segment);
return segment;
}
}
static uint32_t blocksize[2];
static segment_t blocksegment[2];
segment_t I_ZoneBase(uint32_t *size)
{
blocksegment[0] = I_Malloc(550 * 1024L, &blocksize[0]);
blocksegment[1] = I_Malloc(blocksize[0], &blocksize[1]);
if (blocksize[1] != 0)
{
if (blocksegment[1] < blocksegment[0])
{
uint32_t tmp = blocksize[0];
blocksize[0] = blocksize[1];
blocksize[1] = tmp;
segment_t temp = blocksegment[0];
blocksegment[0] = blocksegment[1];
blocksegment[1] = temp;
}
printf("%6ld bytes allocated for zone\n", blocksize[0] + blocksize[1] - PARAGRAPH_SIZE);
}
else
{
printf("%6ld bytes allocated for zone\n", blocksize[0]);
}
*size = blocksize[0];
return blocksegment[0];
}
segment_t I_ZoneAdditional(uint32_t *size)
{
*size = blocksize[1];
return blocksegment[1];
}
static int32_t clock()
{
struct timeval now;
gettimeofday(&now, NULL);
return now.tv_sec * 1000L + now.tv_usec / 1000L;
}
static int32_t starttime;
void I_StartClock(void)
{
starttime = clock();
}
uint32_t I_EndClock(void)
{
int32_t endtime = clock();
return ((endtime - starttime) * TICRATE) / 1000L;
}
void I_Error2(const char *error, ...)
{
va_list argptr;
I_ShutdownGraphics();
va_start(argptr, error);
vfprintf(stdout, error, argptr);
va_end(argptr);
printf("\n");
exit(1);
}
int main(int argc, const char * const * argv)
{
UNUSED(argc);
UNUSED(argv);
D_DoomMain();
return 0;
}
void __far* _fmemcpy(void __far* destination, const void __far* source, size_t num)
{
uint8_t __far* s = (uint8_t __far*)source;
uint8_t __far* d = (uint8_t __far*)destination;
for (size_t i = 0; i < num; i++)
*d++ = *s++;
return NULL;
}
void __far* _fmemset(void __far* str, int c, size_t n)
{
uint8_t __far* d = (uint8_t __far*)str;
for (size_t i = 0; i < n; i++)
*d++ = c;
return NULL;
}
int16_t abs(int16_t v)
{
return v < 0 ? -v : v;
}
int32_t labs(int32_t v)
{
return v < 0 ? -v : v;
}