mirror of
https://github.com/nasa/trick.git
synced 2025-01-26 14:19:23 +00:00
496de8c7a9
* Disambiguate python use #1250 Changed all calls to /usr/bin/python to /usr/bin/env python3. Removed execute permissions on a lot of files that are not executable. closes #1250
27 lines
990 B
Python
27 lines
990 B
Python
execfile("Modified_data/realtime.py")
|
|
|
|
dyn.lander.pos[0] = 0
|
|
dyn.lander.pos[1] = 1.8
|
|
dyn.lander.vel[0] = 0.0
|
|
dyn.lander.vel[1] = 0.0
|
|
dyn.lander.angleDot = 0.0
|
|
dyn.lander.angle = 0.0
|
|
|
|
trick.TMM_set_debug_level(1)
|
|
#==========================================
|
|
# Start the Satellite Graphics Client
|
|
#==========================================
|
|
varServerPort = trick.var_server_get_port();
|
|
LanderDisplay_path = "models/graphics/dist/LanderDisplay.jar"
|
|
|
|
if (os.path.isfile(LanderDisplay_path)) :
|
|
LanderDisplay_cmd = "java -jar " \
|
|
+ LanderDisplay_path \
|
|
+ " " + str(varServerPort) + " &" ;
|
|
print(LanderDisplay_cmd)
|
|
os.system( LanderDisplay_cmd);
|
|
else :
|
|
print('==================================================================================')
|
|
print('LanderDisplay needs to be built. Please \"cd\" into ../models/graphics and type \"make\".')
|
|
print('==================================================================================')
|