public static bool Read() { if (JsonFile.Read <ServerNetInfo>("./pressure.json", ref net_info)) { return(true); } else { return(false); } }
public static bool Load() { if (JsonFile.Read <ServerNetInfo>("./bin_modify.json", ref info)) { return(true); } else { return(false); } }
public static bool Read() { if (JsonFile.Read <ServerDBInfo>("./create_robot.json", ref db_info)) { return(true); } else { return(false); } }
public static bool Load() { bool ret_net = JsonFile.Read <ServerNetInfo>("./gate.json", ref net_info); bool ret_db = JsonFile.Read <ServerDBInfo>("./db.json", ref db_info); if (!server.CheckSidValid(net_info.server_uid)) { Log.Error("错误的服务器id:" + net_info.server_uid); return(false); } return(ret_net && ret_db); }
public static bool Load() { if (JsonFile.Read <ServerNetInfo>("./fight.json", ref net_info)) { if (!server.CheckSidValid(net_info.server_uid)) { Log.Error("错误的服务器id:" + net_info.server_uid); return(false); } return(true); } else { return(false); } }
public static bool Load() { bool ret_net = JsonFile.Read <ServerConfigInfo>("./http_server.json", ref info); return(ret_net); }