133 lines
3.3 KiB
C
133 lines
3.3 KiB
C
|
/*
|
||
|
* Unix compatibility header. Takes care of some legacy code issues.
|
||
|
*
|
||
|
* Written by Ryan C. Gordon (icculus@clutteredmind.org)
|
||
|
*
|
||
|
* Please do NOT harrass Ken Silverman about any code modifications
|
||
|
* (including this file) to BUILD.
|
||
|
*/
|
||
|
|
||
|
/*
|
||
|
* "Build Engine & Tools" Copyright (c) 1993-1997 Ken Silverman
|
||
|
* Ken Silverman's official web site: "http://www.advsys.net/ken"
|
||
|
* See the included license file "BUILDLIC.TXT" for license info.
|
||
|
* This file IS NOT A PART OF Ken Silverman's original release
|
||
|
*/
|
||
|
|
||
|
#ifndef _INCLUDE_UNIX_COMPAT_H_
|
||
|
#define _INCLUDE_UNIX_COMPAT_H_
|
||
|
|
||
|
#if (!defined PLATFORM_UNIX)
|
||
|
#error PLATFORM_UNIX is not defined.
|
||
|
#endif
|
||
|
|
||
|
#define __int64 long long
|
||
|
|
||
|
#define PLATFORM_SUPPORTS_SDL
|
||
|
|
||
|
#include <stdio.h>
|
||
|
#include <unistd.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <dirent.h>
|
||
|
#include <assert.h>
|
||
|
|
||
|
extern const int hbits[];
|
||
|
|
||
|
/*
|
||
|
Do some bitwise magic to approximate an algebraic (sign preserving)
|
||
|
right shift.
|
||
|
*/
|
||
|
#define shift_algebraic_right(value,distance) \
|
||
|
(((value) >> (distance))| \
|
||
|
(hbits[(distance) + (((value) & 0x80000000) >> 26)]))
|
||
|
|
||
|
/* !!! remove me later! */
|
||
|
/* !!! remove me later! */
|
||
|
/* !!! remove me later! */
|
||
|
#define outpw(x, y) printf("outpw(0x%X, 0x%X) call in %s, line %d.\n", \
|
||
|
(x), (y), __FILE__, __LINE__)
|
||
|
|
||
|
#define koutpw(x, y) printf("koutpw(0x%X, 0x%X) call in %s, line %d.\n", \
|
||
|
(x), (y), __FILE__, __LINE__)
|
||
|
|
||
|
#define outb(x, y) printf("outb(0x%X, 0x%X) call in %s, line %d.\n", \
|
||
|
(x), (y), __FILE__, __LINE__)
|
||
|
|
||
|
#define koutb(x, y) printf("koutb(0x%X, 0x%X) call in %s, line %d.\n", \
|
||
|
(x), (y), __FILE__, __LINE__)
|
||
|
|
||
|
#define outp(x, y) printf("outp(0x%X, 0x%X) call in %s, line %d.\n", \
|
||
|
(x), (y), __FILE__, __LINE__)
|
||
|
|
||
|
#define koutp(x, y)
|
||
|
/* !!! */
|
||
|
/*printf("koutp(0x%X, 0x%X) call in %s, line %d.\n",
|
||
|
// (x), (y), __FILE__, __LINE__) */
|
||
|
|
||
|
#define kinp(x) _kinp_handler((x), __FILE__, __LINE__)
|
||
|
#define inp(x) _inp_handler((x), __FILE__, __LINE__)
|
||
|
|
||
|
int _inp_handler(int port, char *source_file, int source_line);
|
||
|
int _kinp_handler(int port, char *source_file, int source_line);
|
||
|
/* !!! remove me later! */
|
||
|
/* !!! remove me later! */
|
||
|
/* !!! remove me later! */
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
#define __far
|
||
|
#define __interrupt
|
||
|
#define interrupt
|
||
|
#define far
|
||
|
#define kmalloc(x) malloc(x)
|
||
|
#define kkmalloc(x) malloc(x)
|
||
|
#define kfree(x) free(x)
|
||
|
#define kkfree(x) free(x)
|
||
|
#define FP_OFF(x) ((long) (x))
|
||
|
|
||
|
#ifndef O_BINARY
|
||
|
#define O_BINARY 0
|
||
|
#endif
|
||
|
|
||
|
/* damned -ansi flag... :) */
|
||
|
int stricmp(const char *x, const char *y);
|
||
|
|
||
|
#if (defined __STRICT_ANSI__)
|
||
|
#define inline __inline__
|
||
|
#endif
|
||
|
|
||
|
#define printext16 printext256
|
||
|
#define printext16_noupdate printext256_noupdate
|
||
|
|
||
|
/* Other DOSisms. See unix_compat.c for implementation. */
|
||
|
long filelength(int fhandle);
|
||
|
|
||
|
/* !!! need an implementation of findfirst()/findnext()! */
|
||
|
/* Look for references to _dos_findfirst() in build.c! */
|
||
|
|
||
|
#if (!defined S_IREAD)
|
||
|
#define S_IREAD S_IRUSR
|
||
|
#endif
|
||
|
|
||
|
#ifdef DC //bero
|
||
|
#undef stdout
|
||
|
#undef stderr
|
||
|
#define stdout ((FILE*)2)
|
||
|
#define stderr ((FILE*)2)
|
||
|
#endif
|
||
|
|
||
|
#ifndef max
|
||
|
#define max(x, y) (((x) > (y)) ? (x) : (y))
|
||
|
#endif
|
||
|
|
||
|
#ifndef min
|
||
|
#define min(x, y) (((x) < (y)) ? (x) : (y))
|
||
|
#endif
|
||
|
|
||
|
#endif
|
||
|
|
||
|
/* end of unix_compat.h ... */
|
||
|
|
||
|
|