]> 4ch.mooo.com Git - 16.git/blob - src/lib/scroll16.h
optimized scrolling ww to extreame levels
[16.git] / src / lib / scroll16.h
1 /* Project 16 Source Code~
2  * Copyright (C) 2012-2016 sparky4 & pngwen & andrius4669 & joncampbell123
3  *
4  * This file is part of Project 16.
5  *
6  * Project 16 is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * Project 16 is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>, or
18  * write to the Free Software Foundation, Inc., 51 Franklin Street,
19  * Fifth Floor, Boston, MA 02110-1301 USA.
20  *
21  */
22
23 #ifndef __SCROLL16_H_
24 #define __SCROLL16_H_
25
26 #include "src/lib/16_head.h"
27 #include "src/lib/bakapee.h"
28 #include "src/lib/modex16.h"
29 #include "src/lib/16_in.h"
30 #include "src/lib/bitmap.h"
31 #include "src/lib/planar.h"
32 #include "src/lib/mapread.h" //map is loaded here www
33 #include "src/lib/16_timer.h"
34 #include "src/lib/wcpu/wcpu.h"
35
36 #include <hw/cpu/cpu.h>
37 #include <hw/dos/dos.h>
38 #include <hw/vga/vga.h>
39 #include <hw/vga/vrl.h>
40
41 //#define SPRITE
42 //#define TILERENDER
43
44 #define PBUFSFUN                modexDrawSpritePBufRegion
45 #define PBUFBFUN                modexDrawBmpPBufRegion
46 #define PLAYERBMPDATA   &player[pn].data
47
48 typedef struct {
49         map_t *map;
50         page_t *page;
51         int tx; //appears to be the top left tile position on the viewable screen map
52         int ty; //appears to be the top left tile position on the viewable screen map
53         word dxThresh; //????
54         word dyThresh; //????
55         video_t *video; //pointer to game variables of the video
56         pan_t *pan;             //pointer the the page panning debug system
57 } map_view_t;
58
59 typedef struct
60 {
61         map_view_t *mv;
62 } map_view_db_t;
63
64 //for null map!
65 #define MAPW    40
66 #define MAPH    30
67
68 extern boolean pageflipflop, pageploop;
69 extern unsigned char shinku_fps_indicator_page;
70
71 //map_t allocMap(int w, int h);
72 //void initMap(map_t *map);
73 void walk(map_view_t *pip, player_t *player, word pn);
74 void panpagemanual(map_view_t *pip,  player_t *player, word pn);
75 void near mapScrollRight(map_view_t *mv, player_t *player, word id, word plid);
76 void near mapScrollLeft(map_view_t *mv, player_t *player, word id, word plid);
77 void near mapScrollUp(map_view_t *mv, player_t *player, word id, word plid);
78 void near mapScrollDown(map_view_t *mv, player_t *player, word id, word plid);
79 void near ScrollRight(map_view_t *mv, player_t *player, word id, word plid);
80 void near ScrollLeft(map_view_t *mv, player_t *player, word id, word plid);
81 void near ScrollUp(map_view_t *mv, player_t *player, word id, word plid);
82 void near ScrollDown(map_view_t *mv, player_t *player, word id, word plid);
83 sword chkmap(map_t *map, word q);
84 void mapGoTo(map_view_t *mv, int tx, int ty);
85 void near mapDrawTile(tiles_t *t, word i, page_t *page, word x, word y);
86 void near mapDrawRow(map_view_t *mv, int tx, int ty, word y, player_t *p, word poopoffset);
87 void near mapDrawCol(map_view_t *mv, int tx, int ty, word x, player_t *p, word poopoffset);
88 void mapDrawWRow(map_view_t *mv, int tx, int ty, word y);
89 void mapDrawWCol(map_view_t *mv, int tx, int ty, word x);
90 //void qclean();
91 void shinku(global_game_variables_t *gv);
92 void near animatePlayer(map_view_t *pip, player_t *player, word playnum, sword scrollswitch);
93
94 #endif /*__SCROLL16_H_*/