|
@@ -51,14 +51,6 @@ extern SDL_Surface * CSDL_Ext::std32bppSurface;
|
|
std::queue<SDL_Event> events;
|
|
std::queue<SDL_Event> events;
|
|
boost::mutex eventsM;
|
|
boost::mutex eventsM;
|
|
TTF_Font * TNRB16, *TNR, *GEOR13, *GEORXX, *GEORM, *GEOR16;
|
|
TTF_Font * TNRB16, *TNR, *GEOR13, *GEORXX, *GEORM, *GEOR16;
|
|
-extern CLogger<0> _log0;
|
|
|
|
-extern CLogger<1> _log1;
|
|
|
|
-extern CLogger<2> _log2;
|
|
|
|
-extern CLogger<3> _log3;
|
|
|
|
-extern CLogger<4> _log4;
|
|
|
|
-extern CLogger<5> _log5;
|
|
|
|
-extern CConsoleHandler *console;// = NULL;
|
|
|
|
-extern std::ostream *logfile;// = NULL;
|
|
|
|
namespace intpr = boost::interprocess;
|
|
namespace intpr = boost::interprocess;
|
|
void processCommand(const std::string &message);
|
|
void processCommand(const std::string &message);
|
|
#ifndef __GNUC__
|
|
#ifndef __GNUC__
|
|
@@ -79,7 +71,7 @@ int main(int argc, char** argv)
|
|
*::console->cb = &processCommand;
|
|
*::console->cb = &processCommand;
|
|
console = new boost::thread(boost::bind(&CConsoleHandler::run,::console));
|
|
console = new boost::thread(boost::bind(&CConsoleHandler::run,::console));
|
|
}
|
|
}
|
|
- _log0 << "\tConsole and logifle ready!" << std::endl;
|
|
|
|
|
|
+ tlog0 << "\tConsole and logifle ready!" << std::endl;
|
|
int port;
|
|
int port;
|
|
if(argc > 1)
|
|
if(argc > 1)
|
|
{
|
|
{
|
|
@@ -92,10 +84,10 @@ int main(int argc, char** argv)
|
|
else
|
|
else
|
|
{
|
|
{
|
|
port = 3030;
|
|
port = 3030;
|
|
- _log0 << "Port " << port << " will be used." << std::endl;
|
|
|
|
|
|
+ tlog0 << "Port " << port << " will be used." << std::endl;
|
|
}
|
|
}
|
|
std::cout.flags(ios::unitbuf);
|
|
std::cout.flags(ios::unitbuf);
|
|
- _log0 << NAME << std::endl;
|
|
|
|
|
|
+ tlog0 << NAME << std::endl;
|
|
srand ( time(NULL) );
|
|
srand ( time(NULL) );
|
|
CPG=NULL;
|
|
CPG=NULL;
|
|
atexit(SDL_Quit);
|
|
atexit(SDL_Quit);
|
|
@@ -104,13 +96,13 @@ int main(int argc, char** argv)
|
|
//luatest.test();
|
|
//luatest.test();
|
|
//CBIKHandler cb;
|
|
//CBIKHandler cb;
|
|
//cb.open("CSECRET.BIK");
|
|
//cb.open("CSECRET.BIK");
|
|
- _log0 << "Starting... " << std::endl;
|
|
|
|
|
|
+ tlog0 << "Starting... " << std::endl;
|
|
THC timeHandler tmh, total, pomtime;
|
|
THC timeHandler tmh, total, pomtime;
|
|
if(SDL_Init(SDL_INIT_VIDEO|SDL_INIT_TIMER|SDL_INIT_AUDIO)==0)
|
|
if(SDL_Init(SDL_INIT_VIDEO|SDL_INIT_TIMER|SDL_INIT_AUDIO)==0)
|
|
{
|
|
{
|
|
screen = SDL_SetVideoMode(800,600,24,SDL_SWSURFACE|SDL_DOUBLEBUF/*|SDL_FULLSCREEN*/); //initializing important global surface
|
|
screen = SDL_SetVideoMode(800,600,24,SDL_SWSURFACE|SDL_DOUBLEBUF/*|SDL_FULLSCREEN*/); //initializing important global surface
|
|
- _log0 <<"\tInitializing screen: "<<pomtime.getDif();
|
|
|
|
- _log0 << std::endl;
|
|
|
|
|
|
+ tlog0 <<"\tInitializing screen: "<<pomtime.getDif();
|
|
|
|
+ tlog0 << std::endl;
|
|
SDL_WM_SetCaption(NAME.c_str(),""); //set window title
|
|
SDL_WM_SetCaption(NAME.c_str(),""); //set window title
|
|
#if SDL_BYTEORDER == SDL_BIG_ENDIAN
|
|
#if SDL_BYTEORDER == SDL_BIG_ENDIAN
|
|
int rmask = 0xff000000;int gmask = 0x00ff0000;int bmask = 0x0000ff00;int amask = 0x000000ff;
|
|
int rmask = 0xff000000;int gmask = 0x00ff0000;int bmask = 0x0000ff00;int amask = 0x000000ff;
|
|
@@ -118,7 +110,7 @@ int main(int argc, char** argv)
|
|
int rmask = 0x000000ff; int gmask = 0x0000ff00; int bmask = 0x00ff0000; int amask = 0xff000000;
|
|
int rmask = 0x000000ff; int gmask = 0x0000ff00; int bmask = 0x00ff0000; int amask = 0xff000000;
|
|
#endif
|
|
#endif
|
|
CSDL_Ext::std32bppSurface = SDL_CreateRGBSurface(SDL_SWSURFACE, 1, 1, 32, rmask, gmask, bmask, amask);
|
|
CSDL_Ext::std32bppSurface = SDL_CreateRGBSurface(SDL_SWSURFACE, 1, 1, 32, rmask, gmask, bmask, amask);
|
|
- _log0 << "\tInitializing minors: " << pomtime.getDif() << std::endl;
|
|
|
|
|
|
+ tlog0 << "\tInitializing minors: " << pomtime.getDif() << std::endl;
|
|
TTF_Init();
|
|
TTF_Init();
|
|
TNRB16 = TTF_OpenFont("Fonts" PATHSEPARATOR "tnrb.ttf",16);
|
|
TNRB16 = TTF_OpenFont("Fonts" PATHSEPARATOR "tnrb.ttf",16);
|
|
GEOR13 = TTF_OpenFont("Fonts" PATHSEPARATOR "georgia.ttf",13);
|
|
GEOR13 = TTF_OpenFont("Fonts" PATHSEPARATOR "georgia.ttf",13);
|
|
@@ -126,18 +118,18 @@ int main(int argc, char** argv)
|
|
GEORXX = TTF_OpenFont("Fonts" PATHSEPARATOR "tnrb.ttf",22);
|
|
GEORXX = TTF_OpenFont("Fonts" PATHSEPARATOR "tnrb.ttf",22);
|
|
GEORM = TTF_OpenFont("Fonts" PATHSEPARATOR "georgia.ttf",10);
|
|
GEORM = TTF_OpenFont("Fonts" PATHSEPARATOR "georgia.ttf",10);
|
|
atexit(TTF_Quit);
|
|
atexit(TTF_Quit);
|
|
- THC _log0<<"\tInitializing fonts: "<<pomtime.getDif()<<std::endl;
|
|
|
|
|
|
+ THC tlog0<<"\tInitializing fonts: "<<pomtime.getDif()<<std::endl;
|
|
CMusicHandler * mush = new CMusicHandler; //initializing audio
|
|
CMusicHandler * mush = new CMusicHandler; //initializing audio
|
|
mush->initMusics();
|
|
mush->initMusics();
|
|
//audio initialized
|
|
//audio initialized
|
|
cgi->mush = mush;
|
|
cgi->mush = mush;
|
|
- THC _log0<<"\tInitializing sound: "<<pomtime.getDif()<<std::endl;
|
|
|
|
- THC _log0<<"Initializing screen, fonts and sound handling: "<<tmh.getDif()<<std::endl;
|
|
|
|
|
|
+ THC tlog0<<"\tInitializing sound: "<<pomtime.getDif()<<std::endl;
|
|
|
|
+ THC tlog0<<"Initializing screen, fonts and sound handling: "<<tmh.getDif()<<std::endl;
|
|
CDefHandler::Spriteh = cgi->spriteh = new CLodHandler();
|
|
CDefHandler::Spriteh = cgi->spriteh = new CLodHandler();
|
|
cgi->spriteh->init("Data" PATHSEPARATOR "H3sprite.lod","Sprites");
|
|
cgi->spriteh->init("Data" PATHSEPARATOR "H3sprite.lod","Sprites");
|
|
BitmapHandler::bitmaph = cgi->bitmaph = new CLodHandler;
|
|
BitmapHandler::bitmaph = cgi->bitmaph = new CLodHandler;
|
|
cgi->bitmaph->init("Data" PATHSEPARATOR "H3bitmap.lod","Data");
|
|
cgi->bitmaph->init("Data" PATHSEPARATOR "H3bitmap.lod","Data");
|
|
- THC _log0<<"Loading .lod files: "<<tmh.getDif()<<std::endl;
|
|
|
|
|
|
+ THC tlog0<<"Loading .lod files: "<<tmh.getDif()<<std::endl;
|
|
initDLL(cgi->bitmaph,::console,logfile);
|
|
initDLL(cgi->bitmaph,::console,logfile);
|
|
CGI->arth = VLC->arth;
|
|
CGI->arth = VLC->arth;
|
|
CGI->creh = VLC->creh;
|
|
CGI->creh = VLC->creh;
|
|
@@ -147,7 +139,7 @@ int main(int argc, char** argv)
|
|
CGI->spellh = VLC->spellh;
|
|
CGI->spellh = VLC->spellh;
|
|
CGI->dobjinfo = VLC->dobjinfo;
|
|
CGI->dobjinfo = VLC->dobjinfo;
|
|
CGI->buildh = VLC->buildh;
|
|
CGI->buildh = VLC->buildh;
|
|
- _log0<<"Initializing VCMI_Lib: "<<tmh.getDif()<<std::endl;
|
|
|
|
|
|
+ tlog0<<"Initializing VCMI_Lib: "<<tmh.getDif()<<std::endl;
|
|
//cgi->curh->initCursor();
|
|
//cgi->curh->initCursor();
|
|
//cgi->curh->showGraphicCursor();
|
|
//cgi->curh->showGraphicCursor();
|
|
pomtime.getDif();
|
|
pomtime.getDif();
|
|
@@ -155,28 +147,28 @@ int main(int argc, char** argv)
|
|
cgi->curh->initCursor();
|
|
cgi->curh->initCursor();
|
|
//cgi->screenh = new CScreenHandler;
|
|
//cgi->screenh = new CScreenHandler;
|
|
//cgi->screenh->initScreen();
|
|
//cgi->screenh->initScreen();
|
|
- _log0<<"\tScreen handler: "<<pomtime.getDif()<<std::endl;
|
|
|
|
|
|
+ tlog0<<"\tScreen handler: "<<pomtime.getDif()<<std::endl;
|
|
CAbilityHandler * abilh = new CAbilityHandler;
|
|
CAbilityHandler * abilh = new CAbilityHandler;
|
|
abilh->loadAbilities();
|
|
abilh->loadAbilities();
|
|
cgi->abilh = abilh;
|
|
cgi->abilh = abilh;
|
|
- _log0<<"\tAbility handler: "<<pomtime.getDif()<<std::endl;
|
|
|
|
- _log0<<"Preparing first handlers: "<<tmh.getDif()<<std::endl;
|
|
|
|
|
|
+ tlog0<<"\tAbility handler: "<<pomtime.getDif()<<std::endl;
|
|
|
|
+ tlog0<<"Preparing first handlers: "<<tmh.getDif()<<std::endl;
|
|
pomtime.getDif();
|
|
pomtime.getDif();
|
|
graphics = new Graphics();
|
|
graphics = new Graphics();
|
|
- _log0<<"\tMain graphics: "<<tmh.getDif()<<std::endl;
|
|
|
|
|
|
+ tlog0<<"\tMain graphics: "<<tmh.getDif()<<std::endl;
|
|
std::vector<CDefHandler **> animacje;
|
|
std::vector<CDefHandler **> animacje;
|
|
for(std::vector<CHeroClass *>::iterator i = cgi->heroh->heroClasses.begin();i!=cgi->heroh->heroClasses.end();i++)
|
|
for(std::vector<CHeroClass *>::iterator i = cgi->heroh->heroClasses.begin();i!=cgi->heroh->heroClasses.end();i++)
|
|
animacje.push_back(&((*i)->*(&CHeroClass::moveAnim)));
|
|
animacje.push_back(&((*i)->*(&CHeroClass::moveAnim)));
|
|
graphics->loadHeroAnim(animacje);
|
|
graphics->loadHeroAnim(animacje);
|
|
- _log0<<"\tHero animations: "<<tmh.getDif()<<std::endl;
|
|
|
|
- _log0<<"Initializing game graphics: "<<tmh.getDif()<<std::endl;
|
|
|
|
|
|
+ tlog0<<"\tHero animations: "<<tmh.getDif()<<std::endl;
|
|
|
|
+ tlog0<<"Initializing game graphics: "<<tmh.getDif()<<std::endl;
|
|
CMessage::init();
|
|
CMessage::init();
|
|
cgi->generaltexth = new CGeneralTextHandler;
|
|
cgi->generaltexth = new CGeneralTextHandler;
|
|
cgi->generaltexth->load();
|
|
cgi->generaltexth->load();
|
|
- _log0<<"Preparing more handlers: "<<tmh.getDif()<<std::endl;
|
|
|
|
|
|
+ tlog0<<"Preparing more handlers: "<<tmh.getDif()<<std::endl;
|
|
CPreGame * cpg = new CPreGame(); //main menu and submenus
|
|
CPreGame * cpg = new CPreGame(); //main menu and submenus
|
|
- _log0<<"Initialization CPreGame (together): "<<tmh.getDif()<<std::endl;
|
|
|
|
- _log0<<"Initialization of VCMI (togeter): "<<total.getDif()<<std::endl;
|
|
|
|
|
|
+ tlog0<<"Initialization CPreGame (together): "<<tmh.getDif()<<std::endl;
|
|
|
|
+ tlog0<<"Initialization of VCMI (togeter): "<<total.getDif()<<std::endl;
|
|
cpg->mush = mush;
|
|
cpg->mush = mush;
|
|
|
|
|
|
StartInfo *options = new StartInfo(cpg->runLoop());
|
|
StartInfo *options = new StartInfo(cpg->runLoop());
|
|
@@ -189,17 +181,17 @@ int main(int argc, char** argv)
|
|
ServerReady *sr = new(mr.get_address())ServerReady();
|
|
ServerReady *sr = new(mr.get_address())ServerReady();
|
|
std::string comm = std::string(SERVER_NAME) + " " + portc + " > server_log.txt";
|
|
std::string comm = std::string(SERVER_NAME) + " " + portc + " > server_log.txt";
|
|
boost::thread servthr(boost::bind(system,comm.c_str())); //runs server executable; //TODO: will it work on non-windows platforms?
|
|
boost::thread servthr(boost::bind(system,comm.c_str())); //runs server executable; //TODO: will it work on non-windows platforms?
|
|
- _log0<<"Preparing shared memory and starting server: "<<tmh.getDif()<<std::endl;
|
|
|
|
|
|
+ tlog0<<"Preparing shared memory and starting server: "<<tmh.getDif()<<std::endl;
|
|
///////////////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////////////
|
|
tmh.getDif();pomtime.getDif();//reset timers
|
|
tmh.getDif();pomtime.getDif();//reset timers
|
|
cgi->pathf = new CPathfinder();
|
|
cgi->pathf = new CPathfinder();
|
|
- _log0<<"\tPathfinder: "<<pomtime.getDif()<<std::endl;
|
|
|
|
- _log0<<"Handlers initialization (together): "<<tmh.getDif()<<std::endl;
|
|
|
|
|
|
+ tlog0<<"\tPathfinder: "<<pomtime.getDif()<<std::endl;
|
|
|
|
+ tlog0<<"Handlers initialization (together): "<<tmh.getDif()<<std::endl;
|
|
std::ofstream lll("client_log.txt");
|
|
std::ofstream lll("client_log.txt");
|
|
|
|
|
|
CConnection *c=NULL;
|
|
CConnection *c=NULL;
|
|
//wait until server is ready
|
|
//wait until server is ready
|
|
- _log0<<"Waiting for server... ";
|
|
|
|
|
|
+ tlog0<<"Waiting for server... ";
|
|
{
|
|
{
|
|
intpr::scoped_lock<intpr::interprocess_mutex> slock(sr->mutex);
|
|
intpr::scoped_lock<intpr::interprocess_mutex> slock(sr->mutex);
|
|
while(!sr->ready)
|
|
while(!sr->ready)
|
|
@@ -208,21 +200,21 @@ int main(int argc, char** argv)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
intpr::shared_memory_object::remove("vcmi_memory");
|
|
intpr::shared_memory_object::remove("vcmi_memory");
|
|
- _log0 << tmh.getDif()<<std::endl;
|
|
|
|
|
|
+ tlog0 << tmh.getDif()<<std::endl;
|
|
while(!c)
|
|
while(!c)
|
|
{
|
|
{
|
|
try
|
|
try
|
|
{
|
|
{
|
|
- _log0 << "Establishing connection...\n";
|
|
|
|
|
|
+ tlog0 << "Establishing connection...\n";
|
|
c = new CConnection("127.0.0.1",portc,NAME,lll);
|
|
c = new CConnection("127.0.0.1",portc,NAME,lll);
|
|
}
|
|
}
|
|
catch(...)
|
|
catch(...)
|
|
{
|
|
{
|
|
- _log1 << "\nCannot establish connection! Retrying within 2 seconds" <<std::endl;
|
|
|
|
|
|
+ tlog1 << "\nCannot establish connection! Retrying within 2 seconds" <<std::endl;
|
|
SDL_Delay(2000);
|
|
SDL_Delay(2000);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
- THC _log0<<"\tConnecting to the server: "<<tmh.getDif()<<std::endl;
|
|
|
|
|
|
+ THC tlog0<<"\tConnecting to the server: "<<tmh.getDif()<<std::endl;
|
|
CClient cl(c,options);
|
|
CClient cl(c,options);
|
|
boost::thread t(boost::bind(&CClient::run,&cl));
|
|
boost::thread t(boost::bind(&CClient::run,&cl));
|
|
SDL_Event ev;
|
|
SDL_Event ev;
|
|
@@ -236,7 +228,7 @@ int main(int argc, char** argv)
|
|
::console->killConsole(console->native_handle());
|
|
::console->killConsole(console->native_handle());
|
|
#endif
|
|
#endif
|
|
SDL_Delay(750);
|
|
SDL_Delay(750);
|
|
- _log0 << "Ending...\n";
|
|
|
|
|
|
+ tlog0 << "Ending...\n";
|
|
exit(0);
|
|
exit(0);
|
|
}
|
|
}
|
|
eventsM.lock();
|
|
eventsM.lock();
|
|
@@ -246,7 +238,7 @@ int main(int argc, char** argv)
|
|
}
|
|
}
|
|
else
|
|
else
|
|
{
|
|
{
|
|
- _log1<<"Something was wrong: "<<SDL_GetError()<<std::endl;
|
|
|
|
|
|
+ tlog1<<"Something was wrong: "<<SDL_GetError()<<std::endl;
|
|
return -1;
|
|
return -1;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -284,10 +276,10 @@ void processCommand(const std::string &message)
|
|
else if(message=="get txt")
|
|
else if(message=="get txt")
|
|
{
|
|
{
|
|
boost::filesystem::create_directory("Extracted_txts");
|
|
boost::filesystem::create_directory("Extracted_txts");
|
|
- _log0<<"Command accepted. Opening .lod file...\t";
|
|
|
|
|
|
+ tlog0<<"Command accepted. Opening .lod file...\t";
|
|
CLodHandler * txth = new CLodHandler;
|
|
CLodHandler * txth = new CLodHandler;
|
|
txth->init(std::string(DATA_DIR "Data" PATHSEPARATOR "H3bitmap.lod"),"data");
|
|
txth->init(std::string(DATA_DIR "Data" PATHSEPARATOR "H3bitmap.lod"),"data");
|
|
- _log0<<"done.\nScanning .lod file\n";
|
|
|
|
|
|
+ tlog0<<"done.\nScanning .lod file\n";
|
|
int curp=0;
|
|
int curp=0;
|
|
std::string pattern = ".TXT";
|
|
std::string pattern = ".TXT";
|
|
for(int i=0;i<txth->entries.size(); i++)
|
|
for(int i=0;i<txth->entries.size(); i++)
|
|
@@ -302,9 +294,9 @@ void processCommand(const std::string &message)
|
|
if(p2!=curp)
|
|
if(p2!=curp)
|
|
{
|
|
{
|
|
curp = p2;
|
|
curp = p2;
|
|
- _log0<<"\r"<<curp<<"%";
|
|
|
|
|
|
+ tlog0<<"\r"<<curp<<"%";
|
|
}
|
|
}
|
|
}
|
|
}
|
|
- _log0<<"\rExtracting done :)\n";
|
|
|
|
|
|
+ tlog0<<"\rExtracting done :)\n";
|
|
}
|
|
}
|
|
}
|
|
}
|