Datasets:
Formats:
imagefolder
Size:
< 1K
File size: 8,537 Bytes
c6c8030 7019bd1 c6c8030 7019bd1 c6c8030 7019bd1 c6c8030 7019bd1 c6c8030 7019bd1 c6c8030 7019bd1 c6c8030 7019bd1 c6c8030 7019bd1 c6c8030 7019bd1 c6c8030 7019bd1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 |
extends Node
# --fixed-fps 2000 --disable-render-loop
@export var action_repeat := 8
@export var speed_up = 1
@export var onnx_model_path := ""
@onready var start_time = Time.get_ticks_msec()
const MAJOR_VERSION := "0"
const MINOR_VERSION := "3"
const DEFAULT_PORT := "11008"
const DEFAULT_SEED := "1"
const DEFAULT_ACTION_REPEAT := "8"
var stream : StreamPeerTCP = null
var connected = false
var message_center
var should_connect = true
var agents
var need_to_send_obs = false
var args = null
var initialized = false
var just_reset = false
var onnx_model = null
var n_action_steps = 0
var _action_space : Dictionary
var _obs_space : Dictionary
# Called when the node enters the scene tree for the first time.
func _ready():
await get_tree().root.ready
get_tree().set_pause(true)
_initialize()
await get_tree().create_timer(1.0).timeout
get_tree().set_pause(false)
func _initialize():
_get_agents()
_obs_space = agents[0].get_obs_space()
_action_space = agents[0].get_action_space()
args = _get_args()
Engine.physics_ticks_per_second = _get_speedup() * 60 # Replace with function body.
Engine.time_scale = _get_speedup() * 1.0
prints("physics ticks", Engine.physics_ticks_per_second, Engine.time_scale, _get_speedup(), speed_up)
connected = connect_to_server()
if connected:
_set_heuristic("model")
_handshake()
_send_env_info()
elif onnx_model_path != "":
onnx_model = ONNXModel.new(onnx_model_path, 1)
_set_heuristic("model")
else:
_set_heuristic("human")
_set_seed()
_set_action_repeat()
initialized = true
func _physics_process(delta):
# two modes, human control, agent control
# pause tree, send obs, get actions, set actions, unpause tree
if n_action_steps % action_repeat != 0:
n_action_steps += 1
return
n_action_steps += 1
if connected:
get_tree().set_pause(true)
if just_reset:
just_reset = false
var obs = _get_obs_from_agents()
var reply = {
"type": "reset",
"obs": obs
}
_send_dict_as_json_message(reply)
# this should go straight to getting the action and setting it checked the agent, no need to perform one phyics tick
get_tree().set_pause(false)
return
if need_to_send_obs:
need_to_send_obs = false
var reward = _get_reward_from_agents()
var done = _get_done_from_agents()
#_reset_agents_if_done() # this ensures the new observation is from the next env instance : NEEDS REFACTOR
var obs = _get_obs_from_agents()
var reply = {
"type": "step",
"obs": obs,
"reward": reward,
"done": done
}
_send_dict_as_json_message(reply)
var handled = handle_message()
elif onnx_model != null:
var obs : Array = _get_obs_from_agents()
var actions = []
for o in obs:
var action = onnx_model.run_inference(o["obs"], 1.0)
action["output"] = clamp_array(action["output"], -1.0, 1.0)
var action_dict = _extract_action_dict(action["output"])
actions.append(action_dict)
_set_agent_actions(actions)
need_to_send_obs = true
get_tree().set_pause(false)
_reset_agents_if_done()
else:
_reset_agents_if_done()
func _extract_action_dict(action_array: Array):
var index = 0
var result = {}
for key in _action_space.keys():
var size = _action_space[key]["size"]
if _action_space[key]["action_type"] == "discrete":
result[key] = round(action_array[index])
else:
result[key] = action_array.slice(index,index+size)
index += size
return result
func _get_agents():
agents = get_tree().get_nodes_in_group("AGENT")
func _set_heuristic(heuristic):
for agent in agents:
agent.set_heuristic(heuristic)
func _handshake():
print("performing handshake")
var json_dict = _get_dict_json_message()
assert(json_dict["type"] == "handshake")
var major_version = json_dict["major_version"]
var minor_version = json_dict["minor_version"]
if major_version != MAJOR_VERSION:
print("WARNING: major verison mismatch ", major_version, " ", MAJOR_VERSION)
if minor_version != MINOR_VERSION:
print("WARNING: minor verison mismatch ", minor_version, " ", MINOR_VERSION)
print("handshake complete")
func _get_dict_json_message():
# returns a dictionary from of the most recent message
# this is not waiting
while stream.get_available_bytes() == 0:
stream.poll()
if stream.get_status() != 2:
print("server disconnected status, closing")
get_tree().quit()
return null
OS.delay_usec(10)
var message = stream.get_string()
var json_data = JSON.parse_string(message)
return json_data
func _send_dict_as_json_message(dict):
stream.put_string(JSON.stringify(dict))
func _send_env_info():
var json_dict = _get_dict_json_message()
assert(json_dict["type"] == "env_info")
var message = {
"type" : "env_info",
"observation_space": _obs_space,
"action_space":_action_space,
"n_agents": len(agents)
}
_send_dict_as_json_message(message)
func connect_to_server():
print("Waiting for one second to allow server to start")
OS.delay_msec(1000)
print("trying to connect to server")
stream = StreamPeerTCP.new()
# "localhost" was not working on windows VM, had to use the IP
var ip = "127.0.0.1"
var port = _get_port()
var connect = stream.connect_to_host(ip, port)
stream.set_no_delay(true) # TODO check if this improves performance or not
stream.poll()
# Fetch the status until it is either connected (2) or failed to connect (3)
while stream.get_status() < 2:
stream.poll()
return stream.get_status() == 2
func _get_args():
print("getting command line arguments")
var arguments = {}
for argument in OS.get_cmdline_args():
print(argument)
if argument.find("=") > -1:
var key_value = argument.split("=")
arguments[key_value[0].lstrip("--")] = key_value[1]
else:
# Options without an argument will be present in the dictionary,
# with the value set to an empty string.
arguments[argument.lstrip("--")] = ""
return arguments
func _get_speedup():
print(args)
return args.get("speedup", str(speed_up)).to_int()
func _get_port():
return args.get("port", DEFAULT_PORT).to_int()
func _set_seed():
var _seed = args.get("env_seed", DEFAULT_SEED).to_int()
seed(_seed)
func _set_action_repeat():
action_repeat = args.get("action_repeat", DEFAULT_ACTION_REPEAT).to_int()
func disconnect_from_server():
stream.disconnect_from_host()
func handle_message() -> bool:
# get json message: reset, step, close
var message = _get_dict_json_message()
if message["type"] == "close":
print("received close message, closing game")
get_tree().quit()
get_tree().set_pause(false)
return true
if message["type"] == "reset":
print("resetting all agents")
_reset_all_agents()
just_reset = true
get_tree().set_pause(false)
#print("resetting forcing draw")
# RenderingServer.force_draw()
# var obs = _get_obs_from_agents()
# print("obs ", obs)
# var reply = {
# "type": "reset",
# "obs": obs
# }
# _send_dict_as_json_message(reply)
return true
if message["type"] == "call":
var method = message["method"]
var returns = _call_method_on_agents(method)
var reply = {
"type": "call",
"returns": returns
}
print("calling method from Python")
_send_dict_as_json_message(reply)
return handle_message()
if message["type"] == "action":
var action = message["action"]
_set_agent_actions(action)
need_to_send_obs = true
get_tree().set_pause(false)
return true
print("message was not handled")
return false
func _call_method_on_agents(method):
var returns = []
for agent in agents:
returns.append(agent.call(method))
return returns
func _reset_agents_if_done():
for agent in agents:
if agent.get_done():
agent.set_done_false()
func _reset_all_agents():
for agent in agents:
agent.needs_reset = true
#agent.reset()
func _get_obs_from_agents():
var obs = []
for agent in agents:
obs.append(agent.get_obs())
return obs
func _get_reward_from_agents():
var rewards = []
for agent in agents:
rewards.append(agent.get_reward())
agent.zero_reward()
return rewards
func _get_done_from_agents():
var dones = []
for agent in agents:
var done = agent.get_done()
if done: agent.set_done_false()
dones.append(done)
return dones
func _set_agent_actions(actions):
for i in range(len(actions)):
agents[i].set_action(actions[i])
func clamp_array(arr : Array, min:float, max:float):
var output : Array = []
for a in arr:
output.append(clamp(a, min, max))
return output
|