Outerra forum

Please login or register.

Login with username, password and session length
Advanced search  

News:

Outerra Tech Demo download. Help with graphics driver issues

Author Topic: flight path recorder ?  (Read 4441 times)

fly77

  • Outerra Master Modder
  • Hero Member
  • *****
  • Posts: 1755
flight path recorder ?
« on: February 09, 2019, 06:36:38 am »

Today by mistake I pressed CTRL +P  while inside the Mig29 and up came a window "flight path recorder". What exactly can we do with it ?
« Last Edit: March 04, 2019, 03:34:03 am by fly77 »
Logged

Levi

  • Hero Member
  • *****
  • Posts: 585
    • Outerra Mods Site!
Re: flight path recorder
« Reply #1 on: February 09, 2019, 07:29:07 am »

Today by mistake I pressed CTRL +P  while inside the Mig29 and up came a window "flight path recorder". What exactly can we do with it ?
I remember using it to record the path of the camera flying around in a couple of shots for the release video on the Heinkel He-51.

Look closely at the first and last shots:
Logged

fly77

  • Outerra Master Modder
  • Hero Member
  • *****
  • Posts: 1755
Re: flight path recorder
« Reply #2 on: February 09, 2019, 09:36:12 am »

Ok seems to record camera ecef positions. When I press "record" indeed a list of ecef's are displayed but I loose control of the plane. Also outerra crashed when i tried to "save" the flightpath. ?? seems not operational  :(.  That's a pity as a list of recorded ecefs could probably be used to set up a pattern of AI airtraffic around an airport. Is there any way to save to a file information - such as positions - retrieved by the javascript of a vehicle or plane or boat ?
« Last Edit: February 09, 2019, 10:17:01 am by fly77 »
Logged

fly77

  • Outerra Master Modder
  • Hero Member
  • *****
  • Posts: 1755
Re: flight path recorder
« Reply #3 on: March 04, 2019, 03:33:48 am »

Somebody has any idea to which file these commands write to ? Didn't see any output when I place them in a vehicle javascript and try to write something into the (which?)  "log". Do i need to enable something specific in eng.cfg ?
When I set  loglevel = "debug" I in eng.cfg I get additional info in eng.log for instance on mouse presses , soundfile plays etc..but not any text that i tried to write with this.log_dbg or this.log_inf.

Code: [Select]
this.log_dbg("text" + data  );
this.log_inf("text"+ data   );

below are my eng.cfg settings

Code: [Select]
num_jobproc_threads = 1,
renderer_config = {
screen_width = 2560,
screen_height = 1080,
fullscreen = true,
swap_interval = 1,
msaa = 1,
debug_opengl = false,
debug_async = true,
refresh_rate = 60,
disable_composition = false
},
videos_dir = "I:/outerra-videos\videos",
screenshots_dir = "C:/Users/novelchip/Outerra\screenshots",
terrain_shadows = true,
tree_shadows = true,
wnd_x_pos = 0,
wnd_y_pos = 0,
wnd_hide_titlebar = true,
mouse_exclusive = false,
sim_mode = false,
fov = 82.5,
fov_v_separate = 0.0,
proj = 0,
enable_hid_logging = false,
enable_jsbsim_logging = false,
mouse_sensitivity = 1.0,
joy_sensitivity = 1.0,
mouse_invert = false,
flightmode_invert = true,
pause_in_sandbox = true,
debug_keys = true,
cfg-version = 9891,
bloom_power = 0.03,
bloom_threshold = 1.0,
min_obj_size = 2.8,
sound = {
global = 1.0,
ambient = 1.0,
vehicle = 0.11,
effect = 0.31,
music = 0.18,
hrtf = true
},
use_hmd = true,
video = 1,
ssao_quality = 2,
shadow_quality = 2,
stereo = {
eye_separation = 0.064,
convergence = 0.1,
reduce_grass = false,
force_hrtf = true,
stereo_type = 0,
swap_sides = false
},
controller = {
pan_min_angle = {
x = -1.570796,
y = -0.785398
},
pan_max_angle = {
x = 1.570796,
y = 0.785398
},
panning_speed = {
x = 0.01,
y = 0.01
},
view_min_angle = {
x = -1.570796,
y = -0.785398
},
view_max_angle = {
x = 1.570796,
y = 0.785398
},
view_delay = 0.1,
fm_roll_coef = 0.4,
fm_turn_coef = 1.25,
fm_turn_delay = 4.0,
fm_filter_delay = 0.5,
um_filter_delay = 0.02,
hmd_turn_coef = 1.0,
hmd_pitch_coef = 0.2
},
perf_report = {
enabled = false,
sync = false,
ui = 5.0,
scene = 5.0,
world = 5.0,
ext = 5.0,
rungc = 0
},
pkg_limits = {
max_meshes = 2
},
disable_log_popup = false,
img_cache_slice_size = 2048,
img_cache_num_slices = 2,
loglevel = "info"
« Last Edit: March 04, 2019, 04:06:49 am by fly77 »
Logged

cameni

  • Brano Kemen
  • Outerra Administrator
  • Hero Member
  • *****
  • Posts: 6721
  • No sense of urgency.
    • outerra.com
Re: flight path recorder ?
« Reply #4 on: March 06, 2019, 06:21:55 am »

Those methods are old and probably directed to /dev/null
You could try $log("info: blah blah")
Logged

fly77

  • Outerra Master Modder
  • Hero Member
  • *****
  • Posts: 1755
Re: flight path recorder ?
« Reply #5 on: March 06, 2019, 08:29:35 am »

Thanks..will try.
Logged

fly77

  • Outerra Master Modder
  • Hero Member
  • *****
  • Posts: 1755
Re: flight path recorder ?
« Reply #6 on: March 06, 2019, 12:23:43 pm »

Works !  writes into eng.log:)  Will try to set up some kind of local AI traffic
Logged