Umpoco de Pascal
Publicado por ramon (2158 intervenciones) el 11/09/2012 16:16:31
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
{Continuando con la programación en Pascal como quedo en [Compilador de pascal 7.7] y
como comente aparte de los punteros que encontraremos en esta serie de programación
gráfica empezare dejando un pequeño ejemplo de lo que se vera en el resto de la serie.
En este caso es un programa que permite visualizar archivos de imagen tipo BMP de
2 colores a 24 bits espero les guste esto es empezar.
Como podréis apreciar el programa es una mezcla de pascal y ensamblador.
esto es porque actual mente no se dispone de driveres de vídeo que trabajen con 24 bits y
32 en pascal por lo cual debemos de preparar nuestros driveres para tal fin.
Este programa esta echo con pascal 7.0 teniendo problemas para correr con freepascal.
En cualquiera de sus versiones.
Por causa del ensamblador del pascal 7.0 y del de freepascal Pudiéndose acoplar a el de
otra forma pero eso no entra en esta programación que solo trata pascal estándar pero mejorando
los medios lo mejor que podamos al sistema actual de gráficos.
Se pasa en varias paginas por su tamaño.
program a8bmp;
{$N+}{$G+}
uses
crt, dos;
type
string3 = string[3];
string8 = string[8];
const
Camino : string = 'c:\tp\fotos12\'; {Camino donde estan las Imagenes}
exten : string3 = 'bmp'; {Extension del Archivo}
type
BufferType = Array [0..64000] of Byte; {Buffer virtual}
BufferPointer = ^BufferType; {Puntero al buffer virtual}
camposcabecera = record {Cavecera del BMP}
idenbmp : array[0..1] of char;
tamanobmp : longint;
reserva1 : word;
reserva2 : word;
inicioimag : longint;
end;
campoinformacion = record {Cavecera de datos del BMP}
tamanocabe : longint;
tamanox : longint;
tamanoy : longint;
planoscolor : word;
bitspixel : word;
compresion : longint;
tamaimagen : longint;
resolucionx : longint;
resoluciony : longint;
numerocolor : longint;
coloresimpo : longint;
end;
colorreg = record {Registro de color del BMP}
Blue : Byte;
Green : Byte;
Red : Byte;
reser : Integer;
end;
regcolor = record {Registro de la Imagen}
regazul : byte;
regverde : byte;
regrojo : byte;
regreser : byte;
end;
paletabmp = array[0..255] of regcolor; {El array del Registro imagen}
colorrgb = record {Registri Paleta color}
rojo : byte;
verde : byte;
azul : byte;
end;
paletargb = array[0..255] of colorrgb; {El array de la Paleta}
paletavesa = array[0..255,0..2] of byte; {El array de la Palete vesa}
pModeList = ^tModeList; {Puntero al array de listado de modos de video}
tModeList = Array [0..255] of word; {Array de listado de modos de video}
informevesa = record {Registro cavecera de la vesa}
asignatura : array[1..4] of char;
nversion : word;
punterofar : pchar;
capacidad : longint;
codigos : pmodelist;
end;
datosvesa = record {Registro de informacion de la vesa}
modo_flag : word;
ventana1 : byte;
ventana2 : byte;
granulacion : word;
tamaventana : word;
segventana1 : word;
segventana2 : word;
areavisible : pointer;
viteslinea : word;
resolucionx : word;
resoluciony : word;
anchocaract : byte;
altocaract : byte;
nbitplanes : byte;
bitporpixel : byte;
membloques : byte;
mem_modelo : byte;
tamamemblok : byte;
end;
var {Variables comunes del programa}
f : file;
Buffer : ^BufferType;
dato1 : informevesa;
dato2 : datosvesa;
infocabe : camposcabecera;
infoinfo : campoinformacion;
bmpcol : paletabmp;
imagcol : paletargb;
colores, resul1, resul2 : word;
comp : string[4];
regs : registers;
nomarch : array[1..40] of string[12];
cargamos : string;
dirinfo : searchrec;
cag : integer;
b : array[1..4] of byte;
fondo : byte;
temp : Byte;
BPP : Byte;
memor : array[0..12000] of byte;
p, t, z, x, y : integer;
modo : word;
currentmode : Word;
colorespixel, page, currentblock : Byte;
clear, blanco, color : colorreg;
getmaxy, screeny, screenx : Integer;
paletav : paletavesa;
byt : array[1..1024] of byte;
tom, tex : string[37];
sal : boolean;
procedure tomachivos(ext : string3); {Procedimiento para cojer los
archivos BMP para el menu}
var
ii : integer;
begin
findfirst(camino + '*.' + ext, archive, dirinfo);
ii := 1;
while doserror = 0 do
begin
nomarch[ii] := dirinfo.name;
ii := ii + 1;
if ii > 40 then
ii := 40;
findNext(dirinfo);
end;
cag := ii - 1;
end;
procedure menuarchivos; {Menu para seleccionar la imagen BMP}
var
tec : char;
gg, n, t, yy, xx, cot : integer;
begin
textbackground(0);
clrscr;
tomachivos(exten);
clrscr;
gotoxy(12,1);write('*** Elija Archivo A Visualizar ***');
cot := 1;
yy := 3;
xx := 3;
repeat
textcolor(15);
gotoxy(xx, yy);write(nomarch[cot]);
xx := xx + 15;
if xx > 60 then
begin
xx := 3;
yy := yy + 1;
if yy > 22 then
yy := 22;
end;
cot := cot + 1;
until cot > cag;
xx := 3;
yy := 3;
cot := 1;
repeat
textbackground(2);
gotoxy(xx - 1,yy);write(' ');
textcolor(15);
gotoxy(xx,yy);write(nomarch[cot]);
textbackground(0);
tec := readkey;
gotoxy(xx - 1,yy);write(' ');
textcolor(15);
gotoxy(xx,yy);write(nomarch[cot]);
if tec = #77 then
begin
xx := xx + 15;
cot := cot + 1;
if (xx > 48) and (cot < cag) then
begin
xx := 3;
yy := yy + 1;
end;
if cot > cag then
begin
xx := xx - 15;
cot := cag;
end;
end;
if tec = #75 then
begin
xx := xx - 15;
cot := cot - 1;
if xx < 3 then
begin
xx := 48;
if yy > 3 then
yy := yy - 1;
end;
if cot < 1 then
begin
cot := 1;
xx := 3;
end;
end;
if tec = #80 then
begin
if (cag mod 4) = 0 then
gg := 2
else
gg := 3;
if (yy < round(cag / 4) + gg) and (cot < cag) then
begin
yy := yy + 1;
t := 4;
cot := cot + t;
end;
end;
if tec = #72 then
begin
if yy > 3 then
begin
yy := yy - 1;
t := 4;
cot := cot - t;
end;
end;
until tec = #13;
cargamos := camino + nomarch[cot];
textbackground(0);
textcolor(15);
clrscr;
end;
procedure cargacabecerayinformeycolor(archi : string); {Procedimiento
para cargar las
caveceras del BMP}
begin
assign(f,archi);
{$I-} reset(f,1); {$I+}
if ioresult <> 0 then
begin
writeln('Archivo No Encontrado o Da¤ado pulse [Enter]');
readln;
halt(1);
end;
if exten = 'BMP' then
begin
blockread(f,infocabe,sizeof(camposcabecera),resul1);
blockread(f,infoinfo,sizeof(campoinformacion),resul2);
if infoinfo.bitspixel <= 8 then {Cargamos los colores de la paleta si
devemos cargarlos}
blockread(f, bmpcol,infocabe.inicioimag - (resul1 + resul2),colores);
close(f);
end;
end;
procedure presentadatosbmp(nom : string); {Presentamos los datos del BMP}
begin
cargacabecerayinformeycolor(nom);
if exten = 'BMP' then
begin
clrscr;
writeln('***** Informacion Archivo *****');
writeln('-------------------------------');
writeln;
writeln('Tipo De Archivo Es = ',infocabe.idenbmp[0],
infocabe.idenbmp[1],'P');
writeln('tama¤o cabecera y informacion = ',resul1 + resul2,' Bytes');
writeln('Inicio Imagen En La Posicion = ',infocabe.inicioimag,' Bytes');
colorespixel := infoinfo.bitspixel;
if infoinfo.bitspixel <= 8 then
begin
writeln('Tama¤o Paleta de color = ',infocabe.inicioimag -
(resul1 + resul2),' Bytes');
writeln('Los Colores De La Paleta Son = ',
(infocabe.inicioimag - (resul1 + resul2)) div 4,' colores');
end
else
writeln('Los Colores De La Paleta Son = ',infoinfo.bitspixel);
writeln('Los Planos De Color Son = ',infoinfo.planoscolor);
writeln('Tama¤o Del Archivo Total = ',infocabe.tamanobmp,' Bytes');
writeln('Tama¤o De La Imagen = ',infoinfo.tamaimagen,' Bytes');
writeln('Longitud De X = ',infoinfo.tamanox,' Pixeles');
writeln('Longitud De Y = ',infoinfo.tamanoy,' Pixeles');
case infoinfo.compresion of
0 : comp := 'No';
1 : comp := 'RLE8';
2 : comp := 'RLE4';
end;
writeln('Compresion = ',comp);
writeln('Resoluccion X = ',infoinfo. resolucionx);
writeln('Resoluccion y = ',infoinfo. resoluciony);
writeln('Numero Colores De La Imagen = ',infoinfo.numerocolor);
writeln('Numero De Colores Importantes = ',infoinfo.coloresimpo);
writeln;
writeln('***** Pulse [Enter] *****');
readln;
end;
end;
Valora esta pregunta
0