2005-07-24 14:12:37 +00:00
|
|
|
|
/* $Id$ */
|
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
|
#include "stdafx.h"
|
2005-06-02 19:30:21 +00:00
|
|
|
|
#include "openttd.h"
|
2005-02-05 15:58:59 +00:00
|
|
|
|
#include "debug.h"
|
2005-07-22 07:02:20 +00:00
|
|
|
|
#include "functions.h"
|
2004-08-09 17:04:08 +00:00
|
|
|
|
#include "gfx.h"
|
2005-02-10 05:43:30 +00:00
|
|
|
|
#include "spritecache.h"
|
2005-02-13 11:18:02 +00:00
|
|
|
|
#include "table/sprites.h"
|
2004-08-09 17:04:08 +00:00
|
|
|
|
#include "fileio.h"
|
2004-11-19 22:53:18 +00:00
|
|
|
|
#include "newgrf.h"
|
2005-01-10 01:14:26 +00:00
|
|
|
|
#include "md5.h"
|
2005-07-21 22:15:02 +00:00
|
|
|
|
#include "variables.h"
|
2004-08-09 17:04:08 +00:00
|
|
|
|
#include <ctype.h>
|
|
|
|
|
|
|
|
|
|
#define SPRITE_CACHE_SIZE 1024*1024
|
|
|
|
|
|
|
|
|
|
#define WANT_NEW_LRU
|
|
|
|
|
|
|
|
|
|
|
2004-11-17 18:49:55 +00:00
|
|
|
|
/* These are used in newgrf.c: */
|
2004-11-12 18:47:19 +00:00
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
|
int _skip_sprites = 0;
|
2004-11-12 18:47:19 +00:00
|
|
|
|
int _replace_sprites_count[16];
|
|
|
|
|
int _replace_sprites_offset[16];
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
2004-11-12 23:26:02 +00:00
|
|
|
|
static const char *_cur_grffile;
|
|
|
|
|
static int _loading_stage;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
static int _skip_specials;
|
2004-11-14 10:18:15 +00:00
|
|
|
|
uint16 _custom_sprites_base;
|
2005-02-08 22:22:42 +00:00
|
|
|
|
static Sprite _cur_sprite;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
2004-11-12 18:47:19 +00:00
|
|
|
|
|
2005-07-24 15:56:31 +00:00
|
|
|
|
static void* _sprite_ptr[MAX_SPRITES];
|
|
|
|
|
static uint32 _sprite_file_pos[MAX_SPRITES];
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
|
|
#if defined(WANT_NEW_LRU)
|
2005-07-24 15:56:31 +00:00
|
|
|
|
static int16 _sprite_lru_new[MAX_SPRITES];
|
2004-08-09 17:04:08 +00:00
|
|
|
|
#else
|
2005-07-24 15:56:31 +00:00
|
|
|
|
static uint16 _sprite_lru[MAX_SPRITES];
|
|
|
|
|
static uint16 _sprite_lru_cur[MAX_SPRITES];
|
2004-08-09 17:04:08 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
2005-02-11 13:35:27 +00:00
|
|
|
|
typedef struct MemBlock {
|
|
|
|
|
uint32 size;
|
|
|
|
|
byte data[VARARRAY_SIZE];
|
|
|
|
|
} MemBlock;
|
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
|
static uint _sprite_lru_counter;
|
2005-02-11 13:35:27 +00:00
|
|
|
|
static MemBlock *_spritecache_ptr;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
static int _compact_cache_counter;
|
|
|
|
|
|
2005-01-10 01:14:26 +00:00
|
|
|
|
typedef struct MD5File {
|
|
|
|
|
const char * const filename; // filename
|
2005-01-10 01:50:17 +00:00
|
|
|
|
const md5_byte_t hash[16]; // md5 sum of the file
|
2005-01-10 01:14:26 +00:00
|
|
|
|
} MD5File;
|
|
|
|
|
|
2004-12-12 20:36:24 +00:00
|
|
|
|
typedef struct FileList {
|
2005-04-24 21:44:45 +00:00
|
|
|
|
const MD5File basic[5]; // grf files that always have to be loaded
|
2005-01-10 01:14:26 +00:00
|
|
|
|
const MD5File landscape[3]; // landscape specific grf files
|
2004-12-12 20:36:24 +00:00
|
|
|
|
} FileList;
|
|
|
|
|
|
2005-01-10 01:14:26 +00:00
|
|
|
|
#include "table/files.h"
|
2004-08-09 17:04:08 +00:00
|
|
|
|
#include "table/landscape_sprite.h"
|
|
|
|
|
|
2005-07-24 15:56:31 +00:00
|
|
|
|
static const SpriteID * const _landscape_spriteindexes[] = {
|
2004-08-09 17:04:08 +00:00
|
|
|
|
_landscape_spriteindexes_1,
|
|
|
|
|
_landscape_spriteindexes_2,
|
|
|
|
|
_landscape_spriteindexes_3,
|
|
|
|
|
};
|
|
|
|
|
|
2005-07-24 15:56:31 +00:00
|
|
|
|
static const SpriteID * const _slopes_spriteindexes[] = {
|
2004-08-13 11:28:59 +00:00
|
|
|
|
_slopes_spriteindexes_0,
|
|
|
|
|
_slopes_spriteindexes_1,
|
|
|
|
|
_slopes_spriteindexes_2,
|
|
|
|
|
_slopes_spriteindexes_3,
|
|
|
|
|
};
|
|
|
|
|
|
2005-01-22 20:23:18 +00:00
|
|
|
|
static void CompactSpriteCache(void);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
2005-08-11 13:09:12 +00:00
|
|
|
|
static bool ReadSpriteHeaderSkipData(int load_index)
|
2004-08-09 17:04:08 +00:00
|
|
|
|
{
|
2005-08-11 13:09:12 +00:00
|
|
|
|
uint16 num = FioReadWord();
|
2004-08-09 17:04:08 +00:00
|
|
|
|
byte type;
|
|
|
|
|
int deaf = 0;
|
|
|
|
|
|
2005-08-11 13:09:12 +00:00
|
|
|
|
if (num == 0) return false;
|
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
|
if (_skip_sprites) {
|
|
|
|
|
if (_skip_sprites > 0)
|
|
|
|
|
_skip_sprites--;
|
|
|
|
|
deaf = 1;
|
|
|
|
|
}
|
2004-09-08 18:05:49 +00:00
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
|
type = FioReadByte();
|
2004-11-12 21:33:18 +00:00
|
|
|
|
_cur_sprite.info = type;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
if (type == 0xFF) {
|
|
|
|
|
/* We need to really skip only special sprites in the deaf
|
|
|
|
|
* mode. It won't hurt to proceed regular sprites as usual
|
|
|
|
|
* because if no special sprite referencing to them is
|
|
|
|
|
* processed, they themselves are never referenced and loaded
|
|
|
|
|
* on their own. */
|
|
|
|
|
if (_skip_specials || deaf) {
|
|
|
|
|
FioSkipBytes(num);
|
|
|
|
|
} else {
|
2004-11-12 23:26:02 +00:00
|
|
|
|
DecodeSpecialSprite(_cur_grffile, num, load_index, _loading_stage);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
}
|
2005-08-11 13:09:12 +00:00
|
|
|
|
return true;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
}
|
2004-09-08 18:05:49 +00:00
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
|
FioSkipBytes(7);
|
|
|
|
|
num -= 8;
|
2005-08-11 13:09:12 +00:00
|
|
|
|
if (num == 0) return true;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
|
|
if (type & 2) {
|
|
|
|
|
FioSkipBytes(num);
|
2005-02-11 14:33:43 +00:00
|
|
|
|
} else {
|
|
|
|
|
while (num > 0) {
|
|
|
|
|
int8 i = FioReadByte();
|
|
|
|
|
if (i >= 0) {
|
|
|
|
|
num -= i;
|
|
|
|
|
FioSkipBytes(i);
|
|
|
|
|
} else {
|
|
|
|
|
i = -(i >> 3);
|
|
|
|
|
num -= i;
|
|
|
|
|
FioReadByte();
|
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2005-08-11 13:09:12 +00:00
|
|
|
|
|
|
|
|
|
return true;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
}
|
|
|
|
|
|
2005-07-05 19:54:35 +00:00
|
|
|
|
static void* AllocSprite(size_t);
|
|
|
|
|
|
|
|
|
|
static void* ReadSprite(SpriteID id)
|
2004-08-09 17:04:08 +00:00
|
|
|
|
{
|
2005-08-09 12:58:22 +00:00
|
|
|
|
uint num;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
byte type;
|
2005-07-05 19:54:35 +00:00
|
|
|
|
|
|
|
|
|
DEBUG(spritecache, 9) ("load sprite %d", id);
|
2004-09-08 18:05:49 +00:00
|
|
|
|
|
2005-08-09 12:58:22 +00:00
|
|
|
|
if (_sprite_file_pos[id] == 0 && id != 0) {
|
2005-02-17 15:53:47 +00:00
|
|
|
|
error(
|
|
|
|
|
"Tried to load non-existing sprite #%d.\n"
|
|
|
|
|
"Probable cause: Wrong/missing NewGRFs",
|
|
|
|
|
id
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2005-02-11 13:46:25 +00:00
|
|
|
|
FioSeekToFile(_sprite_file_pos[id]);
|
|
|
|
|
|
2005-08-09 12:58:22 +00:00
|
|
|
|
num = FioReadWord();
|
2004-08-09 17:04:08 +00:00
|
|
|
|
type = FioReadByte();
|
2005-07-05 19:54:35 +00:00
|
|
|
|
if (type == 0xFF) {
|
|
|
|
|
byte* dest = AllocSprite(num);
|
|
|
|
|
|
|
|
|
|
_sprite_ptr[id] = dest;
|
|
|
|
|
FioReadBlock(dest, num);
|
|
|
|
|
|
|
|
|
|
return dest;
|
|
|
|
|
} else {
|
|
|
|
|
uint height = FioReadByte();
|
|
|
|
|
uint width = FioReadWord();
|
|
|
|
|
Sprite* sprite;
|
|
|
|
|
byte* dest;
|
|
|
|
|
|
|
|
|
|
num = (type & 0x02) ? width * height : num - 8;
|
|
|
|
|
sprite = AllocSprite(sizeof(*sprite) + num);
|
|
|
|
|
_sprite_ptr[id] = sprite;
|
|
|
|
|
sprite->info = type;
|
2005-07-06 06:18:53 +00:00
|
|
|
|
sprite->height = (id != 142) ? height : 10; // Compensate for a TTD bug
|
2005-07-05 19:54:35 +00:00
|
|
|
|
sprite->width = width;
|
2005-02-10 12:26:41 +00:00
|
|
|
|
sprite->x_offs = FioReadWord();
|
|
|
|
|
sprite->y_offs = FioReadWord();
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
2005-07-05 19:54:35 +00:00
|
|
|
|
dest = sprite->data;
|
2005-02-11 14:33:43 +00:00
|
|
|
|
while (num > 0) {
|
|
|
|
|
int8 i = FioReadByte();
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
2005-02-11 14:33:43 +00:00
|
|
|
|
if (i >= 0) {
|
|
|
|
|
num -= i;
|
2005-07-05 19:54:35 +00:00
|
|
|
|
for (; i > 0; --i) *dest++ = FioReadByte();
|
2005-02-11 14:33:43 +00:00
|
|
|
|
} else {
|
|
|
|
|
const byte* rel = dest - (((i & 7) << 8) | FioReadByte());
|
|
|
|
|
|
|
|
|
|
i = -(i >> 3);
|
|
|
|
|
num -= i;
|
2004-09-08 18:05:49 +00:00
|
|
|
|
|
2005-07-05 19:54:35 +00:00
|
|
|
|
for (; i > 0; --i) *dest++ = *rel++;
|
2005-02-11 14:33:43 +00:00
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
}
|
2005-07-05 19:54:35 +00:00
|
|
|
|
|
|
|
|
|
return sprite;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static bool LoadNextSprite(int load_index, byte file_index)
|
|
|
|
|
{
|
2005-08-09 12:58:22 +00:00
|
|
|
|
uint32 file_pos = FioGetPos() | (file_index << 24);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
2005-08-11 13:09:12 +00:00
|
|
|
|
if (!ReadSpriteHeaderSkipData(load_index)) return false;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
2005-02-11 14:33:43 +00:00
|
|
|
|
if (_replace_sprites_count[0] > 0 && _cur_sprite.info != 0xFF) {
|
2004-11-12 18:47:19 +00:00
|
|
|
|
int count = _replace_sprites_count[0];
|
|
|
|
|
int offset = _replace_sprites_offset[0];
|
|
|
|
|
|
|
|
|
|
_replace_sprites_offset[0]++;
|
|
|
|
|
_replace_sprites_count[0]--;
|
2005-01-03 18:49:45 +00:00
|
|
|
|
|
2005-07-24 15:56:31 +00:00
|
|
|
|
if ((offset + count) <= MAX_SPRITES) {
|
2004-11-12 18:47:19 +00:00
|
|
|
|
load_index = offset;
|
|
|
|
|
} else {
|
|
|
|
|
DEBUG(spritecache, 1) ("Sprites to be replaced are out of range: %x+%x",
|
|
|
|
|
count, offset);
|
|
|
|
|
_replace_sprites_offset[0] = 0;
|
|
|
|
|
_replace_sprites_count[0] = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (_replace_sprites_count[0] == 0) {
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < 15; i++) {
|
|
|
|
|
_replace_sprites_count[i] = _replace_sprites_count[i + 1];
|
|
|
|
|
_replace_sprites_offset[i] = _replace_sprites_offset[i + 1];
|
|
|
|
|
}
|
|
|
|
|
_replace_sprites_count[i] = 0;
|
|
|
|
|
_replace_sprites_offset[i] = 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_sprite_file_pos[load_index] = file_pos;
|
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
|
_sprite_ptr[load_index] = NULL;
|
|
|
|
|
|
|
|
|
|
#if defined(WANT_NEW_LRU)
|
|
|
|
|
_sprite_lru_new[load_index] = 0;
|
2004-09-08 18:05:49 +00:00
|
|
|
|
#else
|
2004-08-09 17:04:08 +00:00
|
|
|
|
_sprite_lru[load_index] = 0xFFFF;
|
|
|
|
|
_sprite_lru_cur[load_index] = 0;
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2005-02-11 14:33:43 +00:00
|
|
|
|
static void SkipSprites(uint count)
|
2004-08-13 11:28:59 +00:00
|
|
|
|
{
|
2005-08-11 13:09:12 +00:00
|
|
|
|
for (; count > 0; --count) {
|
|
|
|
|
if (!ReadSpriteHeaderSkipData(MAX_SPRITES - 1)) return;
|
2004-08-13 11:28:59 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
|
static int LoadGrfFile(const char *filename, int load_index, int file_index)
|
|
|
|
|
{
|
|
|
|
|
int load_index_org = load_index;
|
|
|
|
|
|
|
|
|
|
FioOpenFile(file_index, filename);
|
2004-11-12 21:51:34 +00:00
|
|
|
|
|
|
|
|
|
/* Thou shalt use LoadNewGrfFile() if thou loadeth a GRF file that
|
|
|
|
|
* might contain some special sprites. */
|
|
|
|
|
_skip_specials = 1;
|
|
|
|
|
_skip_sprites = 0;
|
|
|
|
|
|
2004-11-12 22:28:19 +00:00
|
|
|
|
DEBUG(spritecache, 2) ("Reading grf-file ``%s''", filename);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
|
|
while (LoadNextSprite(load_index, file_index)) {
|
|
|
|
|
load_index++;
|
2005-07-24 15:56:31 +00:00
|
|
|
|
if (load_index >= MAX_SPRITES) {
|
|
|
|
|
error("Too many sprites. Recompile with higher MAX_SPRITES value or remove some custom GRF files.");
|
2004-08-09 17:04:08 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2005-07-24 15:56:31 +00:00
|
|
|
|
DEBUG(spritecache, 2) ("Currently %i sprites are loaded", load_index);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
2004-11-12 21:51:34 +00:00
|
|
|
|
return load_index - load_index_org;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int LoadNewGrfFile(const char *filename, int load_index, int file_index)
|
|
|
|
|
{
|
|
|
|
|
int i;
|
2004-12-12 20:36:24 +00:00
|
|
|
|
|
2004-11-12 21:51:34 +00:00
|
|
|
|
FioOpenFile(file_index, filename);
|
2004-11-12 23:26:02 +00:00
|
|
|
|
_cur_grffile = filename;
|
2004-11-12 21:51:34 +00:00
|
|
|
|
_skip_specials = 0;
|
|
|
|
|
_skip_sprites = 0;
|
|
|
|
|
|
|
|
|
|
DEBUG(spritecache, 2) ("Reading newgrf-file ``%s'' [offset: %u]",
|
2004-11-12 22:28:19 +00:00
|
|
|
|
filename, load_index);
|
2004-11-12 21:51:34 +00:00
|
|
|
|
|
2004-11-17 02:24:21 +00:00
|
|
|
|
/* Skip the first sprite; we don't care about how many sprites this
|
|
|
|
|
* does contain; newest TTDPatches and George's longvehicles don't
|
|
|
|
|
* neither, apparently. */
|
2004-11-12 21:51:34 +00:00
|
|
|
|
{
|
|
|
|
|
int length;
|
|
|
|
|
byte type;
|
|
|
|
|
|
|
|
|
|
length = FioReadWord();
|
|
|
|
|
type = FioReadByte();
|
|
|
|
|
|
2005-02-11 14:33:43 +00:00
|
|
|
|
if (length == 4 && type == 0xFF) {
|
2004-11-17 02:24:21 +00:00
|
|
|
|
FioReadDword();
|
2004-11-12 21:51:34 +00:00
|
|
|
|
} else {
|
|
|
|
|
error("Custom .grf has invalid format.");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2004-11-17 02:24:21 +00:00
|
|
|
|
for (i = 0; LoadNextSprite(load_index + i, file_index); i++) {
|
2005-07-24 15:56:31 +00:00
|
|
|
|
if (load_index + i >= MAX_SPRITES)
|
|
|
|
|
error("Too many sprites (0x%X). Recompile with higher MAX_SPRITES value or remove some custom GRF files.",
|
2004-11-17 02:24:21 +00:00
|
|
|
|
load_index + i);
|
2004-11-12 21:51:34 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-11-12 18:47:19 +00:00
|
|
|
|
/* Clean up. */
|
|
|
|
|
_skip_sprites = 0;
|
2005-08-08 09:49:47 +00:00
|
|
|
|
memset(_replace_sprites_count, 0, sizeof(_replace_sprites_count));
|
|
|
|
|
memset(_replace_sprites_offset, 0, sizeof(_replace_sprites_offset));
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
2004-11-17 02:24:21 +00:00
|
|
|
|
return i;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
}
|
|
|
|
|
|
2005-07-24 15:56:31 +00:00
|
|
|
|
static void LoadGrfIndexed(const char *filename, const SpriteID *index_tbl, int file_index)
|
2004-08-09 17:04:08 +00:00
|
|
|
|
{
|
2004-08-13 11:28:59 +00:00
|
|
|
|
int start;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
|
|
FioOpenFile(file_index, filename);
|
2004-11-12 21:51:34 +00:00
|
|
|
|
_skip_specials = 1;
|
|
|
|
|
_skip_sprites = 0;
|
|
|
|
|
|
2004-11-12 22:28:19 +00:00
|
|
|
|
DEBUG(spritecache, 2) ("Reading indexed grf-file ``%s''", filename);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
2005-02-11 14:33:43 +00:00
|
|
|
|
for (; (start = *index_tbl++) != 0xffff;) {
|
2004-08-13 11:28:59 +00:00
|
|
|
|
int end = *index_tbl++;
|
2005-02-11 14:33:43 +00:00
|
|
|
|
if(start == 0xfffe) { // skip sprites (amount in second var)
|
2004-08-13 11:28:59 +00:00
|
|
|
|
SkipSprites(end);
|
|
|
|
|
} else { // load sprites and use indexes from start to end
|
|
|
|
|
do {
|
2005-05-18 12:53:37 +00:00
|
|
|
|
#ifdef NDEBUG
|
|
|
|
|
LoadNextSprite(start, file_index);
|
|
|
|
|
#else
|
2004-08-13 11:28:59 +00:00
|
|
|
|
bool b = LoadNextSprite(start, file_index);
|
|
|
|
|
assert(b);
|
2005-05-18 12:53:37 +00:00
|
|
|
|
#endif
|
2004-08-13 11:28:59 +00:00
|
|
|
|
} while (++start <= end);
|
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
}
|
2004-09-08 18:05:49 +00:00
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define S_FREE_MASK 1
|
2005-02-11 13:35:27 +00:00
|
|
|
|
|
|
|
|
|
static inline MemBlock* NextBlock(MemBlock* block)
|
|
|
|
|
{
|
|
|
|
|
return (MemBlock*)((byte*)block + (block->size & ~S_FREE_MASK));
|
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
2005-01-22 20:23:18 +00:00
|
|
|
|
static uint32 GetSpriteCacheUsage(void)
|
2004-08-09 17:04:08 +00:00
|
|
|
|
{
|
2005-02-11 13:35:27 +00:00
|
|
|
|
size_t tot_size = 0;
|
|
|
|
|
MemBlock* s;
|
|
|
|
|
|
|
|
|
|
for (s = _spritecache_ptr; s->size != 0; s = NextBlock(s))
|
|
|
|
|
if (!(s->size & S_FREE_MASK)) tot_size += s->size;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
|
|
return tot_size;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2005-01-22 20:23:18 +00:00
|
|
|
|
void IncreaseSpriteLRU(void)
|
2004-08-09 17:04:08 +00:00
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
// Increase all LRU values
|
|
|
|
|
#if defined(WANT_NEW_LRU)
|
|
|
|
|
if (_sprite_lru_counter > 16384) {
|
|
|
|
|
DEBUG(spritecache, 2) ("fixing lru %d, inuse=%d", _sprite_lru_counter, GetSpriteCacheUsage());
|
|
|
|
|
|
2005-07-24 15:56:31 +00:00
|
|
|
|
for (i = 0; i != MAX_SPRITES; i++)
|
2004-08-09 17:04:08 +00:00
|
|
|
|
if (_sprite_ptr[i] != NULL) {
|
|
|
|
|
if (_sprite_lru_new[i] >= 0) {
|
|
|
|
|
_sprite_lru_new[i] = -1;
|
|
|
|
|
} else if (_sprite_lru_new[i] != -32768) {
|
|
|
|
|
_sprite_lru_new[i]--;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
_sprite_lru_counter = 0;
|
|
|
|
|
}
|
|
|
|
|
#else
|
2005-07-24 15:56:31 +00:00
|
|
|
|
for (i = 0; i != MAX_SPRITES; i++)
|
2004-08-09 17:04:08 +00:00
|
|
|
|
if (_sprite_ptr[i] != NULL && _sprite_lru[i] != 65535)
|
|
|
|
|
_sprite_lru[i]++;
|
|
|
|
|
// Reset the lru counter.
|
|
|
|
|
_sprite_lru_counter = 0;
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
// Compact sprite cache every now and then.
|
|
|
|
|
if (++_compact_cache_counter >= 740) {
|
|
|
|
|
CompactSpriteCache();
|
|
|
|
|
_compact_cache_counter = 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Called when holes in the sprite cache should be removed.
|
|
|
|
|
// That is accomplished by moving the cached data.
|
2005-01-22 20:23:18 +00:00
|
|
|
|
static void CompactSpriteCache(void)
|
2004-08-09 17:04:08 +00:00
|
|
|
|
{
|
2005-02-11 13:35:27 +00:00
|
|
|
|
MemBlock *s;
|
2004-09-08 18:05:49 +00:00
|
|
|
|
|
2005-02-11 13:35:27 +00:00
|
|
|
|
DEBUG(spritecache, 2) (
|
|
|
|
|
"compacting sprite cache, inuse=%d", GetSpriteCacheUsage()
|
|
|
|
|
);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
2005-02-11 13:35:27 +00:00
|
|
|
|
for (s = _spritecache_ptr; s->size != 0;) {
|
|
|
|
|
if (s->size & S_FREE_MASK) {
|
|
|
|
|
MemBlock* next = NextBlock(s);
|
|
|
|
|
MemBlock temp;
|
2005-07-05 19:54:35 +00:00
|
|
|
|
void** i;
|
2004-09-08 18:05:49 +00:00
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
|
// Since free blocks are automatically coalesced, this should hold true.
|
2005-02-11 13:35:27 +00:00
|
|
|
|
assert(!(next->size & S_FREE_MASK));
|
2004-09-08 18:05:49 +00:00
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
|
// If the next block is the sentinel block, we can safely return
|
2005-02-11 13:35:27 +00:00
|
|
|
|
if (next->size == 0)
|
2004-08-09 17:04:08 +00:00
|
|
|
|
break;
|
|
|
|
|
|
2005-02-11 13:35:27 +00:00
|
|
|
|
// Locate the sprite belonging to the next pointer.
|
|
|
|
|
for (i = _sprite_ptr; *i != next->data; ++i) {
|
|
|
|
|
assert(i != endof(_sprite_ptr));
|
|
|
|
|
}
|
2004-09-08 18:05:49 +00:00
|
|
|
|
|
2005-02-11 13:35:27 +00:00
|
|
|
|
*i = s->data; // Adjust sprite array entry
|
|
|
|
|
// Swap this and the next block
|
|
|
|
|
temp = *s;
|
|
|
|
|
memmove(s, next, next->size);
|
|
|
|
|
s = NextBlock(s);
|
|
|
|
|
*s = temp;
|
|
|
|
|
|
|
|
|
|
// Coalesce free blocks
|
|
|
|
|
while (NextBlock(s)->size & S_FREE_MASK) {
|
|
|
|
|
s->size += NextBlock(s)->size & ~S_FREE_MASK;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
s = NextBlock(s);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2005-01-22 20:23:18 +00:00
|
|
|
|
static void DeleteEntryFromSpriteCache(void)
|
2004-08-09 17:04:08 +00:00
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
int best = -1;
|
2005-02-11 13:35:27 +00:00
|
|
|
|
MemBlock* s;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
int cur_lru;
|
|
|
|
|
|
|
|
|
|
DEBUG(spritecache, 2) ("DeleteEntryFromSpriteCache, inuse=%d", GetSpriteCacheUsage());
|
|
|
|
|
|
|
|
|
|
#if defined(WANT_NEW_LRU)
|
|
|
|
|
cur_lru = 0xffff;
|
2005-07-24 15:56:31 +00:00
|
|
|
|
for (i = 0; i != MAX_SPRITES; i++) {
|
2005-08-07 11:01:31 +00:00
|
|
|
|
if (_sprite_ptr[i] != NULL && _sprite_lru_new[i] < cur_lru) {
|
2004-08-09 17:04:08 +00:00
|
|
|
|
cur_lru = _sprite_lru_new[i];
|
|
|
|
|
best = i;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
#else
|
|
|
|
|
{
|
|
|
|
|
uint16 cur_lru = 0, cur_lru_cur = 0xffff;
|
2005-07-24 15:56:31 +00:00
|
|
|
|
for (i = 0; i != MAX_SPRITES; i++) {
|
2005-08-07 11:01:31 +00:00
|
|
|
|
if (_sprite_ptr[i] == NULL || _sprite_lru[i] < cur_lru) continue;
|
2004-09-08 18:05:49 +00:00
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
|
// Found a sprite with a higher LRU value, then remember it.
|
|
|
|
|
if (_sprite_lru[i] != cur_lru) {
|
|
|
|
|
cur_lru = _sprite_lru[i];
|
|
|
|
|
best = i;
|
|
|
|
|
|
|
|
|
|
// Else if both sprites were very recently referenced, compare by the cur value instead.
|
|
|
|
|
} else if (cur_lru == 0 && _sprite_lru_cur[i] <= cur_lru_cur) {
|
|
|
|
|
cur_lru_cur = _sprite_lru_cur[i];
|
|
|
|
|
cur_lru = _sprite_lru[i];
|
|
|
|
|
best = i;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
// Display an error message and die, in case we found no sprite at all.
|
|
|
|
|
// This shouldn't really happen, unless all sprites are locked.
|
|
|
|
|
if (best == -1)
|
|
|
|
|
error("Out of sprite memory");
|
|
|
|
|
|
|
|
|
|
// Mark the block as free (the block must be in use)
|
2005-02-11 13:35:27 +00:00
|
|
|
|
s = (MemBlock*)_sprite_ptr[best] - 1;
|
|
|
|
|
assert(!(s->size & S_FREE_MASK));
|
|
|
|
|
s->size |= S_FREE_MASK;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
_sprite_ptr[best] = NULL;
|
|
|
|
|
|
|
|
|
|
// And coalesce adjacent free blocks
|
2005-02-11 13:35:27 +00:00
|
|
|
|
for (s = _spritecache_ptr; s->size != 0; s = NextBlock(s)) {
|
|
|
|
|
if (s->size & S_FREE_MASK) {
|
|
|
|
|
while (NextBlock(s)->size & S_FREE_MASK) {
|
|
|
|
|
s->size += NextBlock(s)->size & ~S_FREE_MASK;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2005-07-05 19:54:35 +00:00
|
|
|
|
static void* AllocSprite(size_t mem_req)
|
2004-08-09 17:04:08 +00:00
|
|
|
|
{
|
2005-07-05 19:54:35 +00:00
|
|
|
|
mem_req += sizeof(MemBlock);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
2005-02-11 13:35:27 +00:00
|
|
|
|
/* Align this to an uint32 boundary. This also makes sure that the 2 least
|
|
|
|
|
* bits are not used, so we could use those for other things. */
|
2004-08-09 17:04:08 +00:00
|
|
|
|
mem_req = (mem_req + sizeof(uint32) - 1) & ~(sizeof(uint32) - 1);
|
|
|
|
|
|
2005-02-11 13:35:27 +00:00
|
|
|
|
for (;;) {
|
|
|
|
|
MemBlock* s;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
2005-02-11 13:35:27 +00:00
|
|
|
|
for (s = _spritecache_ptr; s->size != 0; s = NextBlock(s)) {
|
|
|
|
|
if (s->size & S_FREE_MASK) {
|
|
|
|
|
size_t cur_size = s->size & ~S_FREE_MASK;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
2005-02-11 13:35:27 +00:00
|
|
|
|
/* Is the block exactly the size we need or
|
|
|
|
|
* big enough for an additional free block? */
|
|
|
|
|
if (cur_size == mem_req ||
|
|
|
|
|
cur_size >= mem_req + sizeof(MemBlock)) {
|
|
|
|
|
// Set size and in use
|
|
|
|
|
s->size = mem_req;
|
2004-09-08 18:05:49 +00:00
|
|
|
|
|
2005-02-11 13:35:27 +00:00
|
|
|
|
// Do we need to inject a free block too?
|
|
|
|
|
if (cur_size != mem_req) {
|
|
|
|
|
NextBlock(s)->size = (cur_size - mem_req) | S_FREE_MASK;
|
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
2005-02-11 13:35:27 +00:00
|
|
|
|
return s->data;
|
|
|
|
|
}
|
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
}
|
2004-09-08 18:05:49 +00:00
|
|
|
|
|
2005-02-11 13:35:27 +00:00
|
|
|
|
// Reached sentinel, but no block found yet. Delete some old entry.
|
|
|
|
|
DeleteEntryFromSpriteCache();
|
2004-08-09 17:04:08 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#if defined(NEW_ROTATION)
|
|
|
|
|
#define X15(x) else if (s >= x && s < (x+15)) { s = _rotate_tile_sprite[s - x] + x; }
|
|
|
|
|
#define X19(x) else if (s >= x && s < (x+19)) { s = _rotate_tile_sprite[s - x] + x; }
|
|
|
|
|
#define MAP(from,to,map) else if (s >= from && s <= to) { s = map[s - from] + from; }
|
|
|
|
|
|
|
|
|
|
|
2004-11-14 19:44:06 +00:00
|
|
|
|
static uint RotateSprite(uint s)
|
2004-08-09 17:04:08 +00:00
|
|
|
|
{
|
|
|
|
|
static const byte _rotate_tile_sprite[19] = { 0,2,4,6,8,10,12,14,1,3,5,7,9,11,13,17,18,16,15 };
|
|
|
|
|
static const byte _coast_map[9] = {0, 4, 3, 1, 2, 6, 8, 5, 7};
|
|
|
|
|
static const byte _fence_map[6] = {1, 0, 5, 4, 3, 2};
|
|
|
|
|
|
|
|
|
|
if (0);
|
|
|
|
|
X19(752)
|
|
|
|
|
X15(990-1)
|
|
|
|
|
X19(3924)
|
|
|
|
|
X19(3943)
|
|
|
|
|
X19(3962)
|
|
|
|
|
X19(3981)
|
|
|
|
|
X19(4000)
|
|
|
|
|
X19(4023)
|
|
|
|
|
X19(4042)
|
|
|
|
|
MAP(4061,4069,_coast_map)
|
|
|
|
|
X19(4126)
|
|
|
|
|
X19(4145)
|
|
|
|
|
X19(4164)
|
|
|
|
|
X19(4183)
|
|
|
|
|
X19(4202)
|
|
|
|
|
X19(4221)
|
|
|
|
|
X19(4240)
|
|
|
|
|
X19(4259)
|
|
|
|
|
X19(4259)
|
|
|
|
|
X19(4278)
|
|
|
|
|
MAP(4090, 4095, _fence_map)
|
|
|
|
|
MAP(4096, 4101, _fence_map)
|
|
|
|
|
MAP(4102, 4107, _fence_map)
|
|
|
|
|
MAP(4108, 4113, _fence_map)
|
|
|
|
|
MAP(4114, 4119, _fence_map)
|
|
|
|
|
MAP(4120, 4125, _fence_map)
|
|
|
|
|
return s;
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2005-02-13 08:12:03 +00:00
|
|
|
|
const void *GetRawSprite(SpriteID sprite)
|
2004-08-09 17:04:08 +00:00
|
|
|
|
{
|
2005-07-05 19:54:35 +00:00
|
|
|
|
void* p;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
2005-07-24 15:56:31 +00:00
|
|
|
|
assert(sprite < MAX_SPRITES);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
|
|
#if defined(NEW_ROTATION)
|
|
|
|
|
sprite = RotateSprite(sprite);
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
// Update LRU
|
|
|
|
|
#if defined(WANT_NEW_LRU)
|
|
|
|
|
_sprite_lru_new[sprite] = ++_sprite_lru_counter;
|
|
|
|
|
#else
|
2005-07-08 22:25:24 +00:00
|
|
|
|
_sprite_lru_cur[sprite] = ++_sprite_lru_counter;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
_sprite_lru[sprite] = 0;
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
p = _sprite_ptr[sprite];
|
2005-07-05 19:54:35 +00:00
|
|
|
|
// Load the sprite, if it is not loaded, yet
|
|
|
|
|
if (p == NULL) p = ReadSprite(sprite);
|
2004-09-08 18:05:49 +00:00
|
|
|
|
return p;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
byte _sprite_page_to_load = 0xFF;
|
|
|
|
|
|
2005-07-31 13:08:08 +00:00
|
|
|
|
#define OPENTTD_SPRITES_COUNT 100
|
2005-07-24 15:56:31 +00:00
|
|
|
|
static const SpriteID _openttd_grf_indexes[] = {
|
2005-07-08 22:25:24 +00:00
|
|
|
|
SPR_OPENTTD_BASE + 0, SPR_OPENTTD_BASE + 7, // icons etc
|
2004-12-09 23:16:52 +00:00
|
|
|
|
134, 134, // euro symbol medium size
|
|
|
|
|
582, 582, // euro symbol large size
|
|
|
|
|
358, 358, // euro symbol tiny
|
|
|
|
|
SPR_OPENTTD_BASE+11, SPR_OPENTTD_BASE+57, // more icons
|
2004-08-09 17:04:08 +00:00
|
|
|
|
648, 648, // nordic char: <20>
|
|
|
|
|
616, 616, // nordic char: <20>
|
2005-08-09 12:58:22 +00:00
|
|
|
|
666, 666, // nordic char: <20>
|
2004-08-09 17:04:08 +00:00
|
|
|
|
634, 634, // nordic char: <20>
|
2004-08-27 08:35:38 +00:00
|
|
|
|
SPR_OPENTTD_BASE+62, SPR_OPENTTD_BASE + OPENTTD_SPRITES_COUNT, // more icons
|
2004-08-09 17:04:08 +00:00
|
|
|
|
0xffff,
|
|
|
|
|
};
|
|
|
|
|
|
2005-01-10 01:14:26 +00:00
|
|
|
|
/* FUNCTIONS FOR CHECKING MD5 SUMS OF GRF FILES */
|
|
|
|
|
|
|
|
|
|
/* Check that the supplied MD5 hash matches that stored for the supplied filename */
|
|
|
|
|
static bool CheckMD5Digest(const MD5File file, md5_byte_t *digest, bool warn)
|
|
|
|
|
{
|
2005-07-09 09:24:34 +00:00
|
|
|
|
uint i;
|
2005-01-10 01:14:26 +00:00
|
|
|
|
|
|
|
|
|
/* Loop through each byte of the file MD5 and the stored MD5... */
|
2005-07-09 09:24:34 +00:00
|
|
|
|
for (i = 0; i < 16; i++) if (file.hash[i] != digest[i]) break;
|
2004-12-12 20:36:24 +00:00
|
|
|
|
|
2005-01-10 01:14:26 +00:00
|
|
|
|
/* If all bytes of the MD5's match (i.e. the MD5's match)... */
|
2005-07-09 09:24:34 +00:00
|
|
|
|
if (i == 16) {
|
2005-01-10 01:14:26 +00:00
|
|
|
|
return true;
|
|
|
|
|
} else {
|
2005-07-09 09:24:34 +00:00
|
|
|
|
if (warn) fprintf(stderr, "MD5 of %s is ****INCORRECT**** - File Corrupt.\n", file.filename);
|
2005-01-10 01:14:26 +00:00
|
|
|
|
return false;
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
2005-01-15 08:58:31 +00:00
|
|
|
|
/* Calculate and check the MD5 hash of the supplied filename.
|
2005-01-10 01:14:26 +00:00
|
|
|
|
* returns true if the checksum is correct */
|
|
|
|
|
static bool FileMD5(const MD5File file, bool warn)
|
2004-12-12 20:36:24 +00:00
|
|
|
|
{
|
|
|
|
|
FILE *f;
|
2005-01-10 01:14:26 +00:00
|
|
|
|
char buf[MAX_PATH];
|
2004-12-12 20:36:24 +00:00
|
|
|
|
|
2005-01-10 01:14:26 +00:00
|
|
|
|
// open file
|
|
|
|
|
sprintf(buf, "%s%s", _path.data_dir, file.filename);
|
|
|
|
|
f = fopen(buf, "rb");
|
|
|
|
|
|
|
|
|
|
#if !defined(WIN32)
|
|
|
|
|
if (f == NULL) {
|
2005-02-06 22:25:27 +00:00
|
|
|
|
char *s;
|
2005-01-10 01:14:26 +00:00
|
|
|
|
// make lower case and check again
|
2005-02-11 14:33:43 +00:00
|
|
|
|
for (s = buf + strlen(_path.data_dir) - 1; *s != '\0'; s++)
|
2005-01-10 01:14:26 +00:00
|
|
|
|
*s = tolower(*s);
|
|
|
|
|
f = fopen(buf, "rb");
|
2004-12-12 20:36:24 +00:00
|
|
|
|
}
|
2005-01-10 01:14:26 +00:00
|
|
|
|
#endif
|
2004-12-12 20:36:24 +00:00
|
|
|
|
|
2005-01-03 18:49:45 +00:00
|
|
|
|
if (f != NULL) {
|
2005-07-09 09:24:34 +00:00
|
|
|
|
md5_state_t filemd5state;
|
|
|
|
|
md5_byte_t buffer[1024];
|
|
|
|
|
md5_byte_t digest[16];
|
|
|
|
|
size_t len;
|
|
|
|
|
|
2005-01-10 01:14:26 +00:00
|
|
|
|
md5_init(&filemd5state);
|
2005-07-09 09:24:34 +00:00
|
|
|
|
while ((len = fread(buffer, 1, sizeof(buffer), f)) != 0)
|
2005-01-10 01:14:26 +00:00
|
|
|
|
md5_append(&filemd5state, buffer, len);
|
|
|
|
|
|
2005-07-09 09:24:34 +00:00
|
|
|
|
if (ferror(f) && warn) fprintf(stderr, "Error Reading from %s \n", buf);
|
2005-01-10 01:14:26 +00:00
|
|
|
|
fclose(f);
|
2005-01-15 08:58:31 +00:00
|
|
|
|
|
2005-01-10 01:14:26 +00:00
|
|
|
|
md5_finish(&filemd5state, digest);
|
|
|
|
|
return CheckMD5Digest(file, digest, warn);
|
|
|
|
|
} else { // file not found
|
|
|
|
|
return false;
|
2005-01-15 08:58:31 +00:00
|
|
|
|
}
|
2005-01-10 01:14:26 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Checks, if either the Windows files exist (TRG1R.GRF) or the DOS files (TRG1.GRF)
|
|
|
|
|
* by comparing the MD5 checksums of the files. _use_dos_palette is set accordingly.
|
2005-01-15 08:58:31 +00:00
|
|
|
|
* If neither are found, Windows palette is assumed.
|
2005-01-10 01:14:26 +00:00
|
|
|
|
*
|
|
|
|
|
* (Note: Also checks sample.cat for corruption) */
|
2005-01-22 20:23:18 +00:00
|
|
|
|
void CheckExternalFiles(void)
|
2005-01-10 01:14:26 +00:00
|
|
|
|
{
|
2005-02-11 14:33:43 +00:00
|
|
|
|
uint i;
|
|
|
|
|
// count of files from this version
|
|
|
|
|
uint dos = 0;
|
|
|
|
|
uint win = 0;
|
2005-01-10 01:14:26 +00:00
|
|
|
|
|
2005-07-09 09:24:34 +00:00
|
|
|
|
for (i = 0; i < 2; i++) if (FileMD5(files_dos.basic[i], true)) dos++;
|
|
|
|
|
for (i = 0; i < 3; i++) if (FileMD5(files_dos.landscape[i], true)) dos++;
|
2005-01-10 01:14:26 +00:00
|
|
|
|
|
2005-07-09 09:24:34 +00:00
|
|
|
|
for (i = 0; i < 2; i++) if (FileMD5(files_win.basic[i], true)) win++;
|
|
|
|
|
for (i = 0; i < 3; i++) if (FileMD5(files_win.landscape[i], true)) win++;
|
2005-01-10 01:14:26 +00:00
|
|
|
|
|
2005-02-11 14:33:43 +00:00
|
|
|
|
if (!FileMD5(sample_cat_win, false) && !FileMD5(sample_cat_dos, false))
|
2005-07-09 09:24:34 +00:00
|
|
|
|
fprintf(stderr, "Your sample.cat file is corrupted or missing!\n");
|
2005-01-10 01:14:26 +00:00
|
|
|
|
|
2005-02-18 08:29:17 +00:00
|
|
|
|
/*
|
2005-02-20 09:05:28 +00:00
|
|
|
|
* forced DOS palette via command line -> leave it that way
|
2005-02-18 08:29:17 +00:00
|
|
|
|
* all Windows files present -> Windows palette
|
|
|
|
|
* all DOS files present -> DOS palette
|
|
|
|
|
* no Windows files present and any DOS file present -> DOS palette
|
|
|
|
|
* otherwise -> Windows palette
|
|
|
|
|
*/
|
2005-02-20 09:05:28 +00:00
|
|
|
|
if (_use_dos_palette) {
|
|
|
|
|
return;
|
|
|
|
|
} else if (win == 5) {
|
2005-01-10 01:14:26 +00:00
|
|
|
|
_use_dos_palette = false;
|
2005-02-18 08:32:25 +00:00
|
|
|
|
} else if (dos == 5 || (win == 0 && dos > 0)) {
|
2004-12-12 20:36:24 +00:00
|
|
|
|
_use_dos_palette = true;
|
2005-02-18 08:29:17 +00:00
|
|
|
|
} else {
|
2005-01-10 01:14:26 +00:00
|
|
|
|
_use_dos_palette = false;
|
2004-12-12 20:36:24 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2005-01-22 20:23:18 +00:00
|
|
|
|
static void LoadSpriteTables(void)
|
2004-08-09 17:04:08 +00:00
|
|
|
|
{
|
2005-08-07 17:52:41 +00:00
|
|
|
|
int load_index = 0;
|
2005-02-11 14:33:43 +00:00
|
|
|
|
uint i;
|
|
|
|
|
uint j;
|
|
|
|
|
const FileList *files; // list of grf files to be loaded. Either Windows files or DOS files
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
2004-11-12 23:26:02 +00:00
|
|
|
|
_loading_stage = 1;
|
|
|
|
|
|
2004-09-08 18:05:49 +00:00
|
|
|
|
/*
|
2004-11-12 21:33:18 +00:00
|
|
|
|
* TODO:
|
|
|
|
|
* I think we can live entirely without Indexed GRFs, but I have to
|
|
|
|
|
* invest that further. --octo
|
2004-09-08 18:05:49 +00:00
|
|
|
|
*/
|
|
|
|
|
|
2005-02-11 14:33:43 +00:00
|
|
|
|
files = _use_dos_palette? &files_dos : &files_win;
|
2004-12-12 20:36:24 +00:00
|
|
|
|
|
2005-08-07 17:52:41 +00:00
|
|
|
|
for (i = 0; files->basic[i].filename != NULL; i++) {
|
|
|
|
|
load_index += LoadGrfFile(files->basic[i].filename, load_index, i);
|
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
2005-08-07 17:52:41 +00:00
|
|
|
|
LoadGrfIndexed("openttd.grf", _openttd_grf_indexes, i++);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
2005-08-07 17:52:41 +00:00
|
|
|
|
if (_sprite_page_to_load != 0) {
|
|
|
|
|
LoadGrfIndexed(
|
|
|
|
|
files->landscape[_sprite_page_to_load - 1].filename,
|
|
|
|
|
_landscape_spriteindexes[_sprite_page_to_load - 1],
|
|
|
|
|
i++
|
|
|
|
|
);
|
|
|
|
|
}
|
2004-09-08 18:05:49 +00:00
|
|
|
|
|
2005-08-07 17:52:41 +00:00
|
|
|
|
LoadGrfIndexed("trkfoundw.grf", _slopes_spriteindexes[_opt.landscape], i++);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
2005-08-07 17:52:41 +00:00
|
|
|
|
load_index = SPR_AUTORAIL_BASE;
|
|
|
|
|
load_index += LoadGrfFile("autorail.grf", load_index, i++);
|
2005-01-19 20:55:23 +00:00
|
|
|
|
|
2005-08-07 17:52:41 +00:00
|
|
|
|
load_index = SPR_CANALS_BASE;
|
|
|
|
|
load_index += LoadGrfFile("canalsw.grf", load_index, i++);
|
2004-08-27 08:28:41 +00:00
|
|
|
|
|
2005-08-07 17:52:41 +00:00
|
|
|
|
load_index = SPR_OPENTTD_BASE + OPENTTD_SPRITES_COUNT + 1;
|
2004-08-27 08:28:41 +00:00
|
|
|
|
|
2004-11-12 23:26:02 +00:00
|
|
|
|
|
2005-08-07 17:52:41 +00:00
|
|
|
|
/* Load newgrf sprites
|
|
|
|
|
* in each loading stage, (try to) open each file specified in the config
|
|
|
|
|
* and load information from it. */
|
|
|
|
|
_custom_sprites_base = load_index;
|
|
|
|
|
for (_loading_stage = 0; _loading_stage < 2; _loading_stage++) {
|
|
|
|
|
load_index = _custom_sprites_base;
|
|
|
|
|
for (j = 0; j != lengthof(_newgrf_files) && _newgrf_files[j]; j++) {
|
|
|
|
|
if (!FiosCheckFileExists(_newgrf_files[j])) {
|
|
|
|
|
// TODO: usrerror()
|
|
|
|
|
error("NewGRF file missing: %s", _newgrf_files[j]);
|
2005-01-28 08:56:43 +00:00
|
|
|
|
}
|
2005-08-07 17:52:41 +00:00
|
|
|
|
if (_loading_stage == 0) InitNewGRFFile(_newgrf_files[j], load_index);
|
|
|
|
|
load_index += LoadNewGrfFile(_newgrf_files[j], load_index, i++);
|
|
|
|
|
DEBUG(spritecache, 2) ("Currently %i sprites are loaded", load_index);
|
2004-11-12 22:28:19 +00:00
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_compact_cache_counter = 0;
|
|
|
|
|
}
|
|
|
|
|
|
2005-02-11 13:35:27 +00:00
|
|
|
|
static void GfxInitSpriteMem(void *ptr, uint32 size)
|
2004-08-09 17:04:08 +00:00
|
|
|
|
{
|
|
|
|
|
// initialize sprite cache heap
|
|
|
|
|
_spritecache_ptr = ptr;
|
|
|
|
|
|
|
|
|
|
// A big free block
|
2005-02-11 13:35:27 +00:00
|
|
|
|
_spritecache_ptr->size = (size - sizeof(MemBlock)) | S_FREE_MASK;
|
|
|
|
|
// Sentinel block (identified by size == 0)
|
|
|
|
|
NextBlock(_spritecache_ptr)->size = 0;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
|
|
memset(_sprite_ptr, 0, sizeof(_sprite_ptr));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2005-01-22 20:23:18 +00:00
|
|
|
|
void GfxLoadSprites(void)
|
|
|
|
|
{
|
2004-08-09 17:04:08 +00:00
|
|
|
|
static byte *_sprite_mem;
|
2004-09-08 18:05:49 +00:00
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
|
// Need to reload the sprites only if the landscape changed
|
|
|
|
|
if (_sprite_page_to_load != _opt.landscape) {
|
|
|
|
|
_sprite_page_to_load = _opt.landscape;
|
|
|
|
|
|
|
|
|
|
// Sprite cache
|
|
|
|
|
DEBUG(spritecache, 1) ("Loading sprite set %d.", _sprite_page_to_load);
|
|
|
|
|
|
|
|
|
|
// Reuse existing memory?
|
|
|
|
|
if (_sprite_mem == NULL) _sprite_mem = malloc(SPRITE_CACHE_SIZE);
|
|
|
|
|
GfxInitSpriteMem(_sprite_mem, SPRITE_CACHE_SIZE);
|
|
|
|
|
LoadSpriteTables();
|
|
|
|
|
GfxInitPalettes();
|
|
|
|
|
}
|
|
|
|
|
}
|