Remove lots of dead code

Add check for datatype overflows
use native datatype indices instead of fixed 16bit/32bit ones
master
sapier 2014-02-05 00:17:57 +01:00
parent 3670f5a37b
commit f4f98c9550
3 changed files with 258 additions and 438 deletions

File diff suppressed because it is too large Load Diff

View File

@ -384,9 +384,6 @@ public:
core::line3d<f32> shootline_on_map
);
// Prints a line or two of info
void printDebugInfo(std::ostream &os);
std::list<std::string> getConnectedPlayerNames();
float getAnimationTime();

View File

@ -1518,6 +1518,9 @@ void the_game(
str += "]";
device->setWindowCaption(str.c_str());
// Info text
std::wstring infotext;
for(;;)
{
if(device->run() == false || kill == true)
@ -1700,23 +1703,9 @@ void the_game(
// Hilight boxes collected during the loop and displayed
std::vector<aabb3f> hilightboxes;
// Info text
std::wstring infotext;
/*
Debug info for client
*/
{
static float counter = 0.0;
counter -= dtime;
if(counter < 0)
{
counter = 30.0;
client.printDebugInfo(infostream);
}
}
/* reset infotext */
infotext = L"";
/*
Profiler
*/