TOOLS: Add button bitmaps to create_hugo

svn-id: r55102
This commit is contained in:
Arnaud Boutonné 2011-01-03 16:15:52 +00:00
parent 3d2104460d
commit e670e698f1
22 changed files with 283 additions and 1 deletions

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 774 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 774 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 774 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 774 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 774 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 774 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 774 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 774 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 774 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 774 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 774 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 774 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 774 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 774 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 774 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 774 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 774 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 774 B

7
tools/create_hugo/README Normal file
View File

@ -0,0 +1,7 @@
This tool creates hugo.dat.
This file contains all the hardcoded strings, logic, fonts, and bitmaps and
is used by the engine depending on the version of the game started.
In order to work properly, the content of the DATA sub-directory has to be
copy next to the executable.

View File

@ -847,6 +847,281 @@ int main(int argc, char *argv[]) {
for (int j = 0; j < nbrElem; j++)
writeByte(outFile, font8[j]);
//bitmap images for menu
writeUint16BE(outFile, 18);
FILE* src_file;
char buf[2];
src_file = fopen("btn_1.bmp", "rb");
if (src_file == NULL) {
perror("btn_1.bmp");
return -1;
}
fseek(src_file , 0 , SEEK_END);
nbrElem = ftell(src_file);
writeUint16BE(outFile, nbrElem);
rewind(src_file);
for (int j = 0; j < nbrElem; j++) {
fread(buf, 1, 1, src_file);
writeByte(outFile, buf[0]);
}
fclose(src_file);
src_file = fopen("btn_1_off.bmp", "rb");
if (src_file == NULL) {
perror("btn_1_off.bmp");
return -1;
}
fseek(src_file , 0 , SEEK_END);
nbrElem = ftell(src_file);
writeUint16BE(outFile, nbrElem);
rewind(src_file);
for (int j = 0; j < nbrElem; j++) {
fread(buf, 1, 1, src_file);
writeByte(outFile, buf[0]);
}
fclose(src_file);
src_file = fopen("btn_2.bmp", "rb");
if (src_file == NULL) {
perror("btn_2.bmp");
return -1;
}
fseek(src_file , 0 , SEEK_END);
nbrElem = ftell(src_file);
writeUint16BE(outFile, nbrElem);
rewind(src_file);
for (int j = 0; j < nbrElem; j++) {
fread(buf, 1, 1, src_file);
writeByte(outFile, buf[0]);
}
fclose(src_file);
src_file = fopen("btn_2_off.bmp", "rb");
if (src_file == NULL) {
perror("btn_2_off.bmp");
return -1;
}
fseek(src_file , 0 , SEEK_END);
nbrElem = ftell(src_file);
writeUint16BE(outFile, nbrElem);
rewind(src_file);
for (int j = 0; j < nbrElem; j++) {
fread(buf, 1, 1, src_file);
writeByte(outFile, buf[0]);
}
fclose(src_file);
src_file = fopen("btn_3.bmp", "rb");
if (src_file == NULL) {
perror("btn_3.bmp");
return -1;
}
fseek(src_file , 0 , SEEK_END);
nbrElem = ftell(src_file);
writeUint16BE(outFile, nbrElem);
rewind(src_file);
for (int j = 0; j < nbrElem; j++) {
fread(buf, 1, 1, src_file);
writeByte(outFile, buf[0]);
}
fclose(src_file);
src_file = fopen("btn_3_off.bmp", "rb");
if (src_file == NULL) {
perror("btn_3_off.bmp");
return -1;
}
fseek(src_file , 0 , SEEK_END);
nbrElem = ftell(src_file);
writeUint16BE(outFile, nbrElem);
rewind(src_file);
for (int j = 0; j < nbrElem; j++) {
fread(buf, 1, 1, src_file);
writeByte(outFile, buf[0]);
}
fclose(src_file);
src_file = fopen("btn_4.bmp", "rb");
if (src_file == NULL) {
perror("btn_4.bmp");
return -1;
}
fseek(src_file , 0 , SEEK_END);
nbrElem = ftell(src_file);
writeUint16BE(outFile, nbrElem);
rewind(src_file);
for (int j = 0; j < nbrElem; j++) {
fread(buf, 1, 1, src_file);
writeByte(outFile, buf[0]);
}
fclose(src_file);
src_file = fopen("btn_4_off.bmp", "rb");
if (src_file == NULL) {
perror("btn_4_off.bmp");
return -1;
}
fseek(src_file , 0 , SEEK_END);
nbrElem = ftell(src_file);
writeUint16BE(outFile, nbrElem);
rewind(src_file);
for (int j = 0; j < nbrElem; j++) {
fread(buf, 1, 1, src_file);
writeByte(outFile, buf[0]);
}
fclose(src_file);
src_file = fopen("btn_5.bmp", "rb");
if (src_file == NULL) {
perror("btn_5.bmp");
return -1;
}
fseek(src_file , 0 , SEEK_END);
nbrElem = ftell(src_file);
writeUint16BE(outFile, nbrElem);
rewind(src_file);
for (int j = 0; j < nbrElem; j++) {
fread(buf, 1, 1, src_file);
writeByte(outFile, buf[0]);
}
fclose(src_file);
src_file = fopen("btn_5_off.bmp", "rb");
if (src_file == NULL) {
perror("btn_5_off.bmp");
return -1;
}
fseek(src_file , 0 , SEEK_END);
nbrElem = ftell(src_file);
writeUint16BE(outFile, nbrElem);
rewind(src_file);
for (int j = 0; j < nbrElem; j++) {
fread(buf, 1, 1, src_file);
writeByte(outFile, buf[0]);
}
fclose(src_file);
src_file = fopen("btn_6.bmp", "rb");
if (src_file == NULL) {
perror("btn_6.bmp");
return -1;
}
fseek(src_file , 0 , SEEK_END);
nbrElem = ftell(src_file);
writeUint16BE(outFile, nbrElem);
rewind(src_file);
for (int j = 0; j < nbrElem; j++) {
fread(buf, 1, 1, src_file);
writeByte(outFile, buf[0]);
}
fclose(src_file);
src_file = fopen("btn_6_off.bmp", "rb");
if (src_file == NULL) {
perror("btn_6_off.bmp");
return -1;
}
fseek(src_file , 0 , SEEK_END);
nbrElem = ftell(src_file);
writeUint16BE(outFile, nbrElem);
rewind(src_file);
for (int j = 0; j < nbrElem; j++) {
fread(buf, 1, 1, src_file);
writeByte(outFile, buf[0]);
}
fclose(src_file);
src_file = fopen("btn_7.bmp", "rb");
if (src_file == NULL) {
perror("btn_7.bmp");
return -1;
}
fseek(src_file , 0 , SEEK_END);
nbrElem = ftell(src_file);
writeUint16BE(outFile, nbrElem);
rewind(src_file);
for (int j = 0; j < nbrElem; j++) {
fread(buf, 1, 1, src_file);
writeByte(outFile, buf[0]);
}
fclose(src_file);
src_file = fopen("btn_7_off.bmp", "rb");
if (src_file == NULL) {
perror("btn_7_off.bmp");
return -1;
}
fseek(src_file , 0 , SEEK_END);
nbrElem = ftell(src_file);
writeUint16BE(outFile, nbrElem);
rewind(src_file);
for (int j = 0; j < nbrElem; j++) {
fread(buf, 1, 1, src_file);
writeByte(outFile, buf[0]);
}
fclose(src_file);
src_file = fopen("btn_8.bmp", "rb");
if (src_file == NULL) {
perror("btn_8.bmp");
return -1;
}
fseek(src_file , 0 , SEEK_END);
nbrElem = ftell(src_file);
writeUint16BE(outFile, nbrElem);
rewind(src_file);
for (int j = 0; j < nbrElem; j++) {
fread(buf, 1, 1, src_file);
writeByte(outFile, buf[0]);
}
fclose(src_file);
src_file = fopen("btn_8_off.bmp", "rb");
if (src_file == NULL) {
perror("btn_8_off.bmp");
return -1;
}
fseek(src_file , 0 , SEEK_END);
nbrElem = ftell(src_file);
writeUint16BE(outFile, nbrElem);
rewind(src_file);
for (int j = 0; j < nbrElem; j++) {
fread(buf, 1, 1, src_file);
writeByte(outFile, buf[0]);
}
fclose(src_file);
src_file = fopen("btn_9.bmp", "rb");
if (src_file == NULL) {
perror("btn_9.bmp");
return -1;
}
fseek(src_file , 0 , SEEK_END);
nbrElem = ftell(src_file);
writeUint16BE(outFile, nbrElem);
rewind(src_file);
for (int j = 0; j < nbrElem; j++) {
fread(buf, 1, 1, src_file);
writeByte(outFile, buf[0]);
}
fclose(src_file);
src_file = fopen("btn_9_off.bmp", "rb");
if (src_file == NULL) {
perror("btn_9_off.bmp");
return -1;
}
fseek(src_file , 0 , SEEK_END);
nbrElem = ftell(src_file);
writeUint16BE(outFile, nbrElem);
rewind(src_file);
for (int j = 0; j < nbrElem; j++) {
fread(buf, 1, 1, src_file);
writeByte(outFile, buf[0]);
}
fclose(src_file);
fclose(outFile);
return 0;
}

View File

@ -31,7 +31,7 @@
#define DATAALIGNMENT 4
#define HUGO_DAT_VER_MAJ 0 // 1 byte
#define HUGO_DAT_VER_MIN 35 // 1 byte
#define HUGO_DAT_VER_MIN 36 // 1 byte
typedef unsigned char uint8;
typedef unsigned char byte;