So here's one:
"Anonymous Coward" is set in line 2087 of plPythonFileMod.cpp (MOULOpenSourceClientPlugin\Plasma20\Sources\Plasma\FeatureLib\pfPython)
No doubt there are more significant things to find, but that's what I found tonight.
Code: Select all
hsBool plLayerMultiply::MsgReceive(plMessage* msg)
{
return plLayerMultiply::MsgReceive(msg);
}
Code: Select all
/// Wonderful limitation of mixing our streams with IJL--it wants either a filename
/// or a memory buffer. Since we can't give it the former, we have to read the entire
/// JPEG stream into a separate buffer before we can decode it. Which means we ALSO
/// have to write/read a length of said buffer. Such is life, I guess...
jpegSourceSize = inStream->ReadSwap32();
jpegSourceBuffer = TRACKED_NEW UInt8[ jpegSourceSize ];Code: Select all
// remove the CRs, they seem to give Python heartburn
...
hsAssert(pythonCode,"Not sure why this didn't compile the second time???");
...
printf("......blast! Error during run-code!\n");
...
printf("......blast! Compile error!\n");
Code: Select all
// This is a big waste of time, As a desparate "optimization" pass, the artists
// insist on going through and marking objects to fade or pop out of rendering
// past a certain distance. This breaks the batching and requires more CPU to
// check the objects by distance. Since there is no pattern to the distance at
// which objects will be told not to draw, there's no way to make this hierarchical,
// which is what it would take to make it a performance win. So they succeed in
// reducing the poly count, but generally the frame rate goes _down_ as well.
// Unfortunately, this technique actually does work in a few key areas, so
// I haven't been able to purge it.// So the crackers know who the tard is
static const char* tauntText = "My copy protection is uncrackable! -Brice";
cypythoninterface.cpp// Guess what this is for
#include "pyJournalBook.h"
Code: Select all
// 4.3.2003 mcn - Updated. Casting a char to a UInt16 sign-extends it if //
// the char is > 128, but casting it to an UInt8 first works.//
// Ugly as sin, but hey, so are you.Code: Select all
// stupid Windows.h and who started including that!
#undef DrawText