Project Orbiter MMU (oMMU) development thread

Woo482

Moderator
Moderator
Addon Developer
GFX Staff
Joined
Feb 13, 2008
Messages
3,048
Reaction score
20
Points
78
Location
Earth?
So will be where you can place a virtual airlock and tie the animation to the opening/closing of the airlock.
Well, I won't handle tying the logical opening and closing of airlocks against animations in oMMU itself - IMHO it's best for the developer themselves to handle that though the airlock management functionality of the API.

Multiple airlocks would be nice.

You'll be able to have as many airlocks as you need to implement whatever behavior your vessel requires, up to around 1 million or so (I've not worked out the exact amount beyond "a lot" :lol:). Currently there are two types of airlock defined in the oMMU Core, a generic airlock that can be placed anywhere but doesn't support vessel -> vessel transfers and one that is tied to a docking port and supports vessel -> vessel transfer.

Pseudocodeish examples of the two airlock types initialization below:
Creating an airlock from a docking port:
Code:
	ommuCrew->CreateAirlockFromPort(0,true);

Creating an arbitrary airlock:
Code:
       	Airlock myAirlock;
	myAirlock.miscID = -1;
	myAirlock.isOpen = false;
	myAirlock.position = _V(0, 0, 0);
	myAirlock.radius = 5.0f;
	myAirlock.type = AirlockType::sphere;
	ommuCrew->AddAirlock(&myAirlock);
I expect the 1st option to see the most use, but I saw no harm in allowing flexibility through defining your own airlocks.
 
Last edited:

gattispilot

Addon Developer
Addon Developer
Joined
Oct 17, 2007
Messages
8,636
Reaction score
2,613
Points
203
Location
Dallas, TX
One thing that would be nice. Not sure how possible it would be.

Make the airlocks work for non ommu's.

So if I have an eva vessel that I am using. But I want it to enter the vessel/exit.
 

Loru

Retired Staff Member
Retired Staff
Addon Developer
Donator
Joined
Sep 30, 2008
Messages
3,731
Reaction score
6
Points
36
Location
Warsaw
One thing that would be nice. Not sure how possible it would be.

Make the airlocks work for non ommu's.

So if I have an eva vessel that I am using. But I want it to enter the vessel/exit.

Not sure how it could be done. Spawning and despawning your EVA vessel would require something like definition in EVA vessel's cfg but that might pose some problems for vessels that need special parameters during spawning.

Code:
oMMU_spawnable_vessel = true;
 

Woo482

Moderator
Moderator
Addon Developer
GFX Staff
Joined
Feb 13, 2008
Messages
3,048
Reaction score
20
Points
78
Location
Earth?
Well, I only intended for oMMU to work with oMMU, what exactly is the use case you're thinking? The oMMU MMUs themselves will be highly customizable so should be adaptable to most representations of crew members
 

gattispilot

Addon Developer
Addon Developer
Joined
Oct 17, 2007
Messages
8,636
Reaction score
2,613
Points
203
Location
Dallas, TX
I though so.

But like in our Interstellar we have 3 Ummus But Thought about making them have animations.

Or I am thing an animated astronaut. Where arms,. legs are animated

Just wishful thinking.
 

Woo482

Moderator
Moderator
Addon Developer
GFX Staff
Joined
Feb 13, 2008
Messages
3,048
Reaction score
20
Points
78
Location
Earth?
I'm unlikely to be able to add that to version 1.0 - The feature set is mostly frozen as of last night, but I'll add it to the list for future versions.
 

Interceptor

Well-known member
Joined
Mar 28, 2008
Messages
2,718
Reaction score
76
Points
63
Location
Michigan,Florida
Hey Woo482 would it possible in a future version to a add an extra keystroke to arm the airlock before opening a specific airlock,for example if there were 4 airlocks on a vessel,you would press the key number of the airlock,such as 1.and,another key to open the airlock before the EVA,and a voice,and or text message would appear saying what number airlock is open,and ready for EVA?
 
Last edited:

dbeachy1

O-F Administrator
Administrator
Orbiter Contributor
Addon Developer
Donator
Beta Tester
Joined
Jan 14, 2008
Messages
9,214
Reaction score
1,560
Points
203
Location
VA
Website
alteaaerospace.com
Preferred Pronouns
he/him
Hey Woo482 would it possible in a future version to a add an extra keystroke to arm the airlock before opening a specific airlock,for example if there were 4 airlocks on a vessel,you would press the key number of the airlock,such as 1.and,another key to open the airlock before the EVA,and a voice,and or text message would appear saying what number airlock is open,and ready for EVA?

Wouldn't that all that be handled by each individual vessel? Because the key to use, and the callout (if any) would vary by vessel, wouldn't it?
 

Ripley

Tutorial translator
Donator
Joined
Sep 12, 2010
Messages
3,133
Reaction score
407
Points
123
Location
Rome
Website
www.tuttovola.org
Can somebody tell me the differences between the two?
Planned features for the first release:
  • ...
  • (DONE) Crew transfer - Egress from one vessel and ingresss at an other...
  • ...
  • (DONE) Ship -> Ship crew transfers
  • ...
 

Marijn

Active member
Joined
Mar 5, 2008
Messages
755
Reaction score
166
Points
43
Location
Amsterdam
Can somebody tell me the differences between the two?

One could be transfer of crew between two vessels which are docked. The other one involves a little spacewalk between the vessels. Just my thought..
 

Woo482

Moderator
Moderator
Addon Developer
GFX Staff
Joined
Feb 13, 2008
Messages
3,048
Reaction score
20
Points
78
Location
Earth?
Hey Woo482 would it possible in a future version to a add an extra keystroke to arm the airlock before opening a specific airlock,for example if there were 4 airlocks on a vessel,you would press the key number of the airlock,such as 1.and,another key to open the airlock before the EVA,and a voice,and or text message would appear saying what number airlock is open,and ready for EVA?
oMMU is intended as a framework for other developers to use in implementing crews into their vessels - adding features like these would detract from that goal, though if I added UMMUFA-like features to allow any vessel to support oMMU without needing changes in the C++ module in the future a feature like mentioned would likely be a part of this.

Can somebody tell me the differences between the two?
Exactly as Marijn said, ship -> ship transfers are done through docking port airlocks, the other type requires walking / flying your crew member between the vessels.
 

Woo482

Moderator
Moderator
Addon Developer
GFX Staff
Joined
Feb 13, 2008
Messages
3,048
Reaction score
20
Points
78
Location
Earth?
For 1.0 I just want to focus on the C++ API itself and providing a good framework so that vessels like the XR Series can implement oMMU. The plan is to implement more advanced features like that in future versions - I already have a ton of ideas there (Universal oMMU, habitats, basic 'base' management, cargo frameworks, etc.) but if I started expanding the scope that rapidly now oMMU would turn into a Star Citizen level project of over promising and never delivering (Though unfortunately without the $50,000+ / day income :lol:)
 

jedidia

shoemaker without legs
Addon Developer
Joined
Mar 19, 2008
Messages
10,842
Reaction score
2,105
Points
203
Location
between the planets
Suggestion: handle everything from a MFD where you can see available ports, ships, spawned EVA guys/girls, etc.

I really don't think an MFD is a good way to handle it. It would potentially bypass closed airlocks, since that functionality would be implemented by the vessel, not ommu itself.

It would be better to have a dialog box to manage vessels that don't have a ommu implementation, and lotherwise leave the implementation to the implementing vessel.
 

Loru

Retired Staff Member
Retired Staff
Addon Developer
Donator
Joined
Sep 30, 2008
Messages
3,731
Reaction score
6
Points
36
Location
Warsaw
Kinda works (boilerplate vessel for rendering testing):

anna_test001.jpg
 

Woo482

Moderator
Moderator
Addon Developer
GFX Staff
Joined
Feb 13, 2008
Messages
3,048
Reaction score
20
Points
78
Location
Earth?
terrible_promo1.jpg

The intention is for a private alpha with the XR-Series in a few weeks, with release of the initial public beta version not long after that.
 

gattispilot

Addon Developer
Addon Developer
Joined
Oct 17, 2007
Messages
8,636
Reaction score
2,613
Points
203
Location
Dallas, TX
So to transfer crew. Will the ships need to be docked?

The reason is lets say a vessel like my LER has a crew person and they want to exit into the habitat module. It would need to dock to it, right?

My issues is sometimes docked landed vessel don't do to well.

And because of terrain the docking may not visually align.
 

Woo482

Moderator
Moderator
Addon Developer
GFX Staff
Joined
Feb 13, 2008
Messages
3,048
Reaction score
20
Points
78
Location
Earth?
There's no reason they have to be docked, I can add a function to the API to allow transfers by vessel handle if it'll be helpful. Also, apologies for blowing right past the estimated date for first release - I've been busier with other things than I had hoped.
 
Top