Notifications
Clear all

To all SSC Station occupants

Thank you for the donations over the past year (2024), it is much appreciated. I am still trying to figure out how to migrate the forums to another community software (probably phpbb) but in the meantime I have updated the forum software to the latest version. SSC has been around a while so their is some very long time members here still using the site, thanks for making SSC home and sorry I haven't been as vocal as I should be in the forums I will try to improve my posting frequency.

Thank you again to all of the members that do take the time to donate a little, it helps keep this station functioning on the outer reaches of space.

-D1-

Crew.

Page 2 / 3
(@brianetta)
Prominent Member

Not that simple. You need to recompile Pioneer itself.

You can download the latest source code from Github as a zip file, although installing Git on your computer will let you keep that source up to date without re-downloading everything each time.

ReplyQuote
Topic starter Posted : January 25, 2013 00:50
(@celticfang)
Trusted Member

So all I need is the latest source code and VC 2010, i.e. everything's in the source code already?

ReplyQuote
Posted : January 25, 2013 01:40
(@fluffyfreak)
Noble Member

WARNING: Don't download the "pioneer-thirdparty" into the "pioneer" folder.

 

Download it NEXT TOO it.

 

So your folder would looks something like this:

  • C:
  • C:pioneer
  • C:pioneer-thirdparty

The solution should be setup with a relative path, you can also use the Visual Studio 2012 Express Edition which is free and can be downloaded.

 

I just checked and it looks like the bloody wiki is out of date and doesn't mention any of this 🙁

 

I personally have something that looks like this on my HDD, as an EXAMPLE ONLY:

 

  • D:
  • D:Code
  • D:Codepioneer
  • D:Codepioneer-alt
  • D:Codepioneer-terrain
  • D:Codepioneer-thirdparty

Where "pioneer-alt" and "pioneer-terrain" are just different branches of my own codebase to save me from checking them out all the item as I switched around a lot.

The "pioneer-thirdparty" is always in the same place though which makes it a lot easier to develop with 🙂

 

Hope that helps.

 

Andy

ReplyQuote
Posted : January 25, 2013 03:39
(@Anonymous)
New Member

I just checked and it looks like the bloody wiki is out of date and doesn't mention any of this 🙁

 

I hope you updated it.

 

Edit: Actually, never mind. I've just scrapped that section and replaced it with a link to the COMPILING.txt file that's included in the repository (and is more up-to-date).

 

John B

ReplyQuote
Posted : January 25, 2013 04:30
(@fluffyfreak)
Noble Member

Cool, I'm at work so can't really do too much, just compiling right now 🙂

ReplyQuote
Posted : January 25, 2013 05:29
 Vuzz
(@vuzz)
Reputable Member
It is the first time  i see that players have to compile to try something again.

 

To compile it is for dev.  usually, you are on strike?

ReplyQuote
Posted : January 25, 2013 06:07
(@brianetta)
Prominent Member

So all I need is the latest source code and VC 2010, i.e. everything's in the source code already?

No, you'll have to get the source code on my Kroo branch.

ReplyQuote
Topic starter Posted : January 25, 2013 06:14
(@brianetta)
Prominent Member

It is the first time  i see that players have to compile to try something again.

Welcome to the world of free, open source software. Since this feature isn't in any alpha or nightly build, and I can't build it for you unless you happen to have a 64 bit Ubuntu 12.04 machine, this is how it works. You either build it yourself, or you wait until it's completely finished and included in the master branch.

If this was a commercial game, even an indie one, you wouldn't have the opportunity to try it at all. It would simply be a line in the "features coming soon" list.

ReplyQuote
Topic starter Posted : January 25, 2013 06:17
(@walterar)
Prominent Member
I wanted to test how it worked and changed my viper by an eagle.

 

As I suspected, Lisa is still here. 
ReplyQuote
Posted : January 25, 2013 08:01
(@shadmar)
Reputable Member

Here is a patch if you run windows to test crew, unzip on top of one of the latest nightlies.

 

 

ReplyQuote
Posted : January 25, 2013 08:15
 Vuzz
(@vuzz)
Reputable Member

Walterar say:

As I suspected, Lisa is still here.

 

 

 

She has to be lying in a basket near your feets  🙂

 

how it's beautiful the love!

ReplyQuote
Posted : January 25, 2013 08:15
(@chronothan)
Active Member

WARNING: Don't download the "pioneer-thirdparty" into the "pioneer" folder.

 

Download it NEXT TOO it.

 

So your folder would looks something like this:

  • C:
  • C:pioneer
  • C:pioneer-thirdparty

 

Ah ok. Figured I was doing something wrong somehow.  Out of curiosity, what is the problem with putting pioneer-thirdparty in the main folder?  It's worked for me everytime I've done it. Not disputing that it is the wrong way to do it just wondering what's the reasoning behind it and potential problems.

ReplyQuote
Posted : January 25, 2013 08:24
(@celticfang)
Trusted Member

I've tried it and I like it, however I got no idea what you're planning, so if I say stuff you're already working on, ignore my ideas.

Here goes:

Obviously, the bigger ships can have more crew, but would it be possible to destroy a ship and (say) capture its crew, then use them in your own ship as captive crew? That to my mind would cut down on wages a lot but have its own issues (keeping them in line springs to mind, somehow I doubt a crew of pirates want to work on my ship)

Secondly, is it possible to trade empty space for crew cabins? Say I got a ship with 100t free space and I get 10 cabins at (for instance) 2t each, that'd be 20t of space taken up by extra crew. Conversely, I could sell those to free up space.

Are the above doable?

ReplyQuote
Posted : January 25, 2013 08:25
(@brianetta)
Prominent Member

Probably, although getting it all working stably and properly is the first goal. Now the weekend's here, that might even happen.

ReplyQuote
Topic starter Posted : January 25, 2013 09:36
 Vuzz
(@vuzz)
Reputable Member

i have a question  about integrating some news ships, in these case i must just def max and min crew in ships lua ? 

 

i mean there is nothing must added in src for an added ship ? 

ReplyQuote
Posted : January 25, 2013 21:49
(@celticfang)
Trusted Member

It's worked fine in the 20 minutes I played, is there a table that's easily readable of what ship has what min/max crew? I tried reading the lua but on my small screen it just winds up giving me a headache, I'll try again on my bigger screen

ReplyQuote
Posted : January 25, 2013 22:15
 robn
(@robn)
Noble Member

Open the console (with the backtick (`) key) and type:

ShipType.GetShipTypes("SHIP", function (s) print(string.format("%s min %d max %d",s.name,s.minCrew,s.maxCrew)) end)

The output will probably roll off your screen, but it will also go to stdout.txt.

ReplyQuote
Posted : January 25, 2013 22:26
 Vuzz
(@vuzz)
Reputable Member
(@fluffyfreak)
Noble Member

Ah ok. Figured I was doing something wrong somehow.  Out of curiosity, what is the problem with putting pioneer-thirdparty in the main folder?  It's worked for me everytime I've done it. Not disputing that it is the wrong way to do it just wondering what's the reasoning behind it and potential problems.

 

If you're just downloading the sourcecode as a zip/tar then it's probably ok, not as convenient as you have to copy it into each copy of the pioneer sourcecode you ever grab, but it should work.

 

However if you've actually using GitHub to fetch the source then you've got two repositories on top of each other, which means that each one can see the others files but they're not checked in. So if you clean one of the repositories to get rid of unused files, it will actually remove ones that are supposed to be in the other. Then of course you might also have conflicts with similarly named files in the same folders, or changes in on repository breaking the other etc.

 

Also my example of having two copies of pioneer checked out is only what i'm down too at the moment, on my main development PC I have 6! 🙂

ReplyQuote
Posted : January 26, 2013 00:14
(@fluffyfreak)
Noble Member

i have a question  about integrating some news ships, in these case i must just def max and min crew in ships lua ? 

 

i mean there is nothing must added in src for an added ship ? 

 

You don' need to change any source to add a new ship. it's all done through Lua. That's how we support mods with other ships etc.

ReplyQuote
Posted : January 26, 2013 00:16
 Vuzz
(@vuzz)
Reputable Member

thanks for the answer fluffy.

 

that's fine , going to test that

ReplyQuote
Posted : January 26, 2013 00:35
(@celticfang)
Trusted Member

I like the fact my 65 piloting crew (after 14 hours) can fly and land anywhere at all. Oh and attack anything that is a target.

However, I can't find a decent engineer or navigator

ReplyQuote
Posted : January 26, 2013 02:31
(@brianetta)
Prominent Member

No, no source code changes are needed for new ships.

ReplyQuote
Topic starter Posted : January 26, 2013 08:19
(@celticfang)
Trusted Member

Either I'm gaming the system or getting very lucky with the crew randomizing.

Started at Earth, got a 60 pilot

Went to Mars, 65 engineer

To the Moon, 60 navigation

Then to the stationa round Earth, 65 sensors.

I like this crew a lot, I like it. Yeah, they may cost a lot, but they are worth it. And all that in a Caribou I'm slowly turning into a spacebound fortress

ReplyQuote
Posted : January 26, 2013 09:32
(@brianetta)
Prominent Member

You got quite lucky. Then again, you probably know how to look for crew properly.

Sol has so many crew going that you can generally find everybody you'd ever need. A combination of very high population and an extraordinary number of starports (22 in total) gives you 330 potential crew members to choose from. More, if you game the system by hiring and then promptly firing unskilled crew.

ReplyQuote
Topic starter Posted : January 26, 2013 18:57
Page 2 / 3