2006-02-24 04:48:15 +00:00
|
|
|
// cmdlib.h
|
|
|
|
|
|
|
|
#ifndef __CMDLIB__
|
|
|
|
#define __CMDLIB__
|
|
|
|
|
|
|
|
|
|
|
|
#include "doomtype.h"
|
2014-08-11 09:47:14 +00:00
|
|
|
#include "doomdef.h"
|
2014-08-21 11:01:12 +00:00
|
|
|
#include "m_fixed.h"
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
|
|
|
|
// the dec offsetof macro doesnt work very well...
|
2008-03-12 02:56:11 +00:00
|
|
|
#define myoffsetof(type,identifier) ((size_t)&((type *)1)->identifier - 1)
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
int Q_filelength (FILE *f);
|
2006-09-14 00:02:31 +00:00
|
|
|
bool FileExists (const char *filename);
|
2009-09-02 03:47:48 +00:00
|
|
|
bool DirEntryExists (const char *pathname);
|
2006-02-24 04:48:15 +00:00
|
|
|
|
2008-04-11 04:59:23 +00:00
|
|
|
extern FString progdir;
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
void FixPathSeperator (char *path);
|
2007-12-06 22:38:45 +00:00
|
|
|
static void inline FixPathSeperator (FString &path) { path.ReplaceChars('\\', '/'); }
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
void DefaultExtension (char *path, const char *extension);
|
2006-05-03 22:45:01 +00:00
|
|
|
void DefaultExtension (FString &path, const char *extension);
|
2006-02-24 04:48:15 +00:00
|
|
|
|
2006-07-08 02:17:35 +00:00
|
|
|
FString ExtractFilePath (const char *path);
|
|
|
|
FString ExtractFileBase (const char *path, bool keep_extension=false);
|
2006-02-24 04:48:15 +00:00
|
|
|
|
2008-08-16 08:11:39 +00:00
|
|
|
int ParseHex (const char *str);
|
|
|
|
int ParseNum (const char *str);
|
|
|
|
bool IsNum (const char *str); // [RH] added
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
char *copystring(const char *s);
|
2010-08-20 12:20:51 +00:00
|
|
|
char *ncopystring(const char *s);
|
2006-02-24 04:48:15 +00:00
|
|
|
void ReplaceString (char **ptr, const char *str);
|
|
|
|
|
|
|
|
bool CheckWildcards (const char *pattern, const char *text);
|
|
|
|
|
About a week's worth of changes here. As a heads-up, I wouldn't be
surprised if this doesn't build in Linux right now. The CMakeLists.txt
were checked with MinGW and NMake, but how they fair under Linux is an
unknown to me at this time.
- Converted most sprintf (and all wsprintf) calls to either mysnprintf or
FStrings, depending on the situation.
- Changed the strings in the wbstartstruct to be FStrings.
- Changed myvsnprintf() to output nothing if count is greater than INT_MAX.
This is so that I can use a series of mysnprintf() calls and advance the
pointer for each one. Once the pointer goes beyond the end of the buffer,
the count will go negative, but since it's an unsigned type it will be
seen as excessively huge instead. This should not be a problem, as there's
no reason for ZDoom to be using text buffers larger than 2 GB anywhere.
- Ripped out the disabled bit from FGameConfigFile::MigrateOldConfig().
- Changed CalcMapName() to return an FString instead of a pointer to a static
buffer.
- Changed startmap in d_main.cpp into an FString.
- Changed CheckWarpTransMap() to take an FString& as the first argument.
- Changed d_mapname in g_level.cpp into an FString.
- Changed DoSubstitution() in ct_chat.cpp to place the substitutions in an
FString.
- Fixed: The MAPINFO parser wrote into the string buffer to construct a map
name when given a Hexen map number. This was fine with the old scanner
code, but only a happy coincidence prevents it from crashing with the new
code
- Added the 'B' conversion specifier to StringFormat::VWorker() for printing
binary numbers.
- Added CMake support for building with MinGW, MSYS, and NMake. Linux support
is probably broken until I get around to booting into Linux again. Niceties
provided over the existing Makefiles they're replacing:
* All command-line builds can use the same build system, rather than having
a separate one for MinGW and another for Linux.
* Microsoft's NMake tool is supported as a target.
* Progress meters.
* Parallel makes work from a fresh checkout without needing to be primed
first with a single-threaded make.
* Porting to other architectures should be simplified, whenever that day
comes.
- Replaced the makewad tool with zipdir. This handles the dependency tracking
itself instead of generating an external makefile to do it, since I couldn't
figure out how to generate a makefile with an external tool and include it
with a CMake-generated makefile. Where makewad used a master list of files
to generate the package file, zipdir just zips the entire contents of one or
more directories.
- Added the gdtoa package from netlib's fp library so that ZDoom's printf-style
formatting can be entirely independant of the CRT.
SVN r1082 (trunk)
2008-07-23 04:57:26 +00:00
|
|
|
void FormatGUID (char *buffer, size_t buffsize, const GUID &guid);
|
2006-02-24 04:48:15 +00:00
|
|
|
|
2006-12-29 03:38:37 +00:00
|
|
|
const char *myasctime ();
|
2006-02-24 04:48:15 +00:00
|
|
|
|
- Updated lempar.c to v1.31.
- Added .txt files to the list of types (wad, zip, and pk3) that can be
loaded without listing them after -file.
- Fonts that are created by the ACS setfont command to wrap a texture now
support animated textures.
- FON2 fonts can now use their full palette for CR_UNTRANSLATED when drawn
with the hardware 2D path instead of being restricted to the game palette.
- Fixed: Toggling vid_vsync would reset the displayed fullscreen gamma to 1
on a Radeon 9000.
- Added back the off-by-one palette handling, but in a much more limited
scope than before. The skipped entry is assumed to always be at 248, and
it is assumed that all Shader Model 1.4 cards suffer from this. That's
because all SM1.4 cards are based on variants of the ATI R200 core, and the
RV250 in a Radeon 9000 craps up like this. I see no reason to assume that
other flavors of the R200 are any different. (Interesting note: With the
Radeon 9000, D3DTADDRESS_CLAMP is an invalid address mode when using the
debug Direct3D 9 runtime, but it works perfectly fine with the retail
Direct3D 9 runtime.) (Insight: The R200 probably uses bytes for all its
math inside pixel shaders. That would explain perfectly why I can't use
constants greater than 1 with PS1.4 and why it can't do an exact mapping to
every entry in the color palette.
- Fixed: The software shaded drawer did not work for 2D, because its selected
"color"map was replaced with the identitymap before being used.
- Fixed: I cannot use Printf to output messages before the framebuffer was
completely setup, meaning that Shader Model 1.4 cards could not change
resolution.
- I have decided to let remap palettes specify variable alpha values for
their colors. D3DFB no longer forces them to 255.
- Updated re2c to version 0.12.3.
- Fixed: A_Wander used threshold as a timer, when it should have used
reactiontime.
- Fixed: A_CustomRailgun would not fire at all for actors without a target
when the aim parameter was disabled.
- Made the warp command work in multiplayer, again courtesy of Karate Chris.
- Fixed: Trying to spawn a bot while not in a game made for a crashing time.
(Patch courtesy of Karate Chris.)
- Removed some floating point math from hu_scores.cpp that somebody's GCC
gave warnings for (not mine, though).
- Fixed: The SBarInfo drawbar command crashed if the sprite image was
unavailable.
- Fixed: FString::operator=(const char *) did not release its old buffer when
being assigned to the null string.
- The scanner no longer has an upper limit on the length of strings it
accepts, though short strings will be faster than long ones.
- Moved all the text scanning functions into a class. Mainly, this means that
multiple script scanner states can be stored without being forced to do so
recursively. I think I might be taking advantage of that in the near
future. Possibly. Maybe.
- Removed some potential buffer overflows from the decal parser.
- Applied Blzut3's SBARINFO update #9:
* Fixed: When using even length values in drawnumber it would cap to a 98
value instead of a 99 as intended.
* The SBarInfo parser can now accept negatives for coordinates. This
doesn't allow much right now, but later I plan to add better fullscreen
hud support in which the negatives will be more useful. This also cleans
up the source a bit since all calls for (x, y) coordinates are with the
function getCoordinates().
- Added support for stencilling actors.
- Added support for non-black colors specified with DTA_ColorOverlay to the
software renderer.
- Fixed: The inverse, gold, red, and green fixed colormaps each allocated
space for 32 different colormaps, even though each only used the first one.
- Added two new blending flags to make reverse subtract blending more useful:
STYLEF_InvertSource and STYLEF_InvertOverlay. These invert the color that
gets blended with the background, since that seems like a good idea for
reverse subtraction. They also work with the other two blending operations.
- Added subtract and reverse subtract blending operations to the renderer.
Since the ERenderStyle enumeration was getting rather unwieldy, I converted
it into a new FRenderStyle structure that lets each parameter of the
blending equation be set separately. This simplified the set up for the
blend quite a bit, and it means a number of new combinations are available
by setting the parameters properly.
SVN r710 (trunk)
2008-01-25 23:57:44 +00:00
|
|
|
int strbin (char *str);
|
2008-12-07 17:50:03 +00:00
|
|
|
FString strbin1 (const char *start);
|
2013-05-12 18:27:03 +00:00
|
|
|
char *CleanseString (char *str);
|
2006-11-29 04:51:16 +00:00
|
|
|
|
2006-05-14 14:30:13 +00:00
|
|
|
void CreatePath(const char * fn);
|
|
|
|
|
2008-12-07 00:50:04 +00:00
|
|
|
FString ExpandEnvVars(const char *searchpathstring);
|
2009-02-08 02:52:43 +00:00
|
|
|
FString NicePath(const char *path);
|
2008-12-07 00:50:04 +00:00
|
|
|
|
2010-08-27 15:20:05 +00:00
|
|
|
struct FFileList
|
|
|
|
{
|
|
|
|
FString Filename;
|
|
|
|
bool isDirectory;
|
|
|
|
};
|
|
|
|
|
|
|
|
void ScanDirectory(TArray<FFileList> &list, const char *dirpath);
|
|
|
|
|
2014-08-11 07:39:38 +00:00
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// Functions to compensate for a tic being a bit short.
|
|
|
|
// Since ZDoom uses a milliseconds timer for game timing
|
|
|
|
// 35 tics are actually only 0.98 seconds.
|
|
|
|
// For real time display this needs to be adjusted
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
inline int AdjustTics(int tics)
|
|
|
|
{
|
2014-08-21 11:01:12 +00:00
|
|
|
return Scale(tics, 98, 100);
|
2014-08-11 07:39:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
inline int Tics2Seconds(int tics)
|
|
|
|
{
|
2014-08-21 11:01:12 +00:00
|
|
|
return Scale(tics, 98, (100 * TICRATE));
|
2014-08-11 07:39:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
#endif
|