Hello Lambda!
This commit is contained in:
@@ -104,8 +104,7 @@ public final class CL {
|
||||
*
|
||||
* Stop recording a demo.
|
||||
*/
|
||||
static Runnable Stop_f = new Runnable() {
|
||||
public void run() {
|
||||
static Runnable Stop_f = () -> {
|
||||
try {
|
||||
|
||||
int len;
|
||||
@@ -124,7 +123,6 @@ public final class CL {
|
||||
log.info("Stopped demo.");
|
||||
} catch (IOException e) {
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
static entity_state_t nullstate = new entity_state_t(null);
|
||||
@@ -135,8 +133,7 @@ public final class CL {
|
||||
* record <demoname>
|
||||
* Begins recording a demo from the current position.
|
||||
*/
|
||||
static Runnable Record_f = new Runnable() {
|
||||
public void run() {
|
||||
static Runnable Record_f = () -> {
|
||||
try {
|
||||
String name;
|
||||
byte buf_data[] = new byte[Defines.MAX_MSGLEN];
|
||||
@@ -239,14 +236,12 @@ public final class CL {
|
||||
|
||||
} catch (IOException e) {
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* ForwardToServer_f
|
||||
*/
|
||||
static Runnable ForwardToServer_f = new Runnable() {
|
||||
public void run() {
|
||||
static Runnable ForwardToServer_f = () -> {
|
||||
if (Globals.cls.state != Defines.ca_connected
|
||||
&& Globals.cls.state != Defines.ca_active) {
|
||||
log.warn("Can't \"{}\", not connected", Cmd.Argv(0));
|
||||
@@ -259,14 +254,12 @@ public final class CL {
|
||||
Defines.clc_stringcmd);
|
||||
SZ.Print(Globals.cls.netchan.message, Cmd.Args());
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* Pause_f
|
||||
*/
|
||||
static Runnable Pause_f = new Runnable() {
|
||||
public void run() {
|
||||
static Runnable Pause_f = () -> {
|
||||
// never pause in multiplayer
|
||||
|
||||
if (Cvar.VariableValue("maxclients") > 1
|
||||
@@ -276,24 +269,20 @@ public final class CL {
|
||||
}
|
||||
|
||||
Cvar.SetValue("paused", Globals.cl_paused.value);
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* Quit_f
|
||||
*/
|
||||
static Runnable Quit_f = new Runnable() {
|
||||
public void run() {
|
||||
static Runnable Quit_f = () -> {
|
||||
Disconnect();
|
||||
Com.Quit();
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* Connect_f
|
||||
*/
|
||||
static Runnable Connect_f = new Runnable() {
|
||||
public void run() {
|
||||
static Runnable Connect_f = () -> {
|
||||
String server;
|
||||
|
||||
if (Cmd.Argc() != 2) {
|
||||
@@ -319,7 +308,6 @@ public final class CL {
|
||||
Globals.cls.servername = server;
|
||||
Globals.cls.connect_time = -99999;
|
||||
// CL_CheckForResend() will fire immediately
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
@@ -327,8 +315,7 @@ public final class CL {
|
||||
*
|
||||
* Send the rest of the command line over as an unconnected command.
|
||||
*/
|
||||
static Runnable Rcon_f = new Runnable() {
|
||||
public void run() {
|
||||
static Runnable Rcon_f = () -> {
|
||||
|
||||
if (Globals.rcon_client_password.string.length() == 0) {
|
||||
log.warn("You must set 'rcon_password' before\nissuing an rcon command.");
|
||||
@@ -370,22 +357,16 @@ public final class CL {
|
||||
message.append('\0');
|
||||
String b = message.toString();
|
||||
NET.SendPacket(Defines.NS_CLIENT, b.length(), Lib.stringToBytes(b), to);
|
||||
}
|
||||
};
|
||||
|
||||
static Runnable Disconnect_f = new Runnable() {
|
||||
public void run() {
|
||||
Com.Error(Defines.ERR_DROP, "Disconnected from server");
|
||||
}
|
||||
};
|
||||
static Runnable Disconnect_f = () -> Com.Error(Defines.ERR_DROP, "Disconnected from server");
|
||||
|
||||
/**
|
||||
* Changing_f
|
||||
*
|
||||
* Just sent as a hint to the client that they should drop to full console.
|
||||
*/
|
||||
static Runnable Changing_f = new Runnable() {
|
||||
public void run() {
|
||||
static Runnable Changing_f = () -> {
|
||||
//ZOID
|
||||
//if we are downloading, we don't change!
|
||||
// This so we don't suddenly stop downloading a map
|
||||
@@ -397,7 +378,6 @@ public final class CL {
|
||||
Globals.cls.state = Defines.ca_connected; // not active anymore, but
|
||||
// not disconnected
|
||||
log.info("Changing map...");
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
@@ -405,8 +385,7 @@ public final class CL {
|
||||
*
|
||||
* The server is changing levels.
|
||||
*/
|
||||
static Runnable Reconnect_f = new Runnable() {
|
||||
public void run() {
|
||||
static Runnable Reconnect_f = () -> {
|
||||
//ZOID
|
||||
//if we are downloading, we don't change! This so we don't suddenly
|
||||
// stop downloading a map
|
||||
@@ -433,14 +412,12 @@ public final class CL {
|
||||
Globals.cls.state = Defines.ca_connecting;
|
||||
log.info("reconnecting...");
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* PingServers_f
|
||||
*/
|
||||
static Runnable PingServers_f = new Runnable() {
|
||||
public void run() {
|
||||
static Runnable PingServers_f = () -> {
|
||||
int i;
|
||||
netadr_t adr = new netadr_t();
|
||||
//char name[32];
|
||||
@@ -492,7 +469,6 @@ public final class CL {
|
||||
Netchan.OutOfBandPrint(Defines.NS_CLIENT, adr, "info "
|
||||
+ Defines.PROTOCOL_VERSION);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
@@ -500,8 +476,7 @@ public final class CL {
|
||||
*
|
||||
* Load or download any custom player skins and models.
|
||||
*/
|
||||
static Runnable Skins_f = new Runnable() {
|
||||
public void run() {
|
||||
static Runnable Skins_f = () -> {
|
||||
int i;
|
||||
|
||||
for (i = 0; i < Defines.MAX_CLIENTS; i++) {
|
||||
@@ -512,17 +487,14 @@ public final class CL {
|
||||
Sys.SendKeyEvents(); // pump message loop
|
||||
CL_parse.ParseClientinfo(i);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* Userinfo_f
|
||||
*/
|
||||
static Runnable Userinfo_f = new Runnable() {
|
||||
public void run() {
|
||||
static Runnable Userinfo_f = () -> {
|
||||
log.info("User info settings:");
|
||||
Info.Print(Cvar.Userinfo());
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
@@ -531,12 +503,10 @@ public final class CL {
|
||||
* Restart the sound subsystem so it can pick up new parameters and flush
|
||||
* all sounds.
|
||||
*/
|
||||
static Runnable Snd_Restart_f = new Runnable() {
|
||||
public void run() {
|
||||
static Runnable Snd_Restart_f = () -> {
|
||||
S.Shutdown();
|
||||
S.Init();
|
||||
CL_parse.RegisterSounds();
|
||||
}
|
||||
};
|
||||
|
||||
// ENV_CNT is map load, ENV_CNT+1 is first env map
|
||||
@@ -551,8 +521,7 @@ public final class CL {
|
||||
* The server will send this command right before allowing the client into
|
||||
* the server.
|
||||
*/
|
||||
static Runnable Precache_f = new Runnable() {
|
||||
public void run() {
|
||||
static Runnable Precache_f = () -> {
|
||||
// Yet another hack to let old demos work the old precache sequence.
|
||||
if (Cmd.Argc() < 2) {
|
||||
|
||||
@@ -572,7 +541,6 @@ public final class CL {
|
||||
CL.precache_model_skin = 0;
|
||||
|
||||
RequestNextDownload();
|
||||
}
|
||||
};
|
||||
|
||||
private static int extratime;
|
||||
|
||||
@@ -486,167 +486,38 @@ public class CL_input {
|
||||
* ============ CL_InitInput ============
|
||||
*/
|
||||
static void InitInput() {
|
||||
Cmd.AddCommand("centerview", new Runnable() {
|
||||
public void run() {
|
||||
IN.CenterView();
|
||||
}
|
||||
});
|
||||
|
||||
Cmd.AddCommand("+moveup", new Runnable() {
|
||||
public void run() {
|
||||
IN_UpDown();
|
||||
}
|
||||
});
|
||||
Cmd.AddCommand("-moveup", new Runnable() {
|
||||
public void run() {
|
||||
IN_UpUp();
|
||||
}
|
||||
});
|
||||
Cmd.AddCommand("+movedown", new Runnable() {
|
||||
public void run() {
|
||||
IN_DownDown();
|
||||
}
|
||||
});
|
||||
Cmd.AddCommand("-movedown", new Runnable() {
|
||||
public void run() {
|
||||
IN_DownUp();
|
||||
}
|
||||
});
|
||||
Cmd.AddCommand("+left", new Runnable() {
|
||||
public void run() {
|
||||
IN_LeftDown();
|
||||
}
|
||||
});
|
||||
Cmd.AddCommand("-left", new Runnable() {
|
||||
public void run() {
|
||||
IN_LeftUp();
|
||||
}
|
||||
});
|
||||
Cmd.AddCommand("+right", new Runnable() {
|
||||
public void run() {
|
||||
IN_RightDown();
|
||||
}
|
||||
});
|
||||
Cmd.AddCommand("-right", new Runnable() {
|
||||
public void run() {
|
||||
IN_RightUp();
|
||||
}
|
||||
});
|
||||
Cmd.AddCommand("+forward", new Runnable() {
|
||||
public void run() {
|
||||
IN_ForwardDown();
|
||||
}
|
||||
});
|
||||
Cmd.AddCommand("-forward", new Runnable() {
|
||||
public void run() {
|
||||
IN_ForwardUp();
|
||||
}
|
||||
});
|
||||
Cmd.AddCommand("+back", new Runnable() {
|
||||
public void run() {
|
||||
IN_BackDown();
|
||||
}
|
||||
});
|
||||
Cmd.AddCommand("-back", new Runnable() {
|
||||
public void run() {
|
||||
IN_BackUp();
|
||||
}
|
||||
});
|
||||
Cmd.AddCommand("+lookup", new Runnable() {
|
||||
public void run() {
|
||||
IN_LookupDown();
|
||||
}
|
||||
});
|
||||
Cmd.AddCommand("-lookup", new Runnable() {
|
||||
public void run() {
|
||||
IN_LookupUp();
|
||||
}
|
||||
});
|
||||
Cmd.AddCommand("+lookdown", new Runnable() {
|
||||
public void run() {
|
||||
IN_LookdownDown();
|
||||
}
|
||||
});
|
||||
Cmd.AddCommand("-lookdown", new Runnable() {
|
||||
public void run() {
|
||||
IN_LookdownUp();
|
||||
}
|
||||
});
|
||||
Cmd.AddCommand("+strafe", new Runnable() {
|
||||
public void run() {
|
||||
IN_StrafeDown();
|
||||
}
|
||||
});
|
||||
Cmd.AddCommand("-strafe", new Runnable() {
|
||||
public void run() {
|
||||
IN_StrafeUp();
|
||||
}
|
||||
});
|
||||
Cmd.AddCommand("+moveleft", new Runnable() {
|
||||
public void run() {
|
||||
IN_MoveleftDown();
|
||||
}
|
||||
});
|
||||
Cmd.AddCommand("-moveleft", new Runnable() {
|
||||
public void run() {
|
||||
IN_MoveleftUp();
|
||||
}
|
||||
});
|
||||
Cmd.AddCommand("+moveright", new Runnable() {
|
||||
public void run() {
|
||||
IN_MoverightDown();
|
||||
}
|
||||
});
|
||||
Cmd.AddCommand("-moveright", new Runnable() {
|
||||
public void run() {
|
||||
IN_MoverightUp();
|
||||
}
|
||||
});
|
||||
Cmd.AddCommand("+speed", new Runnable() {
|
||||
public void run() {
|
||||
IN_SpeedDown();
|
||||
}
|
||||
});
|
||||
Cmd.AddCommand("-speed", new Runnable() {
|
||||
public void run() {
|
||||
IN_SpeedUp();
|
||||
}
|
||||
});
|
||||
Cmd.AddCommand("+attack", new Runnable() {
|
||||
public void run() {
|
||||
IN_AttackDown();
|
||||
}
|
||||
});
|
||||
Cmd.AddCommand("-attack", new Runnable() {
|
||||
public void run() {
|
||||
IN_AttackUp();
|
||||
}
|
||||
});
|
||||
Cmd.AddCommand("+use", new Runnable() {
|
||||
public void run() {
|
||||
IN_UseDown();
|
||||
}
|
||||
});
|
||||
Cmd.AddCommand("-use", new Runnable() {
|
||||
public void run() {
|
||||
IN_UseUp();
|
||||
}
|
||||
});
|
||||
Cmd.AddCommand("impulse", new Runnable() {
|
||||
public void run() {
|
||||
IN_Impulse();
|
||||
}
|
||||
});
|
||||
Cmd.AddCommand("+klook", new Runnable() {
|
||||
public void run() {
|
||||
IN_KLookDown();
|
||||
}
|
||||
});
|
||||
Cmd.AddCommand("-klook", new Runnable() {
|
||||
public void run() {
|
||||
IN_KLookUp();
|
||||
}
|
||||
});
|
||||
Cmd.AddCommand("centerview", IN::CenterView);
|
||||
Cmd.AddCommand("+moveup", CL_input::IN_UpDown);
|
||||
Cmd.AddCommand("-moveup", CL_input::IN_UpUp);
|
||||
Cmd.AddCommand("+movedown", CL_input::IN_DownDown);
|
||||
Cmd.AddCommand("-movedown", CL_input::IN_DownUp);
|
||||
Cmd.AddCommand("+left", CL_input::IN_LeftDown);
|
||||
Cmd.AddCommand("-left", CL_input::IN_LeftUp);
|
||||
Cmd.AddCommand("+right", CL_input::IN_RightDown);
|
||||
Cmd.AddCommand("-right", CL_input::IN_RightUp);
|
||||
Cmd.AddCommand("+forward", CL_input::IN_ForwardDown);
|
||||
Cmd.AddCommand("-forward", CL_input::IN_ForwardUp);
|
||||
Cmd.AddCommand("+back", CL_input::IN_BackDown);
|
||||
Cmd.AddCommand("-back", CL_input::IN_BackUp);
|
||||
Cmd.AddCommand("+lookup", CL_input::IN_LookupDown);
|
||||
Cmd.AddCommand("-lookup", CL_input::IN_LookupUp);
|
||||
Cmd.AddCommand("+lookdown", CL_input::IN_LookdownDown);
|
||||
Cmd.AddCommand("-lookdown", CL_input::IN_LookdownUp);
|
||||
Cmd.AddCommand("+strafe", CL_input::IN_StrafeDown);
|
||||
Cmd.AddCommand("-strafe", CL_input::IN_StrafeUp);
|
||||
Cmd.AddCommand("+moveleft", CL_input::IN_MoveleftDown);
|
||||
Cmd.AddCommand("-moveleft", CL_input::IN_MoveleftUp);
|
||||
Cmd.AddCommand("+moveright", CL_input::IN_MoverightDown);
|
||||
Cmd.AddCommand("-moveright", CL_input::IN_MoverightUp);
|
||||
Cmd.AddCommand("+speed", CL_input::IN_SpeedDown);
|
||||
Cmd.AddCommand("-speed", CL_input::IN_SpeedUp);
|
||||
Cmd.AddCommand("+attack", CL_input::IN_AttackDown);
|
||||
Cmd.AddCommand("-attack", CL_input::IN_AttackUp);
|
||||
Cmd.AddCommand("+use", CL_input::IN_UseDown);
|
||||
Cmd.AddCommand("-use", CL_input::IN_UseUp);
|
||||
Cmd.AddCommand("impulse", CL_input::IN_Impulse);
|
||||
Cmd.AddCommand("+klook", CL_input::IN_KLookDown);
|
||||
Cmd.AddCommand("-klook", CL_input::IN_KLookUp);
|
||||
|
||||
cl_nodelta = Cvar.Get("cl_nodelta", "0", 0);
|
||||
}
|
||||
|
||||
@@ -134,8 +134,7 @@ public class CL_parse {
|
||||
*
|
||||
* Request a download from the server ===============
|
||||
*/
|
||||
public static Runnable Download_f = new Runnable() {
|
||||
public void run() {
|
||||
public static Runnable Download_f = () -> {
|
||||
String filename;
|
||||
|
||||
if (Cmd.Argc() != 2) {
|
||||
@@ -171,7 +170,6 @@ public class CL_parse {
|
||||
+ Globals.cls.downloadname);
|
||||
|
||||
Globals.cls.downloadnumber++;
|
||||
}
|
||||
};
|
||||
|
||||
/*
|
||||
|
||||
@@ -40,8 +40,7 @@ import java.util.Arrays;
|
||||
@Slf4j
|
||||
public final class Console extends Globals {
|
||||
private static final FileSystem fileSystem = BaseQ2FileSystem.getInstance();
|
||||
public static Runnable ToggleConsole_f = new Runnable() {
|
||||
public void run() {
|
||||
public static Runnable ToggleConsole_f = () -> {
|
||||
SCR.EndLoadingPlaque(); // get rid of loading plaque
|
||||
|
||||
if (Globals.cl.attractloop) {
|
||||
@@ -69,17 +68,11 @@ public final class Console extends Globals {
|
||||
&& Globals.server_state != 0)
|
||||
Cvar.Set("paused", "1");
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
public static Runnable Clear_f = new Runnable() {
|
||||
public void run() {
|
||||
Arrays.fill(Globals.con.text, (byte) ' ');
|
||||
}
|
||||
};
|
||||
public static Runnable Clear_f = () -> Arrays.fill(Globals.con.text, (byte) ' ');
|
||||
|
||||
public static Runnable Dump_f = new Runnable() {
|
||||
public void run() {
|
||||
public static Runnable Dump_f = () -> {
|
||||
|
||||
int l, x;
|
||||
int line;
|
||||
@@ -140,7 +133,6 @@ public final class Console extends Globals {
|
||||
|
||||
Lib.fclose(f);
|
||||
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
@@ -245,8 +237,7 @@ public final class Console extends Globals {
|
||||
/*
|
||||
* ================ Con_ToggleChat_f ================
|
||||
*/
|
||||
static Runnable ToggleChat_f = new Runnable() {
|
||||
public void run() {
|
||||
static Runnable ToggleChat_f = () -> {
|
||||
Key.ClearTyping();
|
||||
|
||||
if (cls.key_dest == key_console) {
|
||||
@@ -258,27 +249,22 @@ public final class Console extends Globals {
|
||||
cls.key_dest = key_console;
|
||||
|
||||
ClearNotify();
|
||||
}
|
||||
};
|
||||
|
||||
/*
|
||||
* ================ Con_MessageMode_f ================
|
||||
*/
|
||||
static Runnable MessageMode_f = new Runnable() {
|
||||
public void run() {
|
||||
static Runnable MessageMode_f = () -> {
|
||||
chat_team = false;
|
||||
cls.key_dest = key_message;
|
||||
}
|
||||
};
|
||||
|
||||
/*
|
||||
* ================ Con_MessageMode2_f ================
|
||||
*/
|
||||
static Runnable MessageMode2_f = new Runnable() {
|
||||
public void run() {
|
||||
static Runnable MessageMode2_f = () -> {
|
||||
chat_team = true;
|
||||
cls.key_dest = key_message;
|
||||
}
|
||||
};
|
||||
|
||||
/*
|
||||
|
||||
@@ -715,11 +715,7 @@ public class Key extends Globals {
|
||||
return;
|
||||
}
|
||||
|
||||
public static Runnable Bind_f = new Runnable() {
|
||||
public void run() {
|
||||
Key_Bind_f();
|
||||
}
|
||||
};
|
||||
public static Runnable Bind_f = Key::Key_Bind_f;
|
||||
|
||||
static void Key_Bind_f() {
|
||||
int c = Cmd.Argc();
|
||||
@@ -763,11 +759,7 @@ public class Key extends Globals {
|
||||
Globals.keybindings[keynum] = binding;
|
||||
}
|
||||
|
||||
static Runnable Unbind_f = new Runnable() {
|
||||
public void run() {
|
||||
Key_Unbind_f();
|
||||
}
|
||||
};
|
||||
static Runnable Unbind_f = Key::Key_Unbind_f;
|
||||
|
||||
static void Key_Unbind_f() {
|
||||
|
||||
@@ -785,22 +777,14 @@ public class Key extends Globals {
|
||||
Key.SetBinding(b, null);
|
||||
}
|
||||
|
||||
static Runnable Unbindall_f = new Runnable() {
|
||||
public void run() {
|
||||
Key_Unbindall_f();
|
||||
}
|
||||
};
|
||||
static Runnable Unbindall_f = Key::Key_Unbindall_f;
|
||||
|
||||
static void Key_Unbindall_f() {
|
||||
for (int i = 0; i < 256; i++)
|
||||
Key.SetBinding(i, null);
|
||||
}
|
||||
|
||||
static Runnable Bindlist_f = new Runnable() {
|
||||
public void run() {
|
||||
Key_Bindlist_f();
|
||||
}
|
||||
};
|
||||
static Runnable Bindlist_f = Key::Key_Bindlist_f;
|
||||
|
||||
static void Key_Bindlist_f() {
|
||||
for (int i = 0; i < 256; i++)
|
||||
|
||||
@@ -439,11 +439,7 @@ public final class Menu extends Key {
|
||||
*/
|
||||
static final int MAIN_ITEMS = 5;
|
||||
|
||||
static Runnable Main_Draw = new Runnable() {
|
||||
public void run() {
|
||||
Main_Draw();
|
||||
}
|
||||
};
|
||||
static Runnable Main_Draw = Menu::Main_Draw;
|
||||
|
||||
static void Main_Draw() {
|
||||
int i;
|
||||
@@ -544,18 +540,10 @@ public final class Menu extends Key {
|
||||
return null;
|
||||
}
|
||||
|
||||
static Runnable Menu_Main = new Runnable() {
|
||||
public void run() {
|
||||
Menu_Main_f();
|
||||
}
|
||||
};
|
||||
static Runnable Menu_Main = Menu::Menu_Main_f;
|
||||
|
||||
static void Menu_Main_f() {
|
||||
PushMenu(new Runnable() {
|
||||
public void run() {
|
||||
Main_Draw();
|
||||
}
|
||||
}, new keyfunc_t() {
|
||||
PushMenu(Menu::Main_Draw, new keyfunc_t() {
|
||||
public String execute(int key) {
|
||||
return Main_Key(key);
|
||||
}
|
||||
@@ -646,19 +634,11 @@ public final class Menu extends Key {
|
||||
return Default_MenuKey(s_multiplayer_menu, key);
|
||||
}
|
||||
|
||||
static Runnable Menu_Multiplayer = new Runnable() {
|
||||
public void run() {
|
||||
Menu_Multiplayer_f();
|
||||
}
|
||||
};
|
||||
static Runnable Menu_Multiplayer = Menu::Menu_Multiplayer_f;
|
||||
|
||||
static void Menu_Multiplayer_f() {
|
||||
Multiplayer_MenuInit();
|
||||
PushMenu(new Runnable() {
|
||||
public void run() {
|
||||
Multiplayer_MenuDraw();
|
||||
}
|
||||
}, new keyfunc_t() {
|
||||
PushMenu(Menu::Multiplayer_MenuDraw, new keyfunc_t() {
|
||||
public String execute(int key) {
|
||||
return Multiplayer_MenuKey(key);
|
||||
}
|
||||
@@ -1158,11 +1138,7 @@ public final class Menu extends Key {
|
||||
Menu_Center(s_keys_menu);
|
||||
}
|
||||
|
||||
static Runnable Keys_MenuDraw = new Runnable() {
|
||||
public void run() {
|
||||
Keys_MenuDraw_f();
|
||||
}
|
||||
};
|
||||
static Runnable Keys_MenuDraw = Menu::Keys_MenuDraw_f;
|
||||
|
||||
static void Keys_MenuDraw_f() {
|
||||
Menu_AdjustCursor(s_keys_menu, 1);
|
||||
@@ -1211,19 +1187,11 @@ public final class Menu extends Key {
|
||||
}
|
||||
}
|
||||
|
||||
static Runnable Menu_Keys = new Runnable() {
|
||||
public void run() {
|
||||
Menu_Keys_f();
|
||||
}
|
||||
};
|
||||
static Runnable Menu_Keys = Menu::Menu_Keys_f;
|
||||
|
||||
static void Menu_Keys_f() {
|
||||
Keys_MenuInit();
|
||||
PushMenu(new Runnable() {
|
||||
public void run() {
|
||||
Keys_MenuDraw_f();
|
||||
}
|
||||
}, new keyfunc_t() {
|
||||
PushMenu(Menu::Keys_MenuDraw_f, new keyfunc_t() {
|
||||
public String execute(int key) {
|
||||
return Keys_MenuKey_f(key);
|
||||
}
|
||||
@@ -1654,19 +1622,11 @@ public final class Menu extends Key {
|
||||
return Default_MenuKey(s_options_menu, key);
|
||||
}
|
||||
|
||||
static Runnable Menu_Options = new Runnable() {
|
||||
public void run() {
|
||||
Menu_Options_f();
|
||||
}
|
||||
};
|
||||
static Runnable Menu_Options = Menu::Menu_Options_f;
|
||||
|
||||
static void Menu_Options_f() {
|
||||
Options_MenuInit();
|
||||
PushMenu(new Runnable() {
|
||||
public void run() {
|
||||
Options_MenuDraw();
|
||||
}
|
||||
}, new keyfunc_t() {
|
||||
PushMenu(Menu::Options_MenuDraw, new keyfunc_t() {
|
||||
public String execute(int key) {
|
||||
return Options_MenuKey(key);
|
||||
}
|
||||
@@ -1681,19 +1641,11 @@ public final class Menu extends Key {
|
||||
* =======================================================================
|
||||
*/
|
||||
|
||||
static Runnable Menu_Video = new Runnable() {
|
||||
public void run() {
|
||||
Menu_Video_f();
|
||||
}
|
||||
};
|
||||
static Runnable Menu_Video = Menu::Menu_Video_f;
|
||||
|
||||
static void Menu_Video_f() {
|
||||
VID.MenuInit();
|
||||
PushMenu(new Runnable() {
|
||||
public void run() {
|
||||
VID.MenuDraw();
|
||||
}
|
||||
}, new keyfunc_t() {
|
||||
PushMenu(VID::MenuDraw, new keyfunc_t() {
|
||||
public String execute(int key) {
|
||||
return VID.MenuKey(key);
|
||||
}
|
||||
@@ -1898,11 +1850,7 @@ public final class Menu extends Key {
|
||||
|
||||
}
|
||||
|
||||
static Runnable Menu_Credits = new Runnable() {
|
||||
public void run() {
|
||||
Menu_Credits_f();
|
||||
}
|
||||
};
|
||||
static Runnable Menu_Credits = Menu::Menu_Credits_f;
|
||||
|
||||
static void Menu_Credits_f() {
|
||||
int n;
|
||||
@@ -1934,11 +1882,7 @@ public final class Menu extends Key {
|
||||
}
|
||||
|
||||
credits_start_time = cls.realtime;
|
||||
PushMenu(new Runnable() {
|
||||
public void run() {
|
||||
Credits_MenuDraw();
|
||||
}
|
||||
}, new keyfunc_t() {
|
||||
PushMenu(Menu::Credits_MenuDraw, new keyfunc_t() {
|
||||
public String execute(int key) {
|
||||
return Credits_Key(key);
|
||||
}
|
||||
@@ -2109,19 +2053,11 @@ public final class Menu extends Key {
|
||||
return Default_MenuKey(s_game_menu, key);
|
||||
}
|
||||
|
||||
static Runnable Menu_Game = new Runnable() {
|
||||
public void run() {
|
||||
Menu_Game_f();
|
||||
}
|
||||
};
|
||||
static Runnable Menu_Game = Menu::Menu_Game_f;
|
||||
|
||||
static void Menu_Game_f() {
|
||||
Game_MenuInit();
|
||||
PushMenu(new Runnable() {
|
||||
public void run() {
|
||||
Game_MenuDraw();
|
||||
}
|
||||
}, new keyfunc_t() {
|
||||
PushMenu(Menu::Game_MenuDraw, new keyfunc_t() {
|
||||
public String execute(int key) {
|
||||
return Game_MenuKey(key);
|
||||
}
|
||||
@@ -2239,19 +2175,11 @@ public final class Menu extends Key {
|
||||
return Default_MenuKey(s_loadgame_menu, key);
|
||||
}
|
||||
|
||||
static Runnable Menu_LoadGame = new Runnable() {
|
||||
public void run() {
|
||||
Menu_LoadGame_f();
|
||||
}
|
||||
};
|
||||
static Runnable Menu_LoadGame = Menu::Menu_LoadGame_f;
|
||||
|
||||
static void Menu_LoadGame_f() {
|
||||
LoadGame_MenuInit();
|
||||
PushMenu(new Runnable() {
|
||||
public void run() {
|
||||
LoadGame_MenuDraw();
|
||||
}
|
||||
}, new keyfunc_t() {
|
||||
PushMenu(Menu::LoadGame_MenuDraw, new keyfunc_t() {
|
||||
public String execute(int key) {
|
||||
return LoadGame_MenuKey(key);
|
||||
}
|
||||
@@ -2325,22 +2253,14 @@ public final class Menu extends Key {
|
||||
return Default_MenuKey(s_savegame_menu, key);
|
||||
}
|
||||
|
||||
static Runnable Menu_SaveGame = new Runnable() {
|
||||
public void run() {
|
||||
Menu_SaveGame_f();
|
||||
}
|
||||
};
|
||||
static Runnable Menu_SaveGame = Menu::Menu_SaveGame_f;
|
||||
|
||||
static void Menu_SaveGame_f() {
|
||||
if (0 == Globals.server_state)
|
||||
return; // not playing a game
|
||||
|
||||
SaveGame_MenuInit();
|
||||
PushMenu(new Runnable() {
|
||||
public void run() {
|
||||
SaveGame_MenuDraw();
|
||||
}
|
||||
}, new keyfunc_t() {
|
||||
PushMenu(Menu::SaveGame_MenuDraw, new keyfunc_t() {
|
||||
public String execute(int key) {
|
||||
return SaveGame_MenuKey(key);
|
||||
}
|
||||
@@ -2521,19 +2441,11 @@ public final class Menu extends Key {
|
||||
return Default_MenuKey(s_joinserver_menu, key);
|
||||
}
|
||||
|
||||
static Runnable Menu_JoinServer = new Runnable() {
|
||||
public void run() {
|
||||
Menu_JoinServer_f();
|
||||
}
|
||||
};
|
||||
static Runnable Menu_JoinServer = Menu::Menu_JoinServer_f;
|
||||
|
||||
static void Menu_JoinServer_f() {
|
||||
JoinServer_MenuInit();
|
||||
PushMenu(new Runnable() {
|
||||
public void run() {
|
||||
JoinServer_MenuDraw();
|
||||
}
|
||||
}, new keyfunc_t() {
|
||||
PushMenu(Menu::JoinServer_MenuDraw, new keyfunc_t() {
|
||||
public String execute(int key) {
|
||||
return JoinServer_MenuKey(key);
|
||||
}
|
||||
@@ -2906,17 +2818,9 @@ public final class Menu extends Key {
|
||||
return Default_MenuKey(s_startserver_menu, key);
|
||||
}
|
||||
|
||||
static Runnable Menu_StartServer = new Runnable() {
|
||||
public void run() {
|
||||
Menu_StartServer_f();
|
||||
}
|
||||
};
|
||||
static Runnable Menu_StartServer = Menu::Menu_StartServer_f;
|
||||
|
||||
static Runnable startServer_MenuDraw = new Runnable() {
|
||||
public void run() {
|
||||
StartServer_MenuDraw();
|
||||
}
|
||||
};
|
||||
static Runnable startServer_MenuDraw = Menu::StartServer_MenuDraw;
|
||||
static keyfunc_t startServer_MenuKey = new keyfunc_t() {
|
||||
public String execute(int key) {
|
||||
return StartServer_MenuKey(key);
|
||||
@@ -3380,19 +3284,11 @@ public final class Menu extends Key {
|
||||
return Default_MenuKey(s_dmoptions_menu, key);
|
||||
}
|
||||
|
||||
static Runnable Menu_DMOptions = new Runnable() {
|
||||
public void run() {
|
||||
Menu_DMOptions_f();
|
||||
}
|
||||
};
|
||||
static Runnable Menu_DMOptions = Menu::Menu_DMOptions_f;
|
||||
|
||||
static void Menu_DMOptions_f() {
|
||||
DMOptions_MenuInit();
|
||||
PushMenu(new Runnable() {
|
||||
public void run() {
|
||||
DMOptions_MenuDraw();
|
||||
}
|
||||
}, new keyfunc_t() {
|
||||
PushMenu(Menu::DMOptions_MenuDraw, new keyfunc_t() {
|
||||
public String execute(int key) {
|
||||
return DMOptions_MenuKey(key);
|
||||
}
|
||||
@@ -3545,19 +3441,11 @@ public final class Menu extends Key {
|
||||
return Default_MenuKey(s_downloadoptions_menu, key);
|
||||
}
|
||||
|
||||
static Runnable Menu_DownloadOptions = new Runnable() {
|
||||
public void run() {
|
||||
Menu_DownloadOptions_f();
|
||||
}
|
||||
};
|
||||
static Runnable Menu_DownloadOptions = Menu::Menu_DownloadOptions_f;
|
||||
|
||||
static void Menu_DownloadOptions_f() {
|
||||
DownloadOptions_MenuInit();
|
||||
PushMenu(new Runnable() {
|
||||
public void run() {
|
||||
DownloadOptions_MenuDraw();
|
||||
}
|
||||
}, new keyfunc_t() {
|
||||
PushMenu(Menu::DownloadOptions_MenuDraw, new keyfunc_t() {
|
||||
public String execute(int key) {
|
||||
return DownloadOptions_MenuKey(key);
|
||||
}
|
||||
@@ -3620,30 +3508,18 @@ public final class Menu extends Key {
|
||||
return Default_MenuKey(s_addressbook_menu, key);
|
||||
}
|
||||
|
||||
static Runnable AddressBook_MenuDraw = new Runnable() {
|
||||
public void run() {
|
||||
AddressBook_MenuDraw_f();
|
||||
}
|
||||
};
|
||||
static Runnable AddressBook_MenuDraw = Menu::AddressBook_MenuDraw_f;
|
||||
|
||||
static void AddressBook_MenuDraw_f() {
|
||||
Banner("m_banner_addressbook");
|
||||
Menu_Draw(s_addressbook_menu);
|
||||
}
|
||||
|
||||
static Runnable Menu_AddressBook = new Runnable() {
|
||||
public void run() {
|
||||
Menu_AddressBook_f();
|
||||
}
|
||||
};
|
||||
static Runnable Menu_AddressBook = Menu::Menu_AddressBook_f;
|
||||
|
||||
static void Menu_AddressBook_f() {
|
||||
AddressBook_MenuInit();
|
||||
PushMenu(new Runnable() {
|
||||
public void run() {
|
||||
AddressBook_MenuDraw_f();
|
||||
}
|
||||
}, new keyfunc_t() {
|
||||
PushMenu(Menu::AddressBook_MenuDraw_f, new keyfunc_t() {
|
||||
public String execute(int key) {
|
||||
return AddressBook_MenuKey_f(key);
|
||||
}
|
||||
@@ -4181,11 +4057,7 @@ public final class Menu extends Key {
|
||||
return Default_MenuKey(s_player_config_menu, key);
|
||||
}
|
||||
|
||||
static Runnable Menu_PlayerConfig = new Runnable() {
|
||||
public void run() {
|
||||
Menu_PlayerConfig_f();
|
||||
}
|
||||
};
|
||||
static Runnable Menu_PlayerConfig = Menu::Menu_PlayerConfig_f;
|
||||
|
||||
static void Menu_PlayerConfig_f() {
|
||||
if (!PlayerConfig_MenuInit()) {
|
||||
@@ -4194,11 +4066,7 @@ public final class Menu extends Key {
|
||||
return;
|
||||
}
|
||||
Menu_SetStatusBar(s_multiplayer_menu, null);
|
||||
PushMenu(new Runnable() {
|
||||
public void run() {
|
||||
PlayerConfig_MenuDraw();
|
||||
}
|
||||
}, new keyfunc_t() {
|
||||
PushMenu(Menu::PlayerConfig_MenuDraw, new keyfunc_t() {
|
||||
public String execute(int key) {
|
||||
return PlayerConfig_MenuKey(key);
|
||||
}
|
||||
@@ -4244,18 +4112,10 @@ public final class Menu extends Key {
|
||||
re.DrawPic((viddef.width - w) / 2, (viddef.height - h) / 2, "quit");
|
||||
}
|
||||
|
||||
static Runnable Menu_Quit = new Runnable() {
|
||||
public void run() {
|
||||
Menu_Quit_f();
|
||||
}
|
||||
};
|
||||
static Runnable Menu_Quit = Menu::Menu_Quit_f;
|
||||
|
||||
static void Menu_Quit_f() {
|
||||
PushMenu(new Runnable() {
|
||||
public void run() {
|
||||
Quit_Draw();
|
||||
}
|
||||
}, new keyfunc_t() {
|
||||
PushMenu(Menu::Quit_Draw, new keyfunc_t() {
|
||||
public String execute(int key) {
|
||||
return Quit_Key(key);
|
||||
}
|
||||
|
||||
@@ -432,31 +432,11 @@ public final class SCR extends Globals {
|
||||
//
|
||||
// register our commands
|
||||
//
|
||||
Cmd.AddCommand("timerefresh", new Runnable() {
|
||||
public void run() {
|
||||
TimeRefresh_f();
|
||||
}
|
||||
});
|
||||
Cmd.AddCommand("loading", new Runnable() {
|
||||
public void run() {
|
||||
Loading_f();
|
||||
}
|
||||
});
|
||||
Cmd.AddCommand("sizeup", new Runnable() {
|
||||
public void run() {
|
||||
SizeUp_f();
|
||||
}
|
||||
});
|
||||
Cmd.AddCommand("sizedown", new Runnable() {
|
||||
public void run() {
|
||||
SizeDown_f();
|
||||
}
|
||||
});
|
||||
Cmd.AddCommand("sky", new Runnable() {
|
||||
public void run() {
|
||||
Sky_f();
|
||||
}
|
||||
});
|
||||
Cmd.AddCommand("timerefresh", SCR::TimeRefresh_f);
|
||||
Cmd.AddCommand("loading", SCR::Loading_f);
|
||||
Cmd.AddCommand("sizeup", SCR::SizeUp_f);
|
||||
Cmd.AddCommand("sizedown", SCR::SizeDown_f);
|
||||
Cmd.AddCommand("sky", SCR::Sky_f);
|
||||
|
||||
scr_initialized = true;
|
||||
}
|
||||
@@ -1295,11 +1275,7 @@ public final class SCR extends Globals {
|
||||
crosshair_pic);
|
||||
}
|
||||
|
||||
private static Runnable updateScreenCallback = new Runnable() {
|
||||
public void run() {
|
||||
UpdateScreen2();
|
||||
}
|
||||
};
|
||||
private static Runnable updateScreenCallback = SCR::UpdateScreen2;
|
||||
|
||||
// wird anstelle von der richtigen UpdateScreen benoetigt
|
||||
public static void UpdateScreen() {
|
||||
|
||||
@@ -234,31 +234,25 @@ public final class V extends Globals {
|
||||
}
|
||||
}
|
||||
|
||||
static Runnable Gun_Next_f = new Runnable() {
|
||||
public void run() {
|
||||
static Runnable Gun_Next_f = () -> {
|
||||
gun_frame++;
|
||||
Com.Printf("frame " + gun_frame + "\n");
|
||||
}
|
||||
};
|
||||
|
||||
static Runnable Gun_Prev_f = new Runnable() {
|
||||
public void run() {
|
||||
static Runnable Gun_Prev_f = () -> {
|
||||
gun_frame--;
|
||||
if (gun_frame < 0)
|
||||
gun_frame = 0;
|
||||
Com.Printf("frame " + gun_frame + "\n");
|
||||
}
|
||||
};
|
||||
|
||||
static Runnable Gun_Model_f = new Runnable() {
|
||||
public void run() {
|
||||
static Runnable Gun_Model_f = () -> {
|
||||
if (Cmd.Argc() != 2) {
|
||||
gun_model = null;
|
||||
return;
|
||||
}
|
||||
String name = "models/" + Cmd.Argv(1) + "/tris.md2";
|
||||
gun_model = re.RegisterModel(name);
|
||||
}
|
||||
};
|
||||
|
||||
/*
|
||||
@@ -377,16 +371,12 @@ public final class V extends Globals {
|
||||
/*
|
||||
* ============= V_Viewpos_f =============
|
||||
*/
|
||||
static Runnable Viewpos_f = new Runnable() {
|
||||
public void run() {
|
||||
log.info("({} {} {}) : {}",
|
||||
static Runnable Viewpos_f = () -> log.info("({} {} {}) : {}",
|
||||
(int) cl.refdef.vieworg[0],
|
||||
(int) cl.refdef.vieworg[1],
|
||||
(int) cl.refdef.vieworg[2],
|
||||
(int) cl.refdef.viewangles[YAW]
|
||||
);
|
||||
}
|
||||
};
|
||||
|
||||
public static void Init() {
|
||||
Cmd.AddCommand("gun_next", Gun_Next_f);
|
||||
|
||||
@@ -317,11 +317,7 @@ public class VID extends Globals {
|
||||
vid_modes[11].height = (int)vid_height.value;
|
||||
|
||||
/* Add some console commands that we want to handle */
|
||||
Cmd.AddCommand ("vid_restart", new Runnable() {
|
||||
public void run() {
|
||||
Restart_f();
|
||||
}
|
||||
});
|
||||
Cmd.AddCommand ("vid_restart", VID::Restart_f);
|
||||
|
||||
/* Disable the 3Dfx splash screen */
|
||||
// putenv("FX_GLIDE_NO_SPLASH=0");
|
||||
|
||||
@@ -36,8 +36,7 @@ import java.util.Vector;
|
||||
@Slf4j
|
||||
public final class Cmd {
|
||||
private static final FileSystem fileSystem = BaseQ2FileSystem.getInstance();
|
||||
static Runnable List_f = new Runnable() {
|
||||
public void run() {
|
||||
static Runnable List_f = () -> {
|
||||
cmd_function_t cmd = Cmd.cmd_functions;
|
||||
int i = 0;
|
||||
|
||||
@@ -47,11 +46,9 @@ public final class Cmd {
|
||||
cmd = cmd.next;
|
||||
}
|
||||
log.info("{} commands", i);
|
||||
}
|
||||
};
|
||||
|
||||
static Runnable Exec_f = new Runnable() {
|
||||
public void run() {
|
||||
static Runnable Exec_f = () -> {
|
||||
if (Cmd.Argc() != 2) {
|
||||
log.info("exec <filename> : execute a script file");
|
||||
return;
|
||||
@@ -66,21 +63,17 @@ public final class Cmd {
|
||||
log.info("execing {}", Cmd.Argv(1));
|
||||
|
||||
Cbuf.InsertText(new String(f));
|
||||
}
|
||||
};
|
||||
|
||||
static Runnable Echo_f = new Runnable() {
|
||||
public void run() {
|
||||
static Runnable Echo_f = () -> {
|
||||
StringBuilder sb = new StringBuilder(Cmd.Argc());
|
||||
for (int i = 1; i < Cmd.Argc(); i++) {
|
||||
sb.append(Cmd.Argv(i)).append(' ');
|
||||
}
|
||||
log.info(sb.toString());
|
||||
}
|
||||
};
|
||||
|
||||
static Runnable Alias_f = new Runnable() {
|
||||
public void run() {
|
||||
static Runnable Alias_f = () -> {
|
||||
cmdalias_t a = null;
|
||||
if (Cmd.Argc() == 1) {
|
||||
log.info("Current alias commands:");
|
||||
@@ -122,14 +115,9 @@ public final class Cmd {
|
||||
cmd = cmd + "\n";
|
||||
|
||||
a.value = cmd;
|
||||
}
|
||||
};
|
||||
|
||||
public static Runnable Wait_f = new Runnable() {
|
||||
public void run() {
|
||||
Globals.cmd_wait = true;
|
||||
}
|
||||
};
|
||||
public static Runnable Wait_f = () -> Globals.cmd_wait = true;
|
||||
|
||||
public static cmd_function_t cmd_functions = null;
|
||||
|
||||
@@ -157,9 +145,7 @@ public final class Cmd {
|
||||
|
||||
private static char temporary[] = new char[Defines.MAX_STRING_CHARS];
|
||||
|
||||
public static Comparator<Integer> PlayerSort = new Comparator<Integer>() {
|
||||
public int compare(Integer o1, Integer o2) {
|
||||
|
||||
public static Comparator<Integer> PlayerSort = (o1, o2) -> {
|
||||
int anum1 = GameBase.game.clients[o1].ps.stats[Defines.STAT_FRAGS];
|
||||
int bnum1 = GameBase.game.clients[o2].ps.stats[Defines.STAT_FRAGS];
|
||||
|
||||
@@ -168,7 +154,6 @@ public final class Cmd {
|
||||
if (anum1 > bnum1)
|
||||
return 1;
|
||||
return 0;
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
|
||||
@@ -238,13 +238,7 @@ public final class Com {
|
||||
return new String(com_token, 0, len);
|
||||
}
|
||||
|
||||
public static Runnable Error_f= new Runnable()
|
||||
{
|
||||
public void run() throws IllegalStateException
|
||||
{
|
||||
Error(Defines.ERR_FATAL, Cmd.Argv(1));
|
||||
}
|
||||
};
|
||||
public static Runnable Error_f= () -> Error(Defines.ERR_FATAL, Cmd.Argv(1));
|
||||
|
||||
public static void Error(int code, String fmt) throws IllegalStateException
|
||||
{
|
||||
|
||||
@@ -229,8 +229,7 @@ public class Cvar extends Globals {
|
||||
* Set command, sets variables.
|
||||
*/
|
||||
|
||||
static Runnable Set_f = new Runnable() {
|
||||
public void run() {
|
||||
static Runnable Set_f = () -> {
|
||||
int c;
|
||||
int flags;
|
||||
|
||||
@@ -253,15 +252,12 @@ public class Cvar extends Globals {
|
||||
} else
|
||||
Cvar.Set(Cmd.Argv(1), Cmd.Argv(2));
|
||||
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
/**
|
||||
* List command, lists all available commands.
|
||||
*/
|
||||
static Runnable List_f = new Runnable() {
|
||||
public void run() {
|
||||
static Runnable List_f = () -> {
|
||||
cvar_t var;
|
||||
int i;
|
||||
|
||||
@@ -288,7 +284,6 @@ public class Cvar extends Globals {
|
||||
Com.Printf(" " + var.name + " \"" + var.string + "\"\n");
|
||||
}
|
||||
Com.Printf(i + " cvars\n");
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
|
||||
@@ -995,27 +995,11 @@ public abstract class Main extends Base {
|
||||
vid_gamma = Cvar.Get("vid_gamma", "1.0", Globals.CVAR_ARCHIVE);
|
||||
vid_ref = Cvar.Get("vid_ref", "lwjgl", Globals.CVAR_ARCHIVE);
|
||||
|
||||
Cmd.AddCommand("imagelist", new Runnable() {
|
||||
public void run() {
|
||||
GL_ImageList_f();
|
||||
}
|
||||
});
|
||||
Cmd.AddCommand("imagelist", this::GL_ImageList_f);
|
||||
|
||||
Cmd.AddCommand("screenshot", new Runnable() {
|
||||
public void run() {
|
||||
GL_ScreenShot_f();
|
||||
}
|
||||
});
|
||||
Cmd.AddCommand("modellist", new Runnable() {
|
||||
public void run() {
|
||||
Mod_Modellist_f();
|
||||
}
|
||||
});
|
||||
Cmd.AddCommand("gl_strings", new Runnable() {
|
||||
public void run() {
|
||||
GL_Strings_f();
|
||||
}
|
||||
});
|
||||
Cmd.AddCommand("screenshot", this::GL_ScreenShot_f);
|
||||
Cmd.AddCommand("modellist", this::Mod_Modellist_f);
|
||||
Cmd.AddCommand("gl_strings", this::GL_Strings_f);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -1027,92 +1027,28 @@ public class SV_CCMDS {
|
||||
==================
|
||||
*/
|
||||
public static void SV_InitOperatorCommands() {
|
||||
Cmd.AddCommand("heartbeat", new Runnable() {
|
||||
public void run() {
|
||||
SV_Heartbeat_f();
|
||||
}
|
||||
});
|
||||
Cmd.AddCommand("kick", new Runnable() {
|
||||
public void run() {
|
||||
SV_Kick_f();
|
||||
}
|
||||
});
|
||||
Cmd.AddCommand("status", new Runnable() {
|
||||
public void run() {
|
||||
SV_Status_f();
|
||||
}
|
||||
});
|
||||
Cmd.AddCommand("serverinfo", new Runnable() {
|
||||
public void run() {
|
||||
SV_Serverinfo_f();
|
||||
}
|
||||
});
|
||||
Cmd.AddCommand("dumpuser", new Runnable() {
|
||||
public void run() {
|
||||
SV_DumpUser_f();
|
||||
}
|
||||
});
|
||||
Cmd.AddCommand("heartbeat", SV_CCMDS::SV_Heartbeat_f);
|
||||
Cmd.AddCommand("kick", SV_CCMDS::SV_Kick_f);
|
||||
Cmd.AddCommand("status", SV_CCMDS::SV_Status_f);
|
||||
Cmd.AddCommand("serverinfo", SV_CCMDS::SV_Serverinfo_f);
|
||||
Cmd.AddCommand("dumpuser", SV_CCMDS::SV_DumpUser_f);
|
||||
|
||||
Cmd.AddCommand("map", new Runnable() {
|
||||
public void run() {
|
||||
SV_Map_f();
|
||||
}
|
||||
});
|
||||
Cmd.AddCommand("demomap", new Runnable() {
|
||||
public void run() {
|
||||
SV_DemoMap_f();
|
||||
}
|
||||
});
|
||||
Cmd.AddCommand("gamemap", new Runnable() {
|
||||
public void run() {
|
||||
SV_GameMap_f();
|
||||
}
|
||||
});
|
||||
Cmd.AddCommand("setmaster", new Runnable() {
|
||||
public void run() {
|
||||
SV_SetMaster_f();
|
||||
}
|
||||
});
|
||||
Cmd.AddCommand("map", SV_CCMDS::SV_Map_f);
|
||||
Cmd.AddCommand("demomap", SV_CCMDS::SV_DemoMap_f);
|
||||
Cmd.AddCommand("gamemap", SV_CCMDS::SV_GameMap_f);
|
||||
Cmd.AddCommand("setmaster", SV_CCMDS::SV_SetMaster_f);
|
||||
|
||||
if (Globals.dedicated.value != 0)
|
||||
Cmd.AddCommand("say", new Runnable() {
|
||||
public void run() {
|
||||
SV_ConSay_f();
|
||||
}
|
||||
});
|
||||
Cmd.AddCommand("say", SV_CCMDS::SV_ConSay_f);
|
||||
|
||||
Cmd.AddCommand("serverrecord", new Runnable() {
|
||||
public void run() {
|
||||
SV_ServerRecord_f();
|
||||
}
|
||||
});
|
||||
Cmd.AddCommand("serverstop", new Runnable() {
|
||||
public void run() {
|
||||
SV_ServerStop_f();
|
||||
}
|
||||
});
|
||||
Cmd.AddCommand("serverrecord", SV_CCMDS::SV_ServerRecord_f);
|
||||
Cmd.AddCommand("serverstop", SV_CCMDS::SV_ServerStop_f);
|
||||
|
||||
Cmd.AddCommand("save", new Runnable() {
|
||||
public void run() {
|
||||
SV_Savegame_f();
|
||||
}
|
||||
});
|
||||
Cmd.AddCommand("load", new Runnable() {
|
||||
public void run() {
|
||||
SV_Loadgame_f();
|
||||
}
|
||||
});
|
||||
Cmd.AddCommand("save", SV_CCMDS::SV_Savegame_f);
|
||||
Cmd.AddCommand("load", SV_CCMDS::SV_Loadgame_f);
|
||||
|
||||
Cmd.AddCommand("killserver", new Runnable() {
|
||||
public void run() {
|
||||
SV_KillServer_f();
|
||||
}
|
||||
});
|
||||
Cmd.AddCommand("killserver", SV_CCMDS::SV_KillServer_f);
|
||||
|
||||
Cmd.AddCommand("sv", new Runnable() {
|
||||
public void run() {
|
||||
SV_ServerCommand_f();
|
||||
}
|
||||
});
|
||||
Cmd.AddCommand("sv", SV_CCMDS::SV_ServerCommand_f);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -48,54 +48,22 @@ public class SV_USER {
|
||||
Runnable r;
|
||||
}
|
||||
|
||||
static ucmd_t u1 = new ucmd_t("new", new Runnable() {
|
||||
public void run() {
|
||||
SV_USER.SV_New_f();
|
||||
}
|
||||
});
|
||||
static ucmd_t u1 = new ucmd_t("new", SV_USER::SV_New_f);
|
||||
|
||||
static ucmd_t ucmds[] = {
|
||||
// auto issued
|
||||
new ucmd_t("new", new Runnable() {
|
||||
public void run() {
|
||||
SV_USER.SV_New_f();
|
||||
}
|
||||
}), new ucmd_t("configstrings", new Runnable() {
|
||||
public void run() {
|
||||
SV_USER.SV_Configstrings_f();
|
||||
}
|
||||
}), new ucmd_t("baselines", new Runnable() {
|
||||
public void run() {
|
||||
SV_USER.SV_Baselines_f();
|
||||
}
|
||||
}), new ucmd_t("begin", new Runnable() {
|
||||
public void run() {
|
||||
SV_USER.SV_Begin_f();
|
||||
}
|
||||
}), new ucmd_t("nextserver", new Runnable() {
|
||||
public void run() {
|
||||
SV_USER.SV_Nextserver_f();
|
||||
}
|
||||
}), new ucmd_t("disconnect", new Runnable() {
|
||||
public void run() {
|
||||
SV_USER.SV_Disconnect_f();
|
||||
}
|
||||
}),
|
||||
new ucmd_t("new", SV_USER::SV_New_f),
|
||||
new ucmd_t("configstrings", SV_USER::SV_Configstrings_f),
|
||||
new ucmd_t("baselines", SV_USER::SV_Baselines_f),
|
||||
new ucmd_t("begin", SV_USER::SV_Begin_f),
|
||||
new ucmd_t("nextserver", SV_USER::SV_Nextserver_f),
|
||||
new ucmd_t("disconnect", SV_USER::SV_Disconnect_f),
|
||||
|
||||
// issued by hand at client consoles
|
||||
new ucmd_t("info", new Runnable() {
|
||||
public void run() {
|
||||
SV_USER.SV_ShowServerinfo_f();
|
||||
}
|
||||
}), new ucmd_t("download", new Runnable() {
|
||||
public void run() {
|
||||
SV_USER.SV_BeginDownload_f();
|
||||
}
|
||||
}), new ucmd_t("nextdl", new Runnable() {
|
||||
public void run() {
|
||||
SV_USER.SV_NextDownload_f();
|
||||
}
|
||||
}) };
|
||||
new ucmd_t("info", SV_USER::SV_ShowServerinfo_f),
|
||||
new ucmd_t("download", SV_USER::SV_BeginDownload_f),
|
||||
new ucmd_t("nextdl", SV_USER::SV_NextDownload_f)
|
||||
};
|
||||
|
||||
public static final int MAX_STRINGCMDS = 8;
|
||||
|
||||
|
||||
@@ -97,26 +97,10 @@ public final class LWJGLSoundImpl implements Sound {
|
||||
int count = Channel.init(buffers);
|
||||
log.info("... using {} channels", count);
|
||||
AL10.alDistanceModel(AL10.AL_INVERSE_DISTANCE_CLAMPED);
|
||||
Cmd.AddCommand("play", new Runnable() {
|
||||
public void run() {
|
||||
Play();
|
||||
}
|
||||
});
|
||||
Cmd.AddCommand("stopsound", new Runnable() {
|
||||
public void run() {
|
||||
StopAllSounds();
|
||||
}
|
||||
});
|
||||
Cmd.AddCommand("soundlist", new Runnable() {
|
||||
public void run() {
|
||||
SoundList();
|
||||
}
|
||||
});
|
||||
Cmd.AddCommand("soundinfo", new Runnable() {
|
||||
public void run() {
|
||||
SoundInfo_f();
|
||||
}
|
||||
});
|
||||
Cmd.AddCommand("play", this::Play);
|
||||
Cmd.AddCommand("stopsound", this::StopAllSounds);
|
||||
Cmd.AddCommand("soundlist", this::SoundList);
|
||||
Cmd.AddCommand("soundinfo", this::SoundInfo_f);
|
||||
|
||||
num_sfx = 0;
|
||||
|
||||
|
||||
@@ -105,28 +105,12 @@ public final class IN extends Globals {
|
||||
Globals.m_forward = Cvar.Get("m_forward", "1", 0);
|
||||
Globals.m_side = Cvar.Get("m_side", "0.8", 0);
|
||||
|
||||
Cmd.AddCommand("+mlook", new Runnable() {
|
||||
public void run() {
|
||||
MLookDown();
|
||||
}
|
||||
});
|
||||
Cmd.AddCommand("-mlook", new Runnable() {
|
||||
public void run() {
|
||||
MLookUp();
|
||||
}
|
||||
});
|
||||
Cmd.AddCommand("+mlook", IN::MLookDown);
|
||||
Cmd.AddCommand("-mlook", IN::MLookUp);
|
||||
|
||||
Cmd.AddCommand("force_centerview", new Runnable() {
|
||||
public void run() {
|
||||
Force_CenterView_f();
|
||||
}
|
||||
});
|
||||
Cmd.AddCommand("force_centerview", IN::Force_CenterView_f);
|
||||
|
||||
Cmd.AddCommand("togglemouse", new Runnable() {
|
||||
public void run() {
|
||||
toggleMouse();
|
||||
}
|
||||
});
|
||||
Cmd.AddCommand("togglemouse", IN::toggleMouse);
|
||||
|
||||
IN.mouse_avail = true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user