wesnoth/src/checksum.cpp
2005-08-12 10:32:12 +00:00

69 lines
1.4 KiB
C++

/* $Id$ */
/*
Copyright (C) 2005 by Philippe Plantier <ayin@anathas.org>
Part of the Battle for Wesnoth Project http://www.wesnoth.org/
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY.
See the COPYING file for more details.
*/
#include "checksum.hpp"
checksumstreambuf::checksumstreambuf() : csuma(0), csumb(0)
{
setp((char*)buffer, (char*)buffer+BUFFERSIZE);
}
unsigned int checksumstreambuf::checksum()
{
sum((unsigned char*)pbase(), (unsigned char*)pptr());
return (sa << 16) + sb;
}
int checksumstreambuf::overflow(int c)
{
sum(buffer, buffer+BUFFERSIZE);
csuma = sa;
csumb = sb;
setp((char*)buffer, (char*)buffer+BUFFERSIZE);
buffer[0] = (unsigned char)(c);
pbump(1);
return c;
}
void checksumstreambuf::sum(unsigned char* begin, unsigned char* end)
{
sa = csuma;
sb = csumb;
for(unsigned char* p = begin; p < end; p += 2) {
unsigned short x;
if(p+1 == end) {
x = *p;
} else {
x = (unsigned short)(*p) + ((unsigned short)(*(p+1)) << 8);
}
sa = 0xffff & ((unsigned int)(sa) + (unsigned int)(sb));
sb = 0xffff & ((unsigned int)(x) + (unsigned int)(sb));
}
}
checksumstream::checksumstream() : std::basic_ostream<char>(this), sbuf(*this)
{
}
unsigned int checksumstream::checksum()
{
return sbuf.checksum();
}