{
string s;
s = me.toString(me);
- if(s == "")
- s = me.classname;
- else
- s = strcat(me.classname, ": ", s);
+ if (s == "") s = me.classname;
+ else s = strcat(me.classname, ": ", s);
LOG_INFO(_dumptree_space, etos(me), " (", s, ")");
- if(me.firstChild)
+ if (me.firstChild)
{
LOG_INFO(" {\n");
_dumptree_space = strcat(_dumptree_space, " ");
}
else
+ {
LOG_INFO("\n");
+ }
}
void _dumptree_close(entity pass, entity me)
{
- if(me.firstChild)
+ if (me.firstChild)
{
_dumptree_space = substring(_dumptree_space, 0, strlen(_dumptree_space) - 2);
LOG_INFO(_dumptree_space, "}\n");
float argc;
argc = tokenize_console(theCommand);
- if(argv(0) == "help" || argc == 0)
+ if (argv(0) == "help" || argc == 0)
{
LOG_INFO(_("Usage: menu_cmd command..., where possible commands are:\n"));
LOG_INFO(_(" sync - reloads all cvars on the current menu page\n"));
return;
}
- if(GenericCommand(theCommand))
- return;
+ if (GenericCommand(theCommand)) return;
- if(argv(0) == "sync")
+ if (argv(0) == "sync")
{
m_sync();
return;
}
- if(argv(0) == "update_conwidths_before_vid_restart")
+ if (argv(0) == "update_conwidths_before_vid_restart")
{
updateConwidths(cvar("vid_width"), cvar("vid_height"), cvar("vid_pixelheight"));
return;
}
- if(argv(0) == "directmenu" || argv(0) == "directpanelhudmenu")
+ if (argv(0) == "directmenu" || argv(0) == "directpanelhudmenu")
{
string filter = string_null;
- if(argv(0) == "directpanelhudmenu")
- filter = strzone("HUD");
+ if (argv(0) == "directpanelhudmenu") filter = strzone("HUD");
- if(argc == 1)
+ if (argc == 1)
{
LOG_INFO(_("Available options:\n"));
float i;
entity e;
string s;
- for(i = 0, e = NULL; (e = nextent(e)); )
- if(e.classname != "vtbl" && e.name != "")
+ for (i = 0, e = NULL; (e = nextent(e)); )
+ if (e.classname != "vtbl" && e.name != "")
{
s = e.name;
- if(filter)
+ if (filter)
{
- if(substring(s, 0, strlen(filter)) != filter)
- continue;
+ if (substring(s, 0, strlen(filter)) != filter) continue;
s = substring(s, strlen(filter), strlen(s) - strlen(filter));
}
- LOG_INFO(strcat(" ", s ,"\n"));
+ LOG_INFO(strcat(" ", s, "\n"));
++i;
}
}
- else if(argc == 2 && !isdemo()) // don't allow this command in demos
+ else if (argc == 2 && !isdemo()) // don't allow this command in demos
{
m_play_click_sound(MENU_SOUND_OPEN);
m_goto(strcat(filter, argv(1))); // switch to a menu item
}
- if(filter)
- strunzone(filter);
+ if (filter) strunzone(filter);
return;
}
- if(argv(0) == "skinselect")
+ if (argv(0) == "skinselect")
{
m_goto("skinselector");
return;
}
- if(argv(0) == "languageselect")
+ if (argv(0) == "languageselect")
{
m_goto("languageselector");
return;
}
- if(argv(0) == "videosettings")
+ if (argv(0) == "videosettings")
{
m_goto("videosettings");
return;
}
- if(argv(0) == "dumptree")
+ if (argv(0) == "dumptree")
{
_dumptree_space = "";
depthfirst(main, parent, firstChild, nextSibling, _dumptree_open, _dumptree_close, NULL);