This repository has been archived by the owner on Jul 2, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathpalcommon.h
152 lines (128 loc) · 2.92 KB
/
palcommon.h
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
/* -*- mode: c; tab-width: 4; c-basic-offset: 3; c-file-style: "linux" -*- */
//
// Copyright (c) 2009, Wei Mingzhi <[email protected]>.
// All rights reserved.
//
// This file is part of SDLPAL.
//
// SDLPAL 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 3 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, see <http://www.gnu.org/licenses/>.
//
#ifndef _PALUTILS_H
#define _PALUTILS_H
#include "common.h"
#ifdef __cplusplus
extern "C"
{
#endif
typedef LPBYTE LPSPRITE, LPBITMAPRLE;
typedef LPCBYTE LPCSPRITE, LPCBITMAPRLE;
typedef DWORD PAL_POS;
#define PAL_XY(x, y) (PAL_POS)(((((WORD)(y)) << 16) & 0xFFFF0000) | (((WORD)(x)) & 0xFFFF))
#define PAL_X(xy) (SHORT)((xy) & 0xFFFF)
#define PAL_Y(xy) (SHORT)(((xy) >> 16) & 0xFFFF)
typedef enum tagPALDIRECTION
{
kDirSouth = 0,
kDirWest,
kDirNorth,
kDirEast,
kDirUnknown
} PALDIRECTION, *LPPALDIRECTION;
INT
PAL_RLEBlitToSurface(
LPCBITMAPRLE lpBitmapRLE,
SDL_Surface *lpDstSurface,
PAL_POS pos
);
INT
PAL_RLEBlitWithColorShift(
LPCBITMAPRLE lpBitmapRLE,
SDL_Surface *lpDstSurface,
PAL_POS pos,
INT iColorShift
);
INT
PAL_RLEBlitMonoColor(
LPCBITMAPRLE lpBitmapRLE,
SDL_Surface *lpDstSurface,
PAL_POS pos,
BYTE bColor,
INT iColorShift
);
INT
PAL_FBPBlitToSurface(
LPBYTE lpBitmapFBP,
SDL_Surface *lpDstSurface
);
UINT
PAL_RLEGetWidth(
LPCBITMAPRLE lpBitmapRLE
);
UINT
PAL_RLEGetHeight(
LPCBITMAPRLE lpBitmapRLE
);
WORD
PAL_SpriteGetNumFrames(
LPCSPRITE lpSprite
);
LPCBITMAPRLE
PAL_SpriteGetFrame(
LPCSPRITE lpSprite,
INT iFrameNum
);
INT
PAL_MKFGetChunkCount(
FILE *fp
);
INT
PAL_MKFGetChunkSize(
UINT uiChunkNum,
FILE *fp
);
INT
PAL_MKFReadChunk(
LPBYTE lpBuffer,
UINT uiBufferSize,
UINT uiChunkNum,
FILE *fp
);
INT
PAL_MKFGetDecompressedSize(
UINT uiChunkNum,
FILE *fp
);
INT
PAL_MKFDecompressChunk(
LPBYTE lpBuffer,
UINT uiBufferSize,
UINT uiChunkNum,
FILE *fp
);
VOID
PAL_MakeColorShiftTable(
LPBYTE lpTable,
SHORT iColorShift
);
// From yj1.c:
INT
Decompress(
LPCVOID Source,
LPVOID Destination,
INT DestSize
);
#ifdef __cplusplus
}
#endif
#endif // _PALUTILS_H