Not yet. But will download it soon.Diziet Sma wrote:Did you grab a copy of the BGS Female Comms Chatter patch yet? And would you like a copy of the original audio files it was made from?pagroove wrote:As a co-author of BGS (A lot of sounds I made for it) ... Anyway I can maintain the sound side of it but I need to be paired with a strong programmer for the scripting side of BGS.
Svengali's OXPs - Maintainers needed.
Moderators: winston, another_commander
- pagroove
- ---- E L I T E ----
- Posts: 3035
- Joined: Wed Feb 21, 2007 11:52 pm
- Location: On a famous planet
Re: Svengali's OXPs - Maintainers needed.
For P.A. Groove's music check
https://soundcloud.com/p-a-groove
Famous Planets v 2.7. (for Povray)
https://bb.oolite.space/viewtopic.php?f=4&t=13709
https://soundcloud.com/p-a-groove
Famous Planets v 2.7. (for Povray)
https://bb.oolite.space/viewtopic.php?f=4&t=13709
- Redspear
- ---- E L I T E ----
- Posts: 2687
- Joined: Thu Jun 20, 2013 10:22 pm
- Location: On the moon Thought, orbiting the planet Ignorance.
Re: Svengali's OXPs - Maintainers needed.
That's probably true. OK, you've talked me into itDiziet Sma wrote:Well, at this point the ships and stations probably won't need a lot in the way of work, other than roles, etc.. so mostly plist type stuff.. and if it comes down to the point where the docking ports need attention, there's lots of help available here.
If you're agreeable then, I'll put all the 'orphans' under your care.
OK, I'll set up a new orphanage then.
"Come along little ones..."
- Diziet Sma
- ---- E L I T E ----
- Posts: 6312
- Joined: Mon Apr 06, 2009 12:20 pm
- Location: Aboard the Pitviper S.E. "Blackwidow"
Re: Svengali's OXPs - Maintainers needed.
Fantastic! Your blood's worth bottling, as my stepfather used to say..
List has been updated.
List has been updated.
Most games have some sort of paddling-pool-and-water-wings beginning to ease you in: Oolite takes the rather more Darwinian approach of heaving you straight into the ocean, often with a brick or two in your pockets for luck. ~ Disembodied
- Redspear
- ---- E L I T E ----
- Posts: 2687
- Joined: Thu Jun 20, 2013 10:22 pm
- Location: On the moon Thought, orbiting the planet Ignorance.
Re: Svengali's OXPs - Maintainers needed.
Er, thanksDiziet Sma wrote:Fantastic! Your blood's worth bottling, as my stepfather used to say..
Re: Svengali's OXPs - Maintainers needed.
For my shieldcycler oxp i needed additions to OxpConfig, and functioned as a tester to get them working.
This gave me a basic understanding of how OxpConfig works internally.
If needed I am willing to take on OxpConfig .
I'm also interested in LocalHero, but have no experience with mission oxps.
Also all i can find is the old code for Localhero 1.05, maybe Svengali has WIP-code ?
This gave me a basic understanding of how OxpConfig works internally.
If needed I am willing to take on OxpConfig .
I'm also interested in LocalHero, but have no experience with mission oxps.
Also all i can find is the old code for Localhero 1.05, maybe Svengali has WIP-code ?
OS : Arch Linux 64-bit - rolling release
OXPs : My user page
Retired, reachable at [email protected]
OXPs : My user page
Retired, reachable at [email protected]
- Diziet Sma
- ---- E L I T E ----
- Posts: 6312
- Joined: Mon Apr 06, 2009 12:20 pm
- Location: Aboard the Pitviper S.E. "Blackwidow"
Re: Svengali's OXPs - Maintainers needed.
That would be fantastic! Much appreciated!Lone_Wolf wrote:If needed I am willing to take on OxpConfig .
I'll ask him if he has anything..Lone_Wolf wrote:I'm also interested in LocalHero, but have no experience with mission oxps.
Also all i can find is the old code for Localhero 1.05, maybe Svengali has WIP-code ?
I've added your name for both OXPs.
Most games have some sort of paddling-pool-and-water-wings beginning to ease you in: Oolite takes the rather more Darwinian approach of heaving you straight into the ocean, often with a brick or two in your pockets for luck. ~ Disembodied
Re: Svengali's OXPs - Maintainers needed.
Something that might save you a bit of maintenance work on OXPConfig: now that Oolite 1.80 has separate
startUp
and startUpComplete
it might be more practical to let OXPs use OXPConfig without OXPConfig itself needing updating first.Re: Svengali's OXPs - Maintainers needed.
I do understand the difference between those 2, but am not clear yet who should start first.cim wrote:Something that might save you a bit of maintenance work on OXPConfig: now that Oolite 1.80 has separatestartUp
andstartUpComplete
it might be more practical to let OXPs use OXPConfig without OXPConfig itself needing updating first.
I THINK you mean calling oxps should use
startUp
, then OxpConfig should use startUpComplete
instead of startUp
?OS : Arch Linux 64-bit - rolling release
OXPs : My user page
Retired, reachable at [email protected]
OXPs : My user page
Retired, reachable at [email protected]
Re: Svengali's OXPs - Maintainers needed.
Yes. This is what cim means. Currently OXPConfig needs to call the OXPsLone_Wolf wrote:I do understand the difference between those 2, but am not clear yet who should start first.cim wrote:Something that might save you a bit of maintenance work on OXPConfig: now that Oolite 1.80 has separatestartUp
andstartUpComplete
it might be more practical to let OXPs use OXPConfig without OXPConfig itself needing updating first.
I THINK you mean calling oxps should usestartUp
, then OxpConfig should usestartUpComplete
instead ofstartUp
?
startUp
for OXPs which are using the EarlyCall
flag. Otherwise properties would be undefined. The loading order is a beast .-) If OXPConfig uses startUpComplete
instead then all OXPs have done their own startUp
already.Edit: But
systemWillPopulate
runs before startUpComplete
gets called! So it might be too late for some OXPs. I would leave it as it is .-)Re: Svengali's OXPs - Maintainers needed.
Thanks for the clarification, maybeSvengali wrote:Yes. This is what cim means. Currently OXPConfig needs to call the OXPsstartUp
for OXPs which are using theEarlyCall
flag. Otherwise properties would be undefined. The loading order is a beast .-) If OXPConfig usesstartUpComplete
instead then all OXPs have done their ownstartUp
already.
Edit: ButsystemWillPopulate
runs beforestartUpComplete
gets called! So it might be too late for some OXPs. I would leave it as it is .-)
EarlyCall
should be taken out of oxpcSettings
and be added as a flag to the list of supported oxps.My ShieldCycler for example has no need for
EarlyCall
, there may be other oxps that know in advance they don't require EarlyCall
.OS : Arch Linux 64-bit - rolling release
OXPs : My user page
Retired, reachable at [email protected]
OXPs : My user page
Retired, reachable at [email protected]
Re: Svengali's OXPs - Maintainers needed.
I'm not sure about this change - you'd have to check these OXPs then every time a new version gets released.Lone_Wolf wrote:Thanks for the clarification, maybeEarlyCall
should be taken out ofoxpcSettings
and be added as a flag to the list of supported oxps.
Re: Svengali's OXPs - Maintainers needed.
That is correct, but i do feel the oxp authors that use OxpConfig should be more involved in OxpConfig development.Svengali wrote:I'm not sure about this change - you'd have to check these OXPs then every time a new version gets released.Lone_Wolf wrote:Thanks for the clarification, maybeEarlyCall
should be taken out ofoxpcSettings
and be added as a flag to the list of supported oxps.
Not sure yet how to achieve that though.
OS : Arch Linux 64-bit - rolling release
OXPs : My user page
Retired, reachable at [email protected]
OXPs : My user page
Retired, reachable at [email protected]
Re: Svengali's OXPs - Maintainers needed.
*grins* Sounds like a good plan, but don't hold your breath. Usually it takes some time before OXPers are starting to dig in other projects, regardless of announcements or documentation. Probably I should have been chattier...Lone_Wolf wrote:<snip>, but i do feel the oxp authors that use OxpConfig should be more involved in OxpConfig development.
Not sure yet how to achieve that though.
- Diziet Sma
- ---- E L I T E ----
- Posts: 6312
- Joined: Mon Apr 06, 2009 12:20 pm
- Location: Aboard the Pitviper S.E. "Blackwidow"
Re: Svengali's OXPs - Maintainers needed.
Tricky has agreed to take on BGS..
Most games have some sort of paddling-pool-and-water-wings beginning to ease you in: Oolite takes the rather more Darwinian approach of heaving you straight into the ocean, often with a brick or two in your pockets for luck. ~ Disembodied
- Cody
- Sharp Shooter Spam Assassin
- Posts: 16081
- Joined: Sat Jul 04, 2009 9:31 pm
- Location: The Lizard's Claw
- Contact:
Re: Svengali's OXPs - Maintainers needed.
Excellent!Diziet Sma wrote:Tricky has agreed to take on BGS..
I would advise stilts for the quagmires, and camels for the snowy hills
And any survivors, their debts I will certainly pay. There's always a way!
And any survivors, their debts I will certainly pay. There's always a way!