OSDN Git Service

testing
[proj16/16.git] / src / pcxtest2.c
1 /* Project 16 Source Code~\r
2  * Copyright (C) 2012-2015 sparky4 & pngwen & andrius4669\r
3  *\r
4  * This file is part of Project 16.\r
5  *\r
6  * Project 16 is free software; you can redistribute it and/or modify\r
7  * it under the terms of the GNU General Public License as published by\r
8  * the Free Software Foundation; either version 3 of the License, or\r
9  * (at your option) any later version.\r
10  *\r
11  * Project 16 is distributed in the hope that it will be useful,\r
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
14  * GNU General Public License for more details.\r
15  *\r
16  * You should have received a copy of the GNU General Public License\r
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>, or\r
18  * write to the Free Software Foundation, Inc., 51 Franklin Street,\r
19  * Fifth Floor, Boston, MA 02110-1301 USA.\r
20  *\r
21  */\r
22 \r
23 #include <stdio.h>\r
24 #include <dos.h>\r
25 #include <string.h>\r
26 #include "src/lib/modex16.h"\r
27 #include "src/lib/bitmap.h"\r
28 #include "src/lib/planar.h"\r
29 \r
30 word far* clockw= (word far*) 0x046C; /* 18.2hz clock */\r
31 \r
32 /*\r
33 void\r
34 DrawPBuf(page_t *page, int x, int y, planar_buf_t *p, byte sprite)\r
35 {\r
36         byte plane;\r
37         word px, py;\r
38         word offset;\r
39 \r
40         // TODO Make this fast.  It's SLOOOOOOW\r
41         for(plane=0; plane < 4; plane++) {\r
42         modexSelectPlane(PLANE(plane+x));\r
43         for(px = plane; px < p->width; px+=4) {\r
44                 offset=px;\r
45                 for(py=0; py<p->height/2; py++) {\r
46                 SELECT_ALL_PLANES();\r
47                 if(!sprite || p->plane[offset])\r
48                         page->data = p->plane;\r
49                 //offset+=p->width;\r
50                 //offset++;\r
51                 }\r
52         }\r
53         }\r
54 }\r
55 */\r
56 \r
57 void main() {\r
58         bitmap_t bmp;\r
59         planar_buf_t *p;\r
60         int i;\r
61         page_t page;\r
62         word start;\r
63         int plane;\r
64         float t1, t2;\r
65 \r
66         page=modexDefaultPage();\r
67         page.width+=32;\r
68         page.height+=32;\r
69 //0000  bmp = bitmapLoadPcx("data/koishi~~.pcx");\r
70 //      bmp = bitmapLoadPcx("data/chikyuu.pcx");\r
71         bmp = bitmapLoadPcx("data/koishi^^.pcx");\r
72 //      bmp = bitmapLoadPcx("16/PCX_LIB/chikyuu.pcx");\r
73         p = planar_buf_from_bitmap(&bmp);\r
74         modexEnter();\r
75 \r
76         /* fix up the palette and everything */\r
77         modexPalUpdate1(bmp.palette);\r
78 \r
79         /* clear and draw one sprite and one bitmap */\r
80         modexClearRegion(&page, 0, 0, SCREEN_WIDTH, SCREEN_HEIGHT, 1);\r
81 \r
82         /* update display~*/\r
83         page.dx+=16;\r
84         page.dy+=16;\r
85         modexShowPage(&page);\r
86 \r
87         /* non sprite comparison */\r
88         start = *clockw;\r
89         //for(i=0; i<100 ;i++) {\r
90                 oldDrawBmp(VGA, 20, 20, &bmp, 0);\r
91         //}\r
92 \r
93         start = *clockw;\r
94         //for(i=0; i<100 ;i++) {\r
95 //0000          modexDrawBmp(&page, 20, 20, &bmp);\r
96                 modexDrawBmp(&page, 160, 120, &bmp);\r
97         //}\r
98         t1 = (*clockw-start) /18.2;\r
99 \r
100         start = *clockw;\r
101         //for(i=0; i<100; i++) {\r
102 //0000          modexCopyPageRegion(&page, &page, 20, 20, 128, 20, 64, 64);\r
103                 modexCopyPageRegion(&page, &page, 0, 0, 0, 0, 320, 240);\r
104         //}\r
105         t2 = (*clockw-start)/18.2;\r
106 \r
107 \r
108         start = *clockw;\r
109         //for(i=0; i<100 ;i++) {\r
110                 oldDrawBmp(VGA, 20, 20, &bmp, 1);\r
111         //}\r
112 \r
113 \r
114         start = *clockw;\r
115         //for(i=0; i<100 ;i++) {\r
116 //0000          modexDrawSprite(&page, 20, 20, &bmp);\r
117                 modexDrawSprite(&page, 160, 120, &bmp);\r
118         //}\r
119         //_fmemset(MK_FP(0xA000, 0), (int)p->plane, SCREEN_WIDTH*(SCREEN_HEIGHT*2));\r
120         //modexDrawBmp(&page, 0, 0, &bmp);\r
121         while(!kbhit())\r
122         {\r
123                 //DrawPBuf(&page, 0, 0, p, 0);\r
124         }\r
125         modexLeave();\r
126         /*printf("\nmain=%Fp\n\n", &i);\r
127         printf("bmp.data=%Fp\n", bmp.data);\r
128         printf("*bmp.data=%Fp\n", *(bmp.data));\r
129         printf("&bmp.data=%Fp\n", &(bmp.data));\r
130 \r
131         printf("\n%d\n", sizeof(p->plane));\r
132         printf("%d\n", sizeof(bmp));*/\r
133 \r
134         /*for(i=0; i<(320*240); i++)\r
135         {\r
136                 fprintf(stdout, "%d", bmp.data[i]);\r
137                 if(i%bmp.width==0) fprintf(stdout, "\n");\r
138         }*/\r
139         printf("CPU to VGA: %f\n", t1);\r
140         printf("VGA to VGA: %f\n", t2);\r
141         printf("page.width: %u\n", page.width);\r
142         printf("page.height: %u\n", page.height);\r
143         return;\r
144 }\r