DGIV Autopilot & Concept Questions

Ghostly

AstroSandwich
Joined
Jan 29, 2013
Messages
26
Reaction score
0
Points
0
There are a few things I have yet to understand about the DGIV,
1. Can you add in new autopilot programs
2. Has Dan ever experimented with a VC*BEFORE YOU START GOING INSANE*
---If he has, is there at least a concept picture of what it was planned to look like?
3. Why does a white block appear at the top of the 2d cockpit between the indicator panel and flight programs?

:idk:
 

Eccentrus

Geekernaut
Joined
Jun 26, 2009
Messages
859
Reaction score
27
Points
28
Location
Jakarta or Bandung
1. yes or so I think there's some example of customized autopilot you can find, AFAIK it all boils down into some .cfg

2. No, not going to happen

3. screenshot?
 

PhantomCruiser

Wanderer
Moderator
Tutorial Publisher
Joined
Jan 23, 2009
Messages
5,607
Reaction score
171
Points
153
Location
Cleveland
A white block? Need to see it, but I would guess something with graphics drivers/setting.
 

turtle91

Active member
Joined
Nov 1, 2010
Messages
319
Reaction score
7
Points
33
Regarding point 1:
This is explained within the DGIV documenation (ORBITER-INSTALL-DIR\Doc\DeltaGliderIV\res\DGIV_Documentation_en.pdf, page 19)

"The scripts of ascent program are in « Sound/DeltaGliderIV/Prog » directory, you can edit existing or add more,
simply copy one and rename it for example PRO908SPEC.txt and edit it with a text editor. Set debug parameters
to 1 to help you tune your new autopilot and launch it as usual (Ie: PRO908SPECNN)."
 

Ghostly

AstroSandwich
Joined
Jan 29, 2013
Messages
26
Reaction score
0
Points
0
Oh and I already know that a Virtual Cockpit in the DGIV isn't going to happen, I was just curious as to what it was to look like if he did. I believe it won't happen due to graphic and lag issues...


Here is my problem
Screenshot.png
 

turtle91

Active member
Joined
Nov 1, 2010
Messages
319
Reaction score
7
Points
33
Never seen this before.
Just an idea:
Within the DGIV configuration-program, there is an option called:
"Enable ground camera effect (head up/down).
Maybe unticking this option might help.

I see, that you are rolling (very slow, but moving).
Some people have problems with this option (in my case, the HUD is not visible while moving on the ground).
Btw...is the nose-cone closed ? Depends on graphics card and drivers, there could be an issue with "local-light sources enabled" (within orbiter visual-effects tab).
As long as the nose-cone is open, the new DGIV has front-lights.

Does it happen within the glass-cockit, too (F8) ?
 

Ghostly

AstroSandwich
Joined
Jan 29, 2013
Messages
26
Reaction score
0
Points
0
It only occurs in fullscreen mode, in window mode, it isn't appearing... so I can just deal with that. Window mode is much better :chainsaw:
 

orb

New member
News Reporter
Joined
Oct 30, 2009
Messages
14,020
Reaction score
4
Points
0
It only occurs in fullscreen mode, in window mode, it isn't appearing... so I can just deal with that.
If you want. Did you check if 32bpp color depth fixes it for you in the full screen mode before switching to windowed?

Switching to windowed mode isn't the solution, but only a workaround, because you use the color depth of the desktop then, which is most likely 32bpp.

If you still want to really fix it, here's a couple of links with similar issues:If setting 32bpp color depth in the full screen mode doesn't fix it for you, then maybe "Try stencil buffer" option.
 

McGalcri

New member
Joined
Feb 6, 2011
Messages
18
Reaction score
0
Points
1
Regarding point 1:
This is explained within the DGIV documenation (ORBITER-INSTALL-DIR\Doc\DeltaGliderIV\res\DGIV_Documentation_en.pdf, page 19)

"The scripts of ascent program are in « Sound/DeltaGliderIV/Prog » directory, you can edit existing or add more,
simply copy one and rename it for example PRO908SPEC.txt and edit it with a text editor. Set debug parameters
to 1 to help you tune your new autopilot and launch it as usual (Ie: PRO908SPECNN)."

Im trying to create my own autopilots, but... where is that "Debug parameters to 1"?? I only see the Meshdebug in Modules. :facepalm:

Also... i have no idea what mean this ALT values... meters? Kilometers?

Code:
// -----------------------------------------------
// ASCENT PROGRAM PRO904 FROM EARTH
// HOVER TAKE-OFF
// -----------------------------------------------
PROGNAME: EARTH ~230km Hover start
TYPE:     ASCENT
START:    HOVERGROUND
ALT: 0      ENG:   1.10 ; Will use turbo pump
ALT: 10     PITCH: 65
ALT: 15     SNMSG: #RaiseLandingGear
ALT: 60     PITCH: 65
ALT: 320    PITCH: 65
ALT: 1500   PITCH: 65
ALT: 40000  PITCH: 65
ALT: 45000  PITCH: 52
ALT: 50000  PITCH: 45
ALT: 66000  PITCH: 40
ALT: 80000  PITCH: 40
ALT: 100000 PITCH: 40
ALT: 130000 PITCH: 35
ALT: 150000 PITCH: 30
ALT: 160000 PITCH: 25
ALT: 175000 PITCH: 20
ALT: 190000 PITCH: 15
ALT: 200000 PITCH: 12
ALT: 205000 PITCH: 10
ALT: 210000 PITCH: 09
ALT: 212000 PITCH: 08
ALT: 212500 PITCH: 07
ALT: 213000 PITCH: 06
ALT: 400000 PITCH: 0
ENDPROG:
 

Ripley

Tutorial translator
Donator
Joined
Sep 12, 2010
Messages
3,135
Reaction score
409
Points
123
Location
Rome
Website
www.tuttovola.org
You must add a line that reads like this:

Code:
DISPLAYDEBUG: 0		;Display some debug information to help tune an autopilot. (0=off 1=on)

Have a look at the other 3 autopilot files.
You picked up the only file without that line.

The values are in meters.
For example, raise gear at 15 mt altitude.
 
Last edited:

McGalcri

New member
Joined
Feb 6, 2011
Messages
18
Reaction score
0
Points
1
You must add a line that reads like this:

Code:
DISPLAYDEBUG: 0		;Display some debug information to help tune an autopilot. (0=off 1=on)

Have a look at the other 3 autopilot files.
You picked up the only file without that line.

The values are in meters.
For example, raise gear at 15 mt altitude.

YAY Thanks a lot! :lol:
 
Top