Page 1 of 2
rocketcal.cc: calculate the rocket launches needed to build a space platform blueprint!
Posted: Sun Nov 10, 2024 9:03 pm
by cellularmitosis
Hey!
I wrote a little tool which calculates the rocket launches required to build a space platform.
Check it out!
https://rocketcal.cc
Let me know what you think, or if you encounter any bugs.
Re: rocketcal.cc: calculate the rocket launches needed to build a space platform blueprint!
Posted: Mon Nov 11, 2024 9:27 am
by DOSorDIE
Works great! ... it will be nice if we can have constant combinator with that what we need for the launches.
Dont know if you remove the 110 platform you have from the starter paket (100 set and 10 in storage) from the blueprint.
Or you have 110 to much in space (thats at least 2 rockets)
EDIT: I see you do calculate it correct!!!
I love it!
Re: rocketcal.cc: calculate the rocket launches needed to build a space platform blueprint!
Posted: Tue Nov 12, 2024 1:55 am
by cellularmitosis
DOSorDIE wrote: Mon Nov 11, 2024 9:27 am
Works great! ... it will be nice if we can have constant combinator with that what we need for the launches.
Hey I was thinking the same thing! Thanks for the suggestion.
https://www.reddit.com/r/factorio/comme ... t/lwj2xnq/
Re: rocketcal.cc: calculate the rocket launches needed to build a space platform blueprint!
Posted: Sun Nov 17, 2024 10:41 pm
by DOSorDIE
I found a bug
(1) nuclear-reactor (1.0 kg)
it has 1000kg not 1
Re: rocketcal.cc: calculate the rocket launches needed to build a space platform blueprint!
Posted: Mon Nov 18, 2024 12:47 am
by cellularmitosis
DOSorDIE wrote: Sun Nov 17, 2024 10:41 pm
I found a bug
(1) nuclear-reactor (1.0 kg)
it has 1000kg not 1
Oh thanks so much! I'll take a look
Re: rocketcal.cc: calculate the rocket launches needed to build a space platform blueprint!
Posted: Mon Nov 18, 2024 3:37 am
by cellularmitosis
DOSorDIE wrote: Sun Nov 17, 2024 10:41 pm
I found a bug
(1) nuclear-reactor (1.0 kg)
it has 1000kg not 1
Thanks again, I found and fixed the bug. I've credited you in the
changelog!
I had a bug in how I parse the item weight values from the game files data/base/prototypes/item.lua and data/space-age/prototypes/item.lua.
The items which affected spaceship blueprints were probably just
nuclear-reactor and
fussion-reactor, but in total there were 12 incorrectly parsed weight values, here's the complete diff:
Code: Select all
$ diff /tmp/1.txt /tmp/2.txt
18c18
< 'atomic-bomb': 1.5,
---
> 'atomic-bomb': 1500.0,
20c20
< 'barrel': 1.0,
---
> 'barrel': 5.0,
50c50
< 'cargo-landing-pad': 1.0,
---
> 'cargo-landing-pad': 1000.0,
111c111
< 'fission-reactor-equipment': 0.25,
---
> 'fission-reactor-equipment': 250.0,
121,122c121,122
< 'fusion-reactor': 1.0,
< 'fusion-reactor-equipment': 1.0,
---
> 'fusion-reactor': 1000.0,
> 'fusion-reactor-equipment': 1000.0,
175c175
< 'nuclear-reactor': 1.0,
---
> 'nuclear-reactor': 1000.0,
192c192
< 'plastic-bar': 500.0,
---
> 'plastic-bar': 0.5,
215c215
< 'raw-fish': 1.0,
---
> 'raw-fish': 3.3333333333333335,
226c226
< 'rocket-silo': 10.0,
---
> 'rocket-silo': 10000.0,
228c228
< 'satellite': 1.0,
---
> 'satellite': 1000.0,
249c249
< 'spidertron': 1.0,
---
> 'spidertron': 1000.0,
This affected 33 out of the 159 blueprints which have been uploaded so far.
All of the cached rocket manifests have been regenerated (i.e. corrected).
Re: rocketcal.cc: calculate the rocket launches needed to build a space platform blueprint!
Posted: Mon Nov 18, 2024 8:44 pm
by DOSorDIE
Thx for all your hard work!
Re: rocketcal.cc: calculate the rocket launches needed to build a space platform blueprint!
Posted: Tue Nov 19, 2024 6:23 am
by cellularmitosis
Re: rocketcal.cc: calculate the rocket launches needed to build a space platform blueprint!
Posted: Fri Nov 22, 2024 1:24 am
by DOSorDIE
The moduls for the assembler & Co are missing ...
Re: rocketcal.cc: calculate the rocket launches needed to build a space platform blueprint!
Posted: Sat Nov 23, 2024 5:22 am
by cellularmitosis
DOSorDIE wrote: Fri Nov 22, 2024 1:24 am
The moduls for the assembler & Co are missing ...
Fixed! Thanks again for the bug report!
Re: rocketcal.cc: calculate the rocket launches needed to build a space platform blueprint!
Posted: Sat Nov 23, 2024 6:36 am
by cellularmitosis
Also added "2x" icons for Retina/HiDPI displays.
Re: rocketcal.cc: calculate the rocket launches needed to build a space platform blueprint!
Posted: Sun Nov 24, 2024 5:41 am
by cellularmitosis
DOSorDIE wrote: Mon Nov 11, 2024 9:27 am
Works great! ... it will be nice if we can have constant combinator with that what we need for the launches.
Heya! I just added not only a constant combinator, but also a "silo loader' which counts items. Here's the demo:
https://www.youtube.com/watch?v=Vo1hlx9st48
Re: rocketcal.cc: calculate the rocket launches needed to build a space platform blueprint!
Posted: Thu Nov 28, 2024 9:41 am
by DOSorDIE
If you just wonder why you website yesterday dies ... it was me (shame on me)
It had an infinity chest in the blueprint because i forgot to delete it first.
After i press sumit the website write an error, entity infinity chest not found and then it dont react anymore.
Sorry!
Re: rocketcal.cc: calculate the rocket launches needed to build a space platform blueprint!
Posted: Sun Dec 01, 2024 2:18 am
by DOSorDIE
I love the new feature!!!
To even make it easier when we can remove the "full rocket" things and build it reverse.
So it need this and that ... 123 belts, 54 inserter, usw ...
so it remove all things that fill a full rocket ... so 23 belts and 4 inserter
send that manually up put the blueprint on and then acitivate the autobuild on the platform to send only the full rockets ...
so it will be even easier to build the space ship.
Dont know how complicate it is to manipulate the blueprints ... so its just an idea.
Bug in manifest
Posted: Mon Dec 09, 2024 6:39 am
by Deltaqyto
I believe there is a bug in this particular manifest:
https://rocketcal.cc/5497a8fa235e476f17721f86989c1dc4
Particularly, launch #32 comes up to 960kg when loaded (light by 40 kg). The planner says 1000kg launch weight.
The manifest also does not include 2x rare gun turrets in the manual launches (is present in the combined manifest). I'd bet it is being counted for the weight of launch #32.
Happy to provide the original blueprint string, if that helps.
Thank you for this wonderful tool.
Re: Bug in manifest
Posted: Sat Dec 14, 2024 1:35 pm
by cellularmitosis
Deltaqyto wrote: Mon Dec 09, 2024 6:39 am
I believe there is a bug in this particular manifest:
https://rocketcal.cc/5497a8fa235e476f17721f86989c1dc4
Particularly, launch #32 comes up to 960kg when loaded (light by 40 kg). The planner says 1000kg launch weight.
The manifest also does not include 2x rare gun turrets in the manual launches (is present in the combined manifest). I'd bet it is being counted for the weight of launch #32.
Happy to provide the original blueprint string, if that helps.
Thank you for this wonderful tool.
Ah sorry I didn't see this earlier, I'll take a look.
Re: rocketcal.cc: calculate the rocket launches needed to build a space platform blueprint!
Posted: Sat Dec 14, 2024 1:57 pm
by cellularmitosis
DOSorDIE wrote: Thu Nov 28, 2024 9:41 am
If you just wonder why you website yesterday dies ... it was me (shame on me)
Haha, no worries, I'll take a look at that as well.
Dont know how complicate it is to manipulate the blueprints ... so its just an idea.
I implemented this, yay! But in the opposite order -- you do the full launches on auto first, then finish up with the remaining manual launches.
Re: Bug in manifest
Posted: Sat Dec 14, 2024 2:09 pm
by cellularmitosis
Deltaqyto wrote: Mon Dec 09, 2024 6:39 am
I believe there is a bug in this particular manifest:
https://rocketcal.cc/5497a8fa235e476f17721f86989c1dc4
Particularly, launch #32 comes up to 960kg when loaded (light by 40 kg). The planner says 1000kg launch weight.
The manifest also does not include 2x rare gun turrets in the manual launches (is present in the combined manifest). I'd bet it is being counted for the weight of launch #32.
Happy to provide the original blueprint string, if that helps.
Thank you for this wonderful tool.
Found the bug! I'll push up the fix momentarily
Re: rocketcal.cc: calculate the rocket launches needed to build a space platform blueprint!
Posted: Thu Dec 19, 2024 3:28 pm
by Zulan
Thank you for the tool, it is very useful and well done. I have some suggestions to streamline the construction blueprints:
- Consider this platform: https://rocketcal.cc/c14bbb4311615a0693ae8912e7f25ede It only uses starter platform as auto launch and it has deleted default platforms. The auto launch blueprint is wrong. It does require platforms (which it should not), but not even all platforms. Not sure what is going on here.
- Instead of / in addition to the counting combinator request setup, I would prefer using construction inventory ghosts. In case you are not aware: from map you, you can make construction bots insert items into inventories. This works with blueprints. To create a space platform, you could cycle through the blueprint book and then shift click the required cargo in any rocket that is ready. This makes it easier to distribute the cargo across several rockets.
Re: rocketcal.cc: calculate the rocket launches needed to build a space platform blueprint!
Posted: Fri Dec 20, 2024 5:27 pm
by cellularmitosis
Zulan wrote: Thu Dec 19, 2024 3:28 pm
Thank you for the tool, it is very useful and well done. I have some suggestions to streamline the construction blueprints:
- Consider this platform: https://rocketcal.cc/c14bbb4311615a0693ae8912e7f25ede It only uses starter platform as auto launch and it has deleted default platforms. The auto launch blueprint is wrong. It does require platforms (which it should not), but not even all platforms. Not sure what is going on here.
- Instead of / in addition to the counting combinator request setup, I would prefer using construction inventory ghosts. In case you are not aware: from map you, you can make construction bots insert items into inventories. This works with blueprints. To create a space platform, you could cycle through the blueprint book and then shift click the required cargo in any rocket that is ready. This makes it easier to distribute the cargo across several rockets.
Thanks for the bug report! I’ll take a look.
Actually I didn’t know about the ghost method, that sounds interesting