Adam Johnson
027e830360
Keep dynamics asleep during init process
...
When we set the global pose and transform, we wake up dynamics. This can be
somewhat evil, so we put them back to sleep as they are supposed to be.
13 years ago
Adam Johnson
897abb7200
Chip away at uses of pnUtStr
13 years ago
Adam Johnson
653c29d0bd
Restore eap's misunderstanding of endianness.
13 years ago
Adam Johnson
ec216206dd
Fix StupidSearch
...
This fixes stupid stuff like Phil's Relto linking panel and the Words covers
13 years ago
Michael Hansen
827d58bb46
Merge pull request #157 from dpogue/plString-fix
...
Make plString build on mingw
13 years ago
Darryl Pogue
ab8d7619d3
Remove the pragma stuff since there's no warning.
13 years ago
Darryl Pogue
b5d9c3ffec
Use a correct value that doesn't cause warnings.
13 years ago
Darryl Pogue
bdf52410e1
Make plString build on mingw.
13 years ago
Adam Johnson
5548eb5a6f
Merge pull request #156 from dpogue/NukeLibs
...
Nuke NucleusLib libs
13 years ago
Darryl Pogue
21a0d9edfd
Re-add the necessary StartUp hack stuff.
13 years ago
Branan Purvine-Riley
c48f76d641
Merge pull request #154 from Hoikas/fix-151
...
Fixes #151
13 years ago
Branan Purvine-Riley
ef55b356ca
Merge pull request #153 from Hoikas/unicode-tos
...
Support utf8 TOS.txt files
13 years ago
Darryl Pogue
d8d6b0b377
Remove some lingering pnIni references.
13 years ago
Darryl Pogue
cc21988872
Kill pnIni.
13 years ago
Darryl Pogue
564c97921f
Kill pnIniExe.
13 years ago
Darryl Pogue
e6077e950d
Remove the Net Ini stuff that was never used.
...
If we needed any of this stuff, it's been added to the console.
13 years ago
Darryl Pogue
ba7950bb80
Kill pnMail.
13 years ago
Darryl Pogue
4535d38cc9
Kill pnSqlLib.
13 years ago
Darryl Pogue
64ea209754
Kill pnOraLib.
13 years ago
Darryl Pogue
e5aaef09e0
Kill pnCrash.
13 years ago
Adam Johnson
0f68e5ae13
These got missed...
13 years ago
Darryl Pogue
46ca15c61c
Kill pnCrashExe.
13 years ago
Darryl Pogue
1687426987
Kill pnNetLog.
13 years ago
Adam Johnson
7720981324
Fixes #151
...
Close a file descriptor that could be leaked
13 years ago
Adam Johnson
1efd2b6684
Support utf8 TOS.txt files
13 years ago
Michael Hansen
85136f8050
Merge pull request #152 from Hoikas/fix-moula
...
Fix MOULa Sha0 Crap
13 years ago
Adam Johnson
23911b0a49
Actually fix it, thanks to Zrax and Paradox
13 years ago
Michael Hansen
8bf78c0e35
Fix plStringStream for the case of adding a '\0' char non-destructively
13 years ago
Michael Hansen
81465e621b
Add case conversion functionality
13 years ago
NadnerbD
ccf5f59fda
Merge pull request #149 from Hoikas/physx
...
More PhysX Fixes
13 years ago
Adam Johnson
40933d6612
Merge pull request #144 from Deledrius/vault_png
...
More PNG support (Vault and Python)
13 years ago
NadnerbD
3e15b5d318
Fixed memory leak, plString is nice
13 years ago
Adam Johnson
80213f3edd
Fix weird jitters when jumping and kicking
...
NOTE: If you are using a version of PhysX prior to 2.6.4, then you should
test very carefully if you should keep this commit. This change fixed a
bug that caused avatars to get stuck falling against certain colliders. It
seems to no longer be needed.
13 years ago
Adam Johnson
7dcf2e66a3
Greatly simplify collision detectors
13 years ago
Adam Johnson
1b0e139ae5
Only send out one collide msg per frame
...
This addresses a "PhysX turd" that some Cyan programmer noted in
plCollisionDetector. Cleaning up that cruft is pending...
13 years ago
Adam Johnson
9795b4e7fc
Fix unsafe cleanup in ~plCameraRegionDetector
...
Deleting an hsRefCnt is evil, we should ALWAYS hsRefCnt_SafeUnRef (we
might have a nullptr) it because someone might ref it. hsRefCnt will explictly crash if you delete it when the refcnt != 1.
Also, take this opportunity to vector-ize things.
13 years ago
Adam Johnson
8ec1a92359
Rewrite kickable force stuff...
...
Cyan's old code was confusing and would allow you to walk on top of small
kickables. Now, we impart force to these small kickables up to a certain
point where imparting force to them becomes somewhat risky.
13 years ago
Adam Johnson
0689901c5e
Band-aid for poorly modelled stairs
...
Looks like the Cyan modellers didn't extend the stair ramps all the way
down in some places. To compensate, we can now take higher steps but can't
walk on slopes quite as steep as before. I think this should balance out
nicely.
13 years ago
Adam Johnson
b907f8978a
Fix landing behaviors
...
Looks like Cyan broke these when they fixed superjumps. It appears that
LinearVelocity is only good while the PhysicalControllerCore is updating,
and it stashes the result for later so nothing else can touch it.
Regardless, we need to test AchievedLinearVelocity outside of the update
proc.
13 years ago
Adam Johnson
a2a7bd7e77
Merge pull request #150 from dpogue/pnEncryption
...
Refactor hash digest code
--HG--
rename : Sources/Plasma/PubUtilLib/plMath/plRandom.h => Sources/Plasma/NucleusLib/pnEncryption/plRandom.h
13 years ago
Darryl Pogue
e985616107
Fix errors.
13 years ago
Darryl Pogue
ee338c9adf
Fix some casting errors.
13 years ago
Darryl Pogue
39e8dd1b3c
Remove all the Digest stuff from pnUtCrypt.
13 years ago
Darryl Pogue
7a5d61f7c8
Move plRandom into pnEncryption.
...
--HG--
rename : Sources/Plasma/PubUtilLib/plMath/plRandom.h => Sources/Plasma/NucleusLib/pnEncryption/plRandom.h
13 years ago
Darryl Pogue
4a1b36b284
Move half of the Challenge Hash stuff.
13 years ago
NadnerbD
c9b4c0a92d
NewKey can take a plString, so no need to convert to const char*
13 years ago
Darryl Pogue
1b22f044f0
Fix conflicting ShaDigest types.
13 years ago
Darryl Pogue
404cd09f1c
Move plEncryption to pnEncryption.
...
--HG--
rename : Sources/Plasma/PubUtilLib/plEncryption/plChecksum.cpp => Sources/Plasma/NucleusLib/pnEncryption/plChecksum.cpp
rename : Sources/Plasma/PubUtilLib/plEncryption/plChecksum.h => Sources/Plasma/NucleusLib/pnEncryption/plChecksum.h
13 years ago
NadnerbD
0bede93022
Merged with master and plString
13 years ago
Darryl Pogue
d2243c459b
Added plSHA project, and clean up pnUtCrypt usage.
13 years ago