2004-08-09 17:04:08 +00:00
|
|
|
#include "stdafx.h"
|
2005-06-02 19:39:29 +00:00
|
|
|
#include "openttd.h"
|
2005-07-22 07:02:20 +00:00
|
|
|
#include "functions.h"
|
2005-02-21 18:59:54 +00:00
|
|
|
#include "window.h"
|
2005-02-06 13:41:02 +00:00
|
|
|
#include "string.h"
|
2004-11-25 10:47:30 +00:00
|
|
|
#include "table/strings.h"
|
2004-08-09 17:04:08 +00:00
|
|
|
#include "hal.h"
|
2005-07-21 22:15:02 +00:00
|
|
|
#include "variables.h"
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
#include <dirent.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <pwd.h>
|
2005-03-15 14:23:00 +00:00
|
|
|
#include <signal.h>
|
2005-06-06 12:11:44 +00:00
|
|
|
#if !defined(__MORPHOS__) && !defined(__AMIGA__)
|
|
|
|
#include <pthread.h>
|
|
|
|
#endif
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2005-05-21 19:42:34 +00:00
|
|
|
#if (defined(_POSIX_VERSION) && _POSIX_VERSION >= 200112L) || defined(__GLIBC__)
|
2005-03-28 15:40:05 +00:00
|
|
|
#define HAS_STATVFS
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAS_STATVFS
|
2004-08-09 17:04:08 +00:00
|
|
|
#include <sys/statvfs.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#if defined(WITH_SDL)
|
|
|
|
#include <SDL.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __MORPHOS__
|
|
|
|
#include <exec/types.h>
|
|
|
|
ULONG __stack = (1024*1024)*2; // maybe not that much is needed actually ;)
|
|
|
|
#endif /* __MORPHOS__ */
|
|
|
|
|
2004-12-22 21:12:36 +00:00
|
|
|
#ifdef __AMIGA__
|
|
|
|
#warning add stack symbol to avoid that user needs to set stack manually (tokai)
|
2005-01-06 18:45:28 +00:00
|
|
|
// ULONG __stack =
|
2004-12-22 21:12:36 +00:00
|
|
|
#endif
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
static char *_fios_path;
|
|
|
|
static char *_fios_save_path;
|
|
|
|
static char *_fios_scn_path;
|
|
|
|
static FiosItem *_fios_items;
|
|
|
|
static int _fios_count, _fios_alloc;
|
|
|
|
|
2005-01-22 20:23:18 +00:00
|
|
|
static FiosItem *FiosAlloc(void)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
|
|
|
if (_fios_count == _fios_alloc) {
|
|
|
|
_fios_alloc += 256;
|
|
|
|
_fios_items = realloc(_fios_items, _fios_alloc * sizeof(FiosItem));
|
|
|
|
}
|
|
|
|
return &_fios_items[_fios_count++];
|
|
|
|
}
|
|
|
|
|
2005-03-11 14:14:54 +00:00
|
|
|
int compare_FiosItems(const void *a, const void *b)
|
|
|
|
{
|
|
|
|
const FiosItem *da = (const FiosItem *)a;
|
|
|
|
const FiosItem *db = (const FiosItem *)b;
|
2004-08-09 17:04:08 +00:00
|
|
|
int r;
|
|
|
|
|
|
|
|
if (_savegame_sort_order < 2) // sort by date
|
2005-03-11 14:14:54 +00:00
|
|
|
r = da->mtime < db->mtime ? -1 : 1;
|
2004-09-10 19:02:27 +00:00
|
|
|
else
|
2005-07-17 15:58:47 +00:00
|
|
|
r = strcasecmp(da->title, db->title);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
if (_savegame_sort_order & 1) r = -r;
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Get a list of savegames
|
|
|
|
FiosItem *FiosGetSavegameList(int *num, int mode)
|
|
|
|
{
|
|
|
|
FiosItem *fios;
|
|
|
|
DIR *dir;
|
|
|
|
struct dirent *dirent;
|
|
|
|
struct stat sb;
|
|
|
|
int sort_start;
|
|
|
|
char filename[MAX_PATH];
|
|
|
|
|
|
|
|
if (_fios_save_path == NULL) {
|
|
|
|
_fios_save_path = malloc(MAX_PATH);
|
|
|
|
strcpy(_fios_save_path, _path.save_dir);
|
|
|
|
}
|
|
|
|
|
2005-07-17 15:58:47 +00:00
|
|
|
_fios_path = _fios_save_path;
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
// Parent directory, only if not in root already.
|
2005-03-09 17:45:51 +00:00
|
|
|
if (_fios_path[1] != '\0') {
|
2004-08-09 17:04:08 +00:00
|
|
|
fios = FiosAlloc();
|
|
|
|
fios->type = FIOS_TYPE_PARENT;
|
|
|
|
fios->mtime = 0;
|
2005-03-26 18:04:42 +00:00
|
|
|
strcpy(fios->name, "..");
|
2005-03-07 00:39:41 +00:00
|
|
|
strcpy(fios->title, ".. (Parent directory)");
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Show subdirectories first
|
2005-03-11 14:14:54 +00:00
|
|
|
dir = opendir(_fios_path[0] != '\0' ? _fios_path : "/");
|
2004-08-09 17:04:08 +00:00
|
|
|
if (dir != NULL) {
|
2005-03-09 17:45:51 +00:00
|
|
|
while ((dirent = readdir(dir)) != NULL) {
|
|
|
|
snprintf(filename, lengthof(filename), "%s/%s",
|
|
|
|
_fios_path, dirent->d_name);
|
|
|
|
if (!stat(filename, &sb) && S_ISDIR(sb.st_mode) &&
|
|
|
|
dirent->d_name[0] != '.') {
|
2005-03-07 00:39:41 +00:00
|
|
|
fios = FiosAlloc();
|
|
|
|
fios->type = FIOS_TYPE_DIR;
|
2005-03-11 14:14:54 +00:00
|
|
|
fios->mtime = 0;
|
|
|
|
ttd_strlcpy(fios->name, dirent->d_name, lengthof(fios->name));
|
|
|
|
snprintf(fios->title, lengthof(fios->title),
|
|
|
|
"%s/ (Directory)", dirent->d_name);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
closedir(dir);
|
|
|
|
}
|
|
|
|
|
2004-09-23 21:16:23 +00:00
|
|
|
{
|
|
|
|
/* XXX ugly global variables ... */
|
|
|
|
byte order = _savegame_sort_order;
|
|
|
|
_savegame_sort_order = 2; // sort ascending by name
|
|
|
|
qsort(_fios_items, _fios_count, sizeof(FiosItem), compare_FiosItems);
|
|
|
|
_savegame_sort_order = order;
|
|
|
|
}
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
// this is where to start sorting
|
|
|
|
sort_start = _fios_count;
|
|
|
|
|
2005-03-11 14:14:54 +00:00
|
|
|
/* Show savegame files
|
|
|
|
* .SAV OpenTTD saved game
|
|
|
|
* .SS1 Transport Tycoon Deluxe preset game
|
|
|
|
* .SV1 Transport Tycoon Deluxe (Patch) saved game
|
|
|
|
* .SV2 Transport Tycoon Deluxe (Patch) saved 2-player game
|
2004-08-09 17:04:08 +00:00
|
|
|
*/
|
2005-03-09 17:45:51 +00:00
|
|
|
dir = opendir(_fios_path[0] != '\0' ? _fios_path : "/");
|
2004-08-09 17:04:08 +00:00
|
|
|
if (dir != NULL) {
|
2005-03-11 14:14:54 +00:00
|
|
|
while ((dirent = readdir(dir)) != NULL) {
|
2005-03-07 00:39:41 +00:00
|
|
|
char *t;
|
|
|
|
|
2005-03-09 17:45:51 +00:00
|
|
|
snprintf(filename, lengthof(filename), "%s/%s",
|
|
|
|
_fios_path, dirent->d_name);
|
|
|
|
if (stat(filename, &sb) || S_ISDIR(sb.st_mode)) continue;
|
2005-03-07 00:39:41 +00:00
|
|
|
|
|
|
|
t = strrchr(dirent->d_name, '.');
|
2005-03-09 17:45:51 +00:00
|
|
|
if (t != NULL && strcasecmp(t, ".sav") == 0) { // OpenTTD
|
2005-03-07 00:39:41 +00:00
|
|
|
fios = FiosAlloc();
|
|
|
|
fios->type = FIOS_TYPE_FILE;
|
|
|
|
fios->mtime = sb.st_mtime;
|
2005-03-11 14:14:54 +00:00
|
|
|
ttd_strlcpy(fios->name, dirent->d_name, lengthof(fios->name));
|
2005-07-17 15:58:47 +00:00
|
|
|
|
|
|
|
*t = '\0'; // strip extension
|
|
|
|
ttd_strlcpy(fios->title, dirent->d_name, lengthof(fios->title));
|
2005-03-07 00:39:41 +00:00
|
|
|
} else if (mode == SLD_LOAD_GAME || mode == SLD_LOAD_SCENARIO) {
|
2005-03-09 17:45:51 +00:00
|
|
|
if (t != NULL && (
|
2005-03-11 14:14:54 +00:00
|
|
|
strcasecmp(t, ".ss1") == 0 ||
|
|
|
|
strcasecmp(t, ".sv1") == 0 ||
|
|
|
|
strcasecmp(t, ".sv2") == 0
|
2005-03-09 17:45:51 +00:00
|
|
|
)) { // TTDLX(Patch)
|
2005-03-07 00:39:41 +00:00
|
|
|
fios = FiosAlloc();
|
|
|
|
fios->type = FIOS_TYPE_OLDFILE;
|
|
|
|
fios->mtime = sb.st_mtime;
|
2005-03-11 14:14:54 +00:00
|
|
|
ttd_strlcpy(fios->name, dirent->d_name, lengthof(fios->name));
|
2005-03-07 00:39:41 +00:00
|
|
|
GetOldSaveGameName(fios->title, filename);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
closedir(dir);
|
|
|
|
}
|
|
|
|
|
|
|
|
qsort(_fios_items + sort_start, _fios_count - sort_start, sizeof(FiosItem), compare_FiosItems);
|
2005-03-11 14:14:54 +00:00
|
|
|
*num = _fios_count;
|
2004-08-09 17:04:08 +00:00
|
|
|
return _fios_items;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get a list of scenarios
|
2005-03-07 00:39:41 +00:00
|
|
|
// FIXME: Gross code duplication with FiosGetSavegameList()
|
2004-08-09 17:04:08 +00:00
|
|
|
FiosItem *FiosGetScenarioList(int *num, int mode)
|
|
|
|
{
|
|
|
|
FiosItem *fios;
|
|
|
|
DIR *dir;
|
|
|
|
struct dirent *dirent;
|
|
|
|
struct stat sb;
|
|
|
|
int sort_start;
|
|
|
|
char filename[MAX_PATH];
|
|
|
|
|
|
|
|
if (_fios_scn_path == NULL) {
|
|
|
|
_fios_scn_path = malloc(MAX_PATH);
|
|
|
|
strcpy(_fios_scn_path, _path.scenario_dir);
|
|
|
|
}
|
|
|
|
_fios_path = _fios_scn_path;
|
|
|
|
|
2005-03-11 14:14:54 +00:00
|
|
|
// Parent directory, only if not of the type C:\.
|
|
|
|
if (_fios_path[1] != '\0' && mode != SLD_NEW_GAME) {
|
|
|
|
fios = FiosAlloc();
|
|
|
|
fios->type = FIOS_TYPE_PARENT;
|
|
|
|
fios->mtime = 0;
|
|
|
|
strcpy(fios->title, ".. (Parent directory)");
|
|
|
|
}
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
// Show subdirectories first
|
|
|
|
dir = opendir(_fios_path[0] ? _fios_path : "/");
|
|
|
|
if (dir != NULL) {
|
2005-03-09 17:45:51 +00:00
|
|
|
while ((dirent = readdir(dir)) != NULL) {
|
|
|
|
snprintf(filename, lengthof(filename), "%s/%s",
|
|
|
|
_fios_path, dirent->d_name);
|
|
|
|
if (!stat(filename, &sb) && S_ISDIR(sb.st_mode) &&
|
|
|
|
dirent->d_name[0] != '.') {
|
2005-03-07 00:39:41 +00:00
|
|
|
fios = FiosAlloc();
|
|
|
|
fios->type = FIOS_TYPE_DIR;
|
2005-03-11 14:14:54 +00:00
|
|
|
fios->mtime = 0;
|
|
|
|
ttd_strlcpy(fios->name, dirent->d_name, lengthof(fios->name));
|
2005-07-17 15:58:47 +00:00
|
|
|
snprintf(fios->title, lengthof(fios->title), "%s/ (Directory)", dirent->d_name);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
closedir(dir);
|
|
|
|
}
|
|
|
|
|
|
|
|
// this is where to start sorting
|
|
|
|
sort_start = _fios_count;
|
|
|
|
|
2005-03-11 14:14:54 +00:00
|
|
|
/* Show scenario files
|
|
|
|
* .SCN OpenTTD style scenario file
|
|
|
|
* .SV0 Transport Tycoon Deluxe (Patch) scenario
|
|
|
|
* .SS0 Transport Tycoon Deluxe preset scenario
|
2004-08-09 17:04:08 +00:00
|
|
|
*/
|
|
|
|
dir = opendir(_fios_path[0] ? _fios_path : "/");
|
|
|
|
if (dir != NULL) {
|
2005-03-09 17:45:51 +00:00
|
|
|
while ((dirent = readdir(dir)) != NULL) {
|
2005-03-07 00:39:41 +00:00
|
|
|
char *t;
|
|
|
|
|
2005-07-17 15:58:47 +00:00
|
|
|
snprintf(filename, lengthof(filename), "%s/%s", _fios_path, dirent->d_name);
|
2005-03-09 17:45:51 +00:00
|
|
|
if (stat(filename, &sb) || S_ISDIR(sb.st_mode)) continue;
|
2005-03-07 00:39:41 +00:00
|
|
|
|
|
|
|
t = strrchr(dirent->d_name, '.');
|
2005-03-11 14:14:54 +00:00
|
|
|
if (t != NULL && strcasecmp(t, ".scn") == 0) { // OpenTTD
|
2005-03-07 00:39:41 +00:00
|
|
|
fios = FiosAlloc();
|
|
|
|
fios->type = FIOS_TYPE_SCENARIO;
|
|
|
|
fios->mtime = sb.st_mtime;
|
2005-03-11 14:14:54 +00:00
|
|
|
ttd_strlcpy(fios->name, dirent->d_name, lengthof(fios->name));
|
2005-07-17 15:58:47 +00:00
|
|
|
|
|
|
|
*t = '\0'; // strip extension
|
|
|
|
ttd_strlcpy(fios->title, dirent->d_name, lengthof(fios->title));
|
2005-03-09 17:45:51 +00:00
|
|
|
} else if (mode == SLD_LOAD_GAME || mode == SLD_LOAD_SCENARIO ||
|
|
|
|
mode == SLD_NEW_GAME) {
|
|
|
|
if (t != NULL && (
|
2005-03-11 14:14:54 +00:00
|
|
|
strcasecmp(t, ".sv0") == 0 ||
|
|
|
|
strcasecmp(t, ".ss0") == 0
|
|
|
|
)) { // TTDLX(Patch)
|
2005-03-07 00:39:41 +00:00
|
|
|
fios = FiosAlloc();
|
|
|
|
fios->type = FIOS_TYPE_OLD_SCENARIO;
|
|
|
|
fios->mtime = sb.st_mtime;
|
|
|
|
GetOldScenarioGameName(fios->title, filename);
|
2005-03-11 14:14:54 +00:00
|
|
|
ttd_strlcpy(fios->name, dirent->d_name, lengthof(fios->name));
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
closedir(dir);
|
|
|
|
}
|
|
|
|
|
|
|
|
qsort(_fios_items + sort_start, _fios_count - sort_start, sizeof(FiosItem), compare_FiosItems);
|
2005-03-11 14:14:54 +00:00
|
|
|
*num = _fios_count;
|
2004-08-09 17:04:08 +00:00
|
|
|
return _fios_items;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Free the list of savegames
|
2005-01-22 20:23:18 +00:00
|
|
|
void FiosFreeSavegameList(void)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
|
|
|
free(_fios_items);
|
|
|
|
_fios_items = NULL;
|
|
|
|
_fios_alloc = _fios_count = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Browse to
|
|
|
|
char *FiosBrowseTo(const FiosItem *item)
|
|
|
|
{
|
|
|
|
char *path = _fios_path;
|
|
|
|
char *s;
|
|
|
|
|
2005-03-09 17:45:51 +00:00
|
|
|
switch (item->type) {
|
|
|
|
case FIOS_TYPE_PARENT:
|
|
|
|
s = strrchr(path, '/');
|
|
|
|
if (s != NULL) *s = '\0';
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FIOS_TYPE_DIR:
|
|
|
|
s = strchr(item->name, '/');
|
|
|
|
if (s != NULL) *s = '\0';
|
|
|
|
strcat(path, "/");
|
|
|
|
strcat(path, item->name);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FIOS_TYPE_FILE:
|
|
|
|
case FIOS_TYPE_OLDFILE:
|
|
|
|
case FIOS_TYPE_SCENARIO:
|
2005-03-11 14:14:54 +00:00
|
|
|
case FIOS_TYPE_OLD_SCENARIO: {
|
|
|
|
static char str_buffr[512];
|
2005-03-09 17:45:51 +00:00
|
|
|
|
2005-03-11 14:14:54 +00:00
|
|
|
sprintf(str_buffr, "%s/%s", path, item->name);
|
2005-03-09 17:45:51 +00:00
|
|
|
return str_buffr;
|
2005-03-11 14:14:54 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2005-03-28 13:30:51 +00:00
|
|
|
/**
|
|
|
|
* Get descriptive texts. Returns the path and free space
|
|
|
|
* left on the device
|
|
|
|
* @param path string describing the path
|
|
|
|
* @param tfs total free space in megabytes, optional (can be NULL)
|
|
|
|
* @return StringID describing the path (free space or failure)
|
|
|
|
*/
|
|
|
|
StringID FiosGetDescText(const char **path, uint32 *tot)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2005-03-28 13:30:51 +00:00
|
|
|
uint32 free = 0;
|
2005-03-09 17:45:51 +00:00
|
|
|
*path = _fios_path[0] != '\0' ? _fios_path : "/";
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2005-03-28 15:40:05 +00:00
|
|
|
#ifdef HAS_STATVFS
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2005-03-09 17:45:51 +00:00
|
|
|
struct statvfs s;
|
|
|
|
|
2005-03-28 15:40:05 +00:00
|
|
|
if (statvfs(*path, &s) == 0) {
|
|
|
|
free = (uint64)s.f_frsize * s.f_bavail >> 20;
|
2005-03-09 17:45:51 +00:00
|
|
|
} else
|
|
|
|
return STR_4006_UNABLE_TO_READ_DRIVE;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
#endif
|
2005-03-28 13:30:51 +00:00
|
|
|
if (tot != NULL) *tot = free;
|
|
|
|
return STR_4005_BYTES_FREE;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void FiosMakeSavegameName(char *buf, const char *name)
|
|
|
|
{
|
2005-03-15 14:06:28 +00:00
|
|
|
const char* extension;
|
|
|
|
const char* period;
|
|
|
|
|
2005-03-09 17:45:51 +00:00
|
|
|
if (_game_mode == GM_EDITOR)
|
2005-03-15 14:06:28 +00:00
|
|
|
extension = ".scn";
|
2004-08-09 17:04:08 +00:00
|
|
|
else
|
2005-03-15 14:06:28 +00:00
|
|
|
extension = ".sav";
|
|
|
|
|
|
|
|
// Don't append the extension, if it is already there
|
|
|
|
period = strrchr(name, '.');
|
|
|
|
if (period != NULL && strcasecmp(period, extension) == 0) extension = "";
|
|
|
|
|
|
|
|
sprintf(buf, "%s/%s%s", _fios_path, name, extension);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void FiosDelete(const char *name)
|
|
|
|
{
|
2005-02-07 12:32:35 +00:00
|
|
|
char path[512];
|
|
|
|
|
2005-03-12 09:24:27 +00:00
|
|
|
snprintf(path, lengthof(path), "%s/%s", _fios_path, name);
|
2004-08-09 17:04:08 +00:00
|
|
|
unlink(path);
|
|
|
|
}
|
|
|
|
|
|
|
|
const DriverDesc _video_driver_descs[] = {
|
2004-09-07 23:41:09 +00:00
|
|
|
{"null", "Null Video Driver", &_null_video_driver, 0},
|
2004-08-09 17:04:08 +00:00
|
|
|
#if defined(WITH_SDL)
|
2004-09-07 23:41:09 +00:00
|
|
|
{ "sdl", "SDL Video Driver", &_sdl_video_driver, 1},
|
2004-08-09 17:04:08 +00:00
|
|
|
#endif
|
2004-12-04 17:54:56 +00:00
|
|
|
{ "dedicated", "Dedicated Video Driver", &_dedicated_video_driver, 0},
|
2004-09-07 23:41:09 +00:00
|
|
|
{ NULL, NULL, NULL, 0}
|
2004-08-09 17:04:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
const DriverDesc _sound_driver_descs[] = {
|
2004-09-07 23:41:09 +00:00
|
|
|
{"null", "Null Sound Driver", &_null_sound_driver, 0},
|
2004-08-09 17:04:08 +00:00
|
|
|
#if defined(WITH_SDL)
|
2004-09-07 23:41:09 +00:00
|
|
|
{ "sdl", "SDL Sound Driver", &_sdl_sound_driver, 1},
|
2004-08-09 17:04:08 +00:00
|
|
|
#endif
|
2004-09-07 23:41:09 +00:00
|
|
|
{ NULL, NULL, NULL, 0}
|
2004-08-09 17:04:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#if defined(__APPLE__)
|
|
|
|
#define EXTMIDI_PRI 2
|
|
|
|
#else
|
|
|
|
#define EXTMIDI_PRI 0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
const DriverDesc _music_driver_descs[] = {
|
|
|
|
#ifndef __BEOS__
|
2004-12-08 16:27:54 +00:00
|
|
|
#if !defined(__MORPHOS__) && !defined(__AMIGA__)
|
|
|
|
// MorphOS and AmigaOS have no music support
|
2004-09-07 23:41:09 +00:00
|
|
|
{"extmidi", "External MIDI Driver", &_extmidi_music_driver, EXTMIDI_PRI},
|
2004-08-09 17:04:08 +00:00
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#ifdef __BEOS__
|
2004-09-07 23:41:09 +00:00
|
|
|
{ "bemidi", "BeOS MIDI Driver", &_bemidi_music_driver, 1},
|
2004-09-10 19:02:27 +00:00
|
|
|
#endif
|
2004-09-07 23:41:09 +00:00
|
|
|
{ "null", "Null Music Driver", &_null_music_driver, 1},
|
|
|
|
{ NULL, NULL, NULL, 0}
|
2004-08-09 17:04:08 +00:00
|
|
|
};
|
|
|
|
|
2004-09-12 22:03:14 +00:00
|
|
|
/* GetOSVersion returns the minimal required version of OS to be able to use that driver.
|
|
|
|
Not needed for *nix. */
|
2005-01-22 20:23:18 +00:00
|
|
|
byte GetOSVersion(void)
|
2004-09-12 22:03:14 +00:00
|
|
|
{
|
2004-12-29 13:13:29 +00:00
|
|
|
return 2; // any arbitrary number bigger than 0
|
2004-09-16 16:44:36 +00:00
|
|
|
// numbers lower than 2 breaks default music selection on mac
|
2004-09-12 22:03:14 +00:00
|
|
|
}
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
bool FileExists(const char *filename)
|
|
|
|
{
|
2004-09-10 19:02:27 +00:00
|
|
|
return access(filename, 0) == 0;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int LanguageCompareFunc(const void *a, const void *b)
|
|
|
|
{
|
2004-09-12 21:49:38 +00:00
|
|
|
return strcmp(*(const char* const *)a, *(const char* const *)b);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int GetLanguageList(char **languages, int max)
|
|
|
|
{
|
|
|
|
DIR *dir;
|
|
|
|
struct dirent *dirent;
|
|
|
|
int num = 0;
|
|
|
|
|
|
|
|
dir = opendir(_path.lang_dir);
|
|
|
|
if (dir != NULL) {
|
2005-03-09 17:45:51 +00:00
|
|
|
while ((dirent = readdir(dir)) != NULL) {
|
2004-08-09 17:04:08 +00:00
|
|
|
char *t = strrchr(dirent->d_name, '.');
|
2005-03-09 17:45:51 +00:00
|
|
|
|
|
|
|
if (t != NULL && strcmp(t, ".lng") == 0) {
|
2004-08-09 17:04:08 +00:00
|
|
|
languages[num++] = strdup(dirent->d_name);
|
|
|
|
if (num == max) break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
closedir(dir);
|
|
|
|
}
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
qsort(languages, num, sizeof(char*), LanguageCompareFunc);
|
|
|
|
return num;
|
|
|
|
}
|
|
|
|
|
2005-01-17 10:17:18 +00:00
|
|
|
#if defined(__BEOS__) || defined(__linux__)
|
2004-11-14 19:44:06 +00:00
|
|
|
static void ChangeWorkingDirectory(char *exe)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
|
|
|
char *s = strrchr(exe, '/');
|
|
|
|
if (s != NULL) {
|
2005-03-09 17:45:51 +00:00
|
|
|
*s = '\0';
|
2004-08-09 17:04:08 +00:00
|
|
|
chdir(exe);
|
|
|
|
*s = '/';
|
|
|
|
}
|
|
|
|
}
|
2005-01-17 10:17:18 +00:00
|
|
|
#endif
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
void ShowInfo(const char *str)
|
|
|
|
{
|
|
|
|
puts(str);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ShowOSErrorBox(const char *buf)
|
|
|
|
{
|
|
|
|
#if defined(__APPLE__)
|
2004-12-01 15:23:05 +00:00
|
|
|
// this creates an error in the console and then opens the console.
|
|
|
|
// Colourcodes are not used in the console, so they are skipped here
|
|
|
|
fprintf(stderr, "Error: %s", buf);
|
2004-12-07 17:16:57 +00:00
|
|
|
system("/Applications/Utilities/Console.app/Contents/MacOS/Console &");
|
2004-12-01 15:23:05 +00:00
|
|
|
#else
|
|
|
|
// all systems, but OSX
|
|
|
|
fprintf(stderr, "\033[1;31mError: %s\033[0;39m\n", buf);
|
2004-08-09 17:04:08 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
int CDECL main(int argc, char* argv[])
|
|
|
|
{
|
|
|
|
// change the working directory to enable doubleclicking in UIs
|
2005-01-17 10:17:18 +00:00
|
|
|
#if defined(__BEOS__) || defined(__linux__)
|
2004-08-09 17:04:08 +00:00
|
|
|
ChangeWorkingDirectory(argv[0]);
|
|
|
|
#endif
|
|
|
|
|
2004-09-11 19:34:11 +00:00
|
|
|
_random_seeds[0][1] = _random_seeds[0][0] = time(NULL);
|
2005-07-15 20:29:06 +00:00
|
|
|
SeedMT(_random_seeds[0][1]);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2005-03-15 14:23:00 +00:00
|
|
|
signal(SIGPIPE, SIG_IGN);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
return ttd_main(argc, argv);
|
|
|
|
}
|
|
|
|
|
2005-01-22 20:23:18 +00:00
|
|
|
void DeterminePaths(void)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
|
|
|
char *s;
|
|
|
|
|
2005-03-09 17:45:51 +00:00
|
|
|
_path.game_data_dir = malloc(MAX_PATH);
|
2004-12-07 17:16:57 +00:00
|
|
|
ttd_strlcpy(_path.game_data_dir, GAME_DATA_DIR, MAX_PATH);
|
|
|
|
#if defined SECOND_DATA_DIR
|
2005-03-09 17:45:51 +00:00
|
|
|
_path.second_data_dir = malloc(MAX_PATH);
|
|
|
|
ttd_strlcpy(_path.second_data_dir, SECOND_DATA_DIR, MAX_PATH);
|
2004-12-07 17:16:57 +00:00
|
|
|
#endif
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
#if defined(USE_HOMEDIR)
|
|
|
|
{
|
2005-03-09 17:45:51 +00:00
|
|
|
const char *homedir = getenv("HOME");
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2005-03-09 17:45:51 +00:00
|
|
|
if (homedir == NULL) {
|
|
|
|
const struct passwd *pw = getpwuid(getuid());
|
|
|
|
if (pw != NULL) homedir = pw->pw_dir;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
_path.personal_dir = str_fmt("%s" PATHSEP "%s", homedir, PERSONAL_DIR);
|
|
|
|
}
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
#else /* not defined(USE_HOMEDIR) */
|
|
|
|
|
2005-03-09 17:45:51 +00:00
|
|
|
_path.personal_dir = malloc(MAX_PATH);
|
2004-12-07 17:16:57 +00:00
|
|
|
ttd_strlcpy(_path.personal_dir, PERSONAL_DIR, MAX_PATH);
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
// check if absolute or relative path
|
|
|
|
s = strchr(_path.personal_dir, '/');
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
// add absolute path
|
2005-03-09 17:45:51 +00:00
|
|
|
if (s == NULL || _path.personal_dir != s) {
|
2004-08-09 17:04:08 +00:00
|
|
|
getcwd(_path.personal_dir, MAX_PATH);
|
|
|
|
s = strchr(_path.personal_dir, 0);
|
|
|
|
*s++ = '/';
|
2004-12-07 17:16:57 +00:00
|
|
|
ttd_strlcpy(s, PERSONAL_DIR, MAX_PATH);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
#endif /* defined(USE_HOMEDIR) */
|
|
|
|
|
|
|
|
s = strchr(_path.personal_dir, 0);
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
// append a / ?
|
2005-03-09 17:45:51 +00:00
|
|
|
if (s[-1] != '/') strcpy(s, "/");
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
_path.save_dir = str_fmt("%ssave", _path.personal_dir);
|
|
|
|
_path.autosave_dir = str_fmt("%s/autosave", _path.save_dir);
|
|
|
|
_path.scenario_dir = str_fmt("%sscenario", _path.personal_dir);
|
|
|
|
_path.gm_dir = str_fmt("%sgm/", _path.game_data_dir);
|
|
|
|
_path.data_dir = str_fmt("%sdata/", _path.game_data_dir);
|
2005-03-10 21:44:17 +00:00
|
|
|
|
|
|
|
if (_config_file == NULL)
|
|
|
|
_config_file = str_fmt("%sopenttd.cfg", _path.personal_dir);
|
|
|
|
|
2005-01-11 00:54:06 +00:00
|
|
|
_highscore_file = str_fmt("%shs.dat", _path.personal_dir);
|
2004-12-18 14:19:21 +00:00
|
|
|
_log_file = str_fmt("%sopenttd.log", _path.personal_dir);
|
2005-01-06 18:45:28 +00:00
|
|
|
|
2004-12-07 17:16:57 +00:00
|
|
|
#if defined CUSTOM_LANG_DIR
|
|
|
|
// sets the search path for lng files to the custom one
|
|
|
|
_path.lang_dir = malloc( MAX_PATH );
|
|
|
|
ttd_strlcpy( _path.lang_dir, CUSTOM_LANG_DIR, MAX_PATH);
|
|
|
|
#else
|
|
|
|
_path.lang_dir = str_fmt("%slang/", _path.game_data_dir);
|
|
|
|
#endif
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2004-09-13 22:04:20 +00:00
|
|
|
// create necessary folders
|
|
|
|
mkdir(_path.personal_dir, 0755);
|
2004-08-09 17:04:08 +00:00
|
|
|
mkdir(_path.save_dir, 0755);
|
|
|
|
mkdir(_path.autosave_dir, 0755);
|
|
|
|
mkdir(_path.scenario_dir, 0755);
|
|
|
|
}
|
|
|
|
|
2005-03-09 17:45:51 +00:00
|
|
|
bool InsertTextBufferClipboard(Textbuf *tb)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2005-06-01 23:08:33 +00:00
|
|
|
|
2005-06-06 12:11:44 +00:00
|
|
|
/** Dummy stubs as MorphOS/ AmigaOS does not really
|
|
|
|
* know about a thread concept nor has a working libpthread */
|
|
|
|
#if defined(__MORPHOS__) || defined(__AMIGA__)
|
|
|
|
typedef int pthread_t;
|
|
|
|
#define pthread_create(thread, attr, function, arg) (true)
|
2005-06-06 12:27:47 +00:00
|
|
|
#define pthread_join(thread, retval)
|
2005-06-06 12:11:44 +00:00
|
|
|
#endif
|
|
|
|
|
2005-06-01 23:08:33 +00:00
|
|
|
static pthread_t thread1 = 0;
|
2005-06-06 12:11:44 +00:00
|
|
|
|
2005-06-01 23:08:33 +00:00
|
|
|
bool CreateOTTDThread(void *func, void *param)
|
|
|
|
{
|
2005-06-04 07:35:12 +00:00
|
|
|
return pthread_create(&thread1, NULL, func, param) == 0;
|
2005-06-01 23:08:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CloseOTTDThread(void) {return;}
|
|
|
|
|
|
|
|
void JoinOTTDThread(void)
|
|
|
|
{
|
|
|
|
if (thread1 == 0) return;
|
|
|
|
|
|
|
|
pthread_join(thread1, NULL);
|
|
|
|
}
|
2005-07-15 20:29:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef ENABLE_NETWORK
|
|
|
|
|
|
|
|
// multi os compatible sleep function
|
|
|
|
|
|
|
|
#ifdef __AMIGA__
|
|
|
|
// usleep() implementation
|
|
|
|
# include <devices/timer.h>
|
|
|
|
# include <dos/dos.h>
|
|
|
|
|
|
|
|
extern struct Device *TimerBase = NULL;
|
|
|
|
extern struct MsgPort *TimerPort = NULL;
|
|
|
|
extern struct timerequest *TimerRequest = NULL;
|
|
|
|
#endif // __AMIGA__
|
|
|
|
|
|
|
|
void CSleep(int milliseconds)
|
|
|
|
{
|
|
|
|
#if !defined(__BEOS__) && !defined(__AMIGA__)
|
|
|
|
usleep(milliseconds * 1000);
|
|
|
|
#endif
|
|
|
|
#ifdef __BEOS__
|
|
|
|
snooze(milliseconds * 1000);
|
|
|
|
#endif
|
|
|
|
#if defined(__AMIGA__)
|
|
|
|
{
|
|
|
|
ULONG signals;
|
|
|
|
ULONG TimerSigBit = 1 << TimerPort->mp_SigBit;
|
|
|
|
|
|
|
|
// send IORequest
|
|
|
|
TimerRequest->tr_node.io_Command = TR_ADDREQUEST;
|
|
|
|
TimerRequest->tr_time.tv_secs = (milliseconds * 1000) / 1000000;
|
|
|
|
TimerRequest->tr_time.tv_micro = (milliseconds * 1000) % 1000000;
|
|
|
|
SendIO((struct IORequest *)TimerRequest);
|
|
|
|
|
|
|
|
if (!((signals = Wait(TimerSigBit | SIGBREAKF_CTRL_C)) & TimerSigBit) ) {
|
|
|
|
AbortIO((struct IORequest *)TimerRequest);
|
|
|
|
}
|
|
|
|
WaitIO((struct IORequest *)TimerRequest);
|
|
|
|
}
|
|
|
|
#endif // __AMIGA__
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* ENABLE_NETWORK */
|
|
|
|
|