Skip to content

Commit

Permalink
Remove debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
PilzAdam committed Aug 16, 2013
1 parent b94f182 commit 1e4e64f
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 27 deletions.
6 changes: 0 additions & 6 deletions src/guiFileSelectMenu.cpp
Expand Up @@ -101,12 +101,6 @@ bool GUIFileSelectMenu::OnEvent(const SEvent& event)
{

if (event.EventType == irr::EET_GUI_EVENT) {

int callerId = event.GUIEvent.Caller->getID();
if (callerId >= 0) {
std::cout << "CallerId:" << callerId << std::endl;
}

switch (event.GUIEvent.EventType) {
case gui::EGET_ELEMENT_CLOSED:
case gui::EGET_FILE_CHOOSE_DIALOG_CANCELLED:
Expand Down
21 changes: 0 additions & 21 deletions src/guiFormSpecMenu.cpp
Expand Up @@ -260,8 +260,6 @@ void GUIFormSpecMenu::parseSize(parserData* data,std::string element) {
invsize.X = stof(parts[0]);
invsize.Y = stof(parts[1]);

infostream<<"Form size ("<<invsize.X<<","<<invsize.Y<<")"<<std::endl;

if (m_lock) {
v2u32 current_screensize = m_device->getVideoDriver()->getScreenSize();
v2u32 delta = current_screensize - m_lockscreensize;
Expand Down Expand Up @@ -342,10 +340,6 @@ void GUIFormSpecMenu::parseList(parserData* data,std::string element) {
v2s32 geom;
geom.X = stoi(v_geom[0]);
geom.Y = stoi(v_geom[1]);
infostream<<"list inv="<<location<<", listname="<<listname
<<", pos=("<<pos.X<<","<<pos.Y<<")"
<<", geom=("<<geom.X<<","<<geom.Y<<")"
<<std::endl;

s32 start_i = 0;
if(startindex != "")
Expand Down Expand Up @@ -425,10 +419,6 @@ void GUIFormSpecMenu::parseImage(parserData* data,std::string element) {
geom.X = stoi(v_geom[0]) * (float)imgsize.X;
geom.Y = stoi(v_geom[1]) * (float)imgsize.Y;

infostream<<"image name="<<name
<<", pos=("<<pos.X<<","<<pos.Y<<")"
<<", geom=("<<geom.X<<","<<geom.Y<<")"
<<std::endl;
if(data->bp_set != 2)
errorstream<<"WARNING: invalid use of image without a size[] element"<<std::endl;
m_images.push_back(ImageDrawSpec(name, pos, geom));
Expand All @@ -445,9 +435,6 @@ void GUIFormSpecMenu::parseImage(parserData* data,std::string element) {
pos.X += stof(v_pos[0]) * (float) spacing.X;
pos.Y += stof(v_pos[1]) * (float) spacing.Y;

std::cout<<"image name="<<name
<<", pos=("<<pos.X<<","<<pos.Y<<")"
<<std::endl;
if(data->bp_set != 2)
errorstream<<"WARNING: invalid use of image without a size[] element"<<std::endl;
m_images.push_back(ImageDrawSpec(name, pos));
Expand Down Expand Up @@ -475,10 +462,6 @@ void GUIFormSpecMenu::parseItemImage(parserData* data,std::string element) {
geom.X = stoi(v_geom[0]) * (float)imgsize.X;
geom.Y = stoi(v_geom[1]) * (float)imgsize.Y;

infostream<<"item name="<<name
<<", pos=("<<pos.X<<","<<pos.Y<<")"
<<", geom=("<<geom.X<<","<<geom.Y<<")"
<<std::endl;
if(data->bp_set != 2)
errorstream<<"WARNING: invalid use of item_image without a size[] element"<<std::endl;
m_itemimages.push_back(ImageDrawSpec(name, pos, geom));
Expand Down Expand Up @@ -555,10 +538,6 @@ void GUIFormSpecMenu::parseBackground(parserData* data,std::string element) {
geom.X = stof(v_geom[0]) * (float)spacing.X;
geom.Y = stof(v_geom[1]) * (float)spacing.Y;

infostream<<"image name="<<name
<<", pos=("<<pos.X<<","<<pos.Y<<")"
<<", geom=("<<geom.X<<","<<geom.Y<<")"
<<std::endl;
if(data->bp_set != 2)
errorstream<<"WARNING: invalid use of background without a size[] element"<<std::endl;
m_backgrounds.push_back(ImageDrawSpec(name, pos, geom));
Expand Down

0 comments on commit 1e4e64f

Please sign in to comment.