1
0
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-18 11:19:10 +00:00
Commit Graph

177 Commits

Author SHA1 Message Date
f1767ebabe Fix some *nix compiler errors. 2013-07-20 00:04:51 -07:00
dd35878465 Begin killing off sprintf 2013-07-09 21:30:42 -04:00
470ed86187 Let's use vsnprintf for those legacy methods... 2013-07-09 21:30:41 -04:00
48f232c3a0 Aligned matrix loading 2013-06-19 16:37:54 -04:00
8e7505b8ce Don't use CPUID call on targets that don't support it 2013-03-21 18:53:54 -07:00
dde3be140c Support negative substring indexes from the right side of the string 2013-02-24 19:38:12 -08:00
9e87967f1a Merge pull request #284 from Hoikas/pch
Trickle of PCH
2013-02-13 12:17:07 -08:00
04ecc27e8e Fix a plFileSystem::CreateDir failure when called with a trailing slash
and requesting the whole tree to be created.
2013-02-04 19:47:13 -08:00
fc43c62174 CoreLib Precompiled Header
NOTE: I used a different header name this time because CoreLib headers are
visible top-level to the rest of the codebase.
2013-02-04 17:25:05 -05:00
3fb5f33517 Add plQuality entry for Shader Model 3 2013-02-01 16:44:44 -05:00
d0a1e440f3 Fix missing include in CoreLibs 2013-02-01 17:05:44 +01:00
29bc092cff math.h -> cmath 2013-01-28 23:23:07 -08:00
b01aab4a39 Standardize on C++ headers.
Also removes a bunch of duplicate #includes of stuff that's already
pulled in by HeadSpin.h.
2013-01-28 23:15:54 -08:00
43ca24e167 Fix some plString/plFileSystem issues for *nix. 2013-01-28 23:15:11 -08:00
c7eba65e13 Fix a clang warning. 2013-01-28 21:58:48 -08:00
58106995b4 infinite loop fix 2013-01-26 12:51:22 +01:00
8f67596686 Merge pull request #275 from zrax/file-utils
Unify filesystem utilities
2013-01-22 16:27:26 -08:00
2c028c4b07 Remove hsFiles in favor of plFilesystem stuff 2013-01-21 14:48:32 -08:00
cc54fb07be Finish deprecation of pnUtPath 2013-01-21 14:48:31 -08:00
970ad3e729 Add additional functionality to plFileSystem as needed 2013-01-20 21:37:32 -08:00
f86b549293 Re-define nil as nullptr, cleaning up some potential issues along the way 2013-01-20 21:12:13 -08:00
56e332a3c3 Add basic regex functionality to plString 2013-01-20 20:54:49 -08:00
ad5495ca45 Fix issues from review 2013-01-19 14:23:07 -08:00
6f6ade2636 Replace hsStream::Open duplicated methods everywhere with a single plFileName interface 2013-01-19 14:21:49 -08:00
219061c095 Add plFilesystem module, which replaces previous filesystem APIs with a plFileName-based one 2013-01-19 14:10:55 -08:00
f736d81cd8 Convert plFileName to "has-a" model for better semantics.
You're welcome, branan ;)
2013-01-18 23:53:47 -08:00
d2815f35bf Replace plasmalog with a better debug log
Plasmalog.txt is now plasmadbg.log. This allows us to view the log inside
the game, flush to the debugger output window, and have the logfile. The
plan is to redirect key leak reports to this log in a future commit.
2013-01-18 17:22:16 -05:00
1152cdae94 Fix issues from review 2013-01-17 21:45:27 -08:00
f980f022dd Replace pnProduct with a (very) thin CoreLib plProduct wrapper around CMake-defined product ID values 2013-01-17 01:14:45 -08:00
13489eb1bb Merge pull request #259 from zrax/plFileName
Add plFileName
2013-01-14 15:07:56 -08:00
2b1e05fcc7 Add doxygen docs to plFileName 2013-01-13 16:28:10 -08:00
5fa72a086f Clean up some miscellaneous non-optimal string uses 2013-01-13 15:53:53 -08:00
c52a1f1037 Add plFileName::Join static method to join paths together correctly 2013-01-13 15:53:53 -08:00
01e25e5d8d Add plFileName string specialization for filename manipulation 2013-01-13 15:53:53 -08:00
b5e35fb314 Add Truncate() method to plStringStream, which truncates the buffer without reallocating memory 2013-01-13 15:47:12 -08:00
dbb3b1a5b6 Add a Doxyfile and some plString documentation 2013-01-12 04:27:26 -08:00
3bfb6b5850 Merge pull request #253 from zrax/plString
Fix a major plStringStream bug, and add an SSO-like optimization to it.
2013-01-07 20:14:14 -08:00
9903e274bb Fix issues from review 2013-01-06 23:52:12 -08:00
0d949cc137 Add plString::Replace 2013-01-06 23:37:39 -08:00
11558b8301 Fix a major plStringStream bug, and add an SSO-like optimization to it 2013-01-06 18:28:44 -08:00
bc0d04da48 Deprecate and remove NEWZERO macro 2013-01-05 18:33:47 -08:00
7ba8fdf86e Fix issues from review, and pre-emptively fix a couple of potential plString::Format issues 2013-01-02 18:15:41 -08:00
74e06e3984 Deprecate and remove hsStlSortUtils 2013-01-01 21:35:11 -08:00
8158a43dfe Fully remove hsStlUtils, as it is now completely unused 2013-01-01 21:35:11 -08:00
60021923a2 Deprecate and remove xtl::format in favor of plString::Format 2013-01-01 21:35:10 -08:00
f510b529f8 Remove unused headers from hsStlUtils.h (and push them downstream where needed)
Also fix a couple of plString and header issues identified by Paradox on GCC/Clang
2013-01-01 21:35:10 -08:00
3b1568a4e2 Add identification for some more modern Windows versions 2013-01-01 21:35:09 -08:00
23286bc8f0 Remove xtl::copy_if because:
- It is included in C++11
- Nobody was using it anyway >_<
2013-01-01 21:35:09 -08:00
4c7ce8665c Replace xtl::delete_ptr functor with lambdas 2013-01-01 21:35:08 -08:00
a7d4d42b85 Remove an unnecessary extra heap allocation in plString::Format 2013-01-01 21:35:08 -08:00