-
Notifications
You must be signed in to change notification settings - Fork 82
/
blit4.cpp
134 lines (133 loc) · 2.81 KB
/
blit4.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
#include "VGAX.h"
void VGAX::blit4aligned(byte *src, byte sheight, byte dbx, byte dy) {
byte *sptr=src;
byte *dptr=(byte*)vgaxfb+VGAX_BWIDTH*dy+dbx;
while (sheight--) {
*dptr=pgm_read_byte(sptr++);
dptr+=VGAX_BWIDTH;
}
}
void VGAX::blit4(byte *src, byte sheight, char dx, char dy) {
byte *sptr=src;
if (dy<0) {
if (dy<-4)
return;
sheight+=dy;
sptr+=(-dy)*2;
dy=0;
}
if (dy>=VGAX_HEIGHT)
return;
char yout=dy+sheight-VGAX_HEIGHT;
if (yout>0)
sheight-=yout;
byte *dptr=(byte*)vgaxfb+VGAX_BWIDTH*dy+(dx>>2);
if (dx<0) {
if (dx<=-4)
return;
switch (dx & 3) {
case 1:
//3 pixels unaligned
while (sheight--) {
byte b0=pgm_read_byte(sptr++);
dptr[1]&=0x3f;
dptr[1]|=b0<<6;
dptr+=VGAX_BWIDTH;
}
break;
case 2:
//2 pixels unaligned
while (sheight--) {
byte b0=pgm_read_byte(sptr++);
dptr[1]&=0x0f;
dptr[1]|=b0<<4;
dptr+=VGAX_BWIDTH;
}
break;
case 3:
//1 pixel unaligned
while (sheight--) {
byte b0=pgm_read_byte(sptr++);
dptr[1]&=0x03;
dptr[1]|=b0<<2;
dptr+=VGAX_BWIDTH;
}
break;
}
} else if (dx>VGAX_WIDTH-4) {
if (dx>=VGAX_WIDTH)
return;
switch (dx & 3) {
case 1:
//3 pixels unaligned
while (sheight--) {
byte b0=pgm_read_byte(sptr++);
dptr[0]&=0xc0;
dptr[0]|=b0>>2;
dptr+=VGAX_BWIDTH;
}
break;
case 2:
//2 pixels unaligned
while (sheight--) {
byte b0=pgm_read_byte(sptr++);
dptr[0]&=0xf0;
dptr[0]|=b0>>4;
dptr+=VGAX_BWIDTH;
}
break;
case 3:
//1 pixel unaligned
while (sheight--) {
byte b0=pgm_read_byte(sptr++);
dptr[0]&=0xfc;
dptr[0]|=b0>>6;
dptr+=VGAX_BWIDTH;
}
break;
}
} else {
switch (dx & 3) {
case 1:
//3 pixels unaligned
while (sheight--) {
byte b0=pgm_read_byte(sptr++);
dptr[0]&=0xc0;
dptr[0]|=b0>>2;
dptr[1]&=0x3f;
dptr[1]|=b0<<6;
dptr+=VGAX_BWIDTH;
}
break;
case 2:
//2 pixels unaligned
while (sheight--) {
byte b0=pgm_read_byte(sptr++);
dptr[0]&=0xf0;
dptr[0]|=b0>>4;
dptr[1]&=0x0f;
dptr[1]|=b0<<4;
dptr+=VGAX_BWIDTH;
}
break;
case 3:
//1 pixel unaligned
while (sheight--) {
byte b0=pgm_read_byte(sptr++);
dptr[0]&=0xfc;
dptr[0]|=b0>>6;
dptr[1]&=0x03;
dptr[1]|=b0<<2;
dptr+=VGAX_BWIDTH;
}
break;
case 0:
//0 pixel unaligned. blit is byte aligned!
while (sheight--) {
*dptr=pgm_read_byte(sptr++);
dptr+=VGAX_BWIDTH;
}
break;
}
}
}