[0.12.x][v0.12.1] Bob's Greenhouse mod
Moderator: bobingabout
- bobingabout
- Smart Inserter
- Posts: 7352
- Joined: Fri May 09, 2014 1:01 pm
- Contact:
Re: [0.12.x][v0.12.1] Bob's Greenhouse mod
I suppose the main solution would be to make it more energy hungry, so that burning the wood being unviable, and also change the recipe without fertiliser to be even less efficient than it already is. Which basically means, you only really do this if you want wood for crafting. The fertiliser requirement makes it a little less wise to just burn it, because the fertiliser requires resources, though no more so than burning coal anyway.
Re: [0.12.x][v0.12.1] Bob's Greenhouse mod
Random, can this be a sticky like the other mod discussions?
Re: [0.12.x][v0.12.1] Bob's Greenhouse mod
That seams to be a good solution to me. Without fertilizer energy should be effectively lost by producing wood via the greenhouse and using it as fuel. With fertilizer the direct use of petroleum gas to solid fuel should yield more energy.
Ontop of the energy requirement to produce wood being larger than the energy gained, the energy to produce the wood should ALSO be larger than the energy generated by the coal/oil required to produce equal amounts of synthetic resign/wood. That would imply that if you currently burn any oil or coal for energy you would be better of to not produce resign or wooden boards from the greenhouse but use your coal or oil instead thereby limiting the greenhouse to an early game, pre oil installment only to bridge the gap until oil is available. That might already be the case if the first condition is true, depending on the amount of ressources used for normal/synthetic resign/wood which i dont have infront of me right now.
Ontop of the energy requirement to produce wood being larger than the energy gained, the energy to produce the wood should ALSO be larger than the energy generated by the coal/oil required to produce equal amounts of synthetic resign/wood. That would imply that if you currently burn any oil or coal for energy you would be better of to not produce resign or wooden boards from the greenhouse but use your coal or oil instead thereby limiting the greenhouse to an early game, pre oil installment only to bridge the gap until oil is available. That might already be the case if the first condition is true, depending on the amount of ressources used for normal/synthetic resign/wood which i dont have infront of me right now.
Re: [0.12.x][v0.12.1] Bob's Greenhouse mod
I love the new Greenhouse mod ... Good Job Bob,
but it whould be nice when i can see that it is working ... there is no animation or else.
So i must make that manuell if all works like i will
Some litlle lamp that are blinking or else is enough.
but it whould be nice when i can see that it is working ... there is no animation or else.
So i must make that manuell if all works like i will
Some litlle lamp that are blinking or else is enough.
- bobingabout
- Smart Inserter
- Posts: 7352
- Joined: Fri May 09, 2014 1:01 pm
- Contact:
Re: [0.12.x][v0.12.1] Bob's Greenhouse mod
Although there is an active animation in the folders, I decided not to implement it for a simple reason.... It gets drawn on top of the pipe attachment graphics.
Re: [0.12.x][v0.12.1] Bob's Greenhouse mod
I was not able to replicate that problem in particular, however, I had a different issue when uncommenting the working-visualizations for the greenhousebobingabout wrote:Although there is an active animation in the folders, I decided not to implement it for a simple reason.... It gets drawn on top of the pipe attachment graphics.
ugly graphics
Not really sure what causes this problem. Anyways, I created a new graphic (see attachment), one which does not cross overlap mostly with the pipe placements, and added some light to the working animation:code
And it looks nice enough now:
new graphics
That should suffice for some working graphics, no?- Attachments
-
- My new "on" effect
- greenhouse-light.png (42.98 KiB) Viewed 6782 times
Re: [0.12.x][v0.12.1] Bob's Greenhouse mod
"Haha, no", my OCD dictates.Aonova wrote:That should suffice for some working graphics, no?
Active greenhouse was hard to distinguish in daytime, so I made an animation for it.
crappy GIF of animation
Implementation1) download animation file: 2) modify greenhouse entity script:
replace original working_visualisations
Tested and did not find any weirdness. Have fun guys.Re: [0.12.x][v0.12.1] Bob's Greenhouse mod
Looks great
Bob you know what to do
Bob you know what to do
Re: [0.12.x][v0.12.1] Bob's Greenhouse mod
The bottom left greenhouse still looks like it has a gap between the pipe and the greenhouse. But my eyes are old so I could be wrong. They do look nice!
Re: [0.12.x][v0.12.1] Bob's Greenhouse mod
I see the gap in the bottom left as well.Nexela wrote:The bottom left greenhouse still looks like it has a gap between the pipe and the greenhouse. But my eyes are old so I could be wrong. They do look nice!
Re: [0.12.x][v0.12.1] Bob's Greenhouse mod
Thanks! The gap issue for the north fluid port is due to bob using the generic assembler-3 fluid port graphics, which is ofc a different shape than the lab-based greenhouse. To fix that, one would have to create a custom fluid port graphic and redefine the fluid port property of the greenhouse entity to include it.Nexela wrote:The bottom left greenhouse still looks like it has a gap between the pipe and the greenhouse. But my eyes are old so I could be wrong. They do look nice!
It does look pretty ugly tbf. I'll work on a fix asap.
Re: [0.12.x][v0.12.1] Bob's Greenhouse mod
Welp, got a fix for the ugly top pipe
1) Download new pipe graphic and place in entities folder of mod: 2) Modify greenhouse entity script:
screenshot
Implementation1) Download new pipe graphic and place in entities folder of mod: 2) Modify greenhouse entity script:
replace the pipe_picture property of the greenhouse fluid_boxes
Anywho, if anyone has any idea how "priority" and "shift" properties work on sprites, please enlighten me. That would be a giant help for any future graphic endeavors of mine - bobingabout
- Smart Inserter
- Posts: 7352
- Joined: Fri May 09, 2014 1:01 pm
- Contact:
Re: [0.12.x][v0.12.1] Bob's Greenhouse mod
Shift is measured in tiles, and tiles are 32 pixels in size, so if you want to move it 1 pixel, it would be by 1/32. you can either put that in directly (the game allows it) or use a calculator to get 0.03125, and use that instead.
Re: [0.12.x][v0.12.1] Bob's Greenhouse mod
So if i understand properly, shift = {a,b} means shift sprite right a tiles and down b tiles. Thant makes much more sense . I somehow came up with the idea that shift was based on a factor of the size of the sprite itself, so , for example, shift {1,-2} would move the sprite its own width right and double its width up. Thanks for clearing it upbobingabout wrote:Shift is measured in tiles, and tiles are 32 pixels in size, so if you want to move it 1 pixel, it would be by 1/32. you can either put that in directly (the game allows it) or use a calculator to get 0.03125, and use that instead.
- Arch666Angel
- Smart Inserter
- Posts: 1636
- Joined: Sun Oct 18, 2015 11:52 am
- Contact:
Re: [0.12.x][v0.12.1] Bob's Greenhouse mod
Priority should influence the order in which sprites are rendered, but so far I have never seen any difference when playing with this setting
BTW doing pipe overlays is one of the most annoying tasks when doing new buildings.
BTW doing pipe overlays is one of the most annoying tasks when doing new buildings.
Angels Mods
I. Angel's Mods Subforum
II. Development and Discussion
III. Bugs & FAQ
"should be fixed"
I. Angel's Mods Subforum
II. Development and Discussion
III. Bugs & FAQ
"should be fixed"
- bobingabout
- Smart Inserter
- Posts: 7352
- Joined: Fri May 09, 2014 1:01 pm
- Contact:
Re: [0.12.x][v0.12.1] Bob's Greenhouse mod
there's render_layer too, of which there are actually 4 different sprite render layers for entities alone.Arch666Angel wrote:Priority should influence the order in which sprites are rendered, but so far I have never seen any difference when playing with this setting
BTW doing pipe overlays is one of the most annoying tasks when doing new buildings.
Re: [0.12.x][v0.12.1] Bob's Greenhouse mod
Burning wood is an interesting addition of bob's mods, giving you an alternative to solar for renewable enargy. I think that making it a net-negative energy source would detract from the interest. Also, it makes no sense to make it a net-negative energy process, considering that trees are getting energy from the sun.madtulip wrote:That seams to be a good solution to me. Without fertilizer energy should be effectively lost by producing wood via the greenhouse and using it as fuel. With fertilizer the direct use of petroleum gas to solid fuel should yield more energy.
Ontop of the energy requirement to produce wood being larger than the energy gained, the energy to produce the wood should ALSO be larger than the energy generated by the coal/oil required to produce equal amounts of synthetic resign/wood. That would imply that if you currently burn any oil or coal for energy you would be better of to not produce resign or wooden boards from the greenhouse but use your coal or oil instead thereby limiting the greenhouse to an early game, pre oil installment only to bridge the gap until oil is available. That might already be the case if the first condition is true, depending on the amount of ressources used for normal/synthetic resign/wood which i dont have infront of me right now.
That being said, they are currently fairly overpowered. Without fertilizer, a single greenhouse produces a net of ~22.66 trees/min. Doing the math a greenhouse is a net of ~89.166 MJ/min (aka: 1.49 MW). Compare that to a MK3 large solar panel producing 240 kw, and it's pretty clear that they need some balancing, especially with how simple they are.
My recommendation:
1) reduce the base recipe from 15 wood to 5 wood and make it take 60 seconds. That makes the energy output 153 kw. Adding in the overhead of the inserters and assembly machines needed for your setup, you probably will end up around ~100 kw, which seems decent given the complexity.
2) add a MK2 greenhouse with 2x crafting speed, bringing the energy output to 306 kw. Make the recipe for a MK2 require some fairly high level electronics (or advanced inserters or something)
3) Reduce the fertilizer recipe from 30 to 15, bringing it back to what it is now. I don't have the time to do the math on comparing the fertilizer efficiency with the solid fuel efficiency, but it should be significantly more efficient to use fertilizer than solid fuel. To make up for that, I think fertilizer should be more complicated to make maybe.
With those changes, wood will still be usable as a renewable fuel source, but it's not so overpowered, and requires a decent amount of automation to make it viable as a primary power source. I would like to keep wood more powerful than solar from a land point of view as solar has the advantages of 1) extremely simple setup with no logistics required, and 2) zero pollution creation.
- bobingabout
- Smart Inserter
- Posts: 7352
- Joined: Fri May 09, 2014 1:01 pm
- Contact:
Re: [0.12.x][v0.12.1] Bob's Greenhouse mod
I've already made a few changes for the next release.
Greenhouse consumes 4x the power
basic-greenhouse-cycle gives 5 to 15 wood (listed as 10) instead of 5 to 25, and takes twice as long to complete
advanced-greenhouse-cycle takes a little longer to make too, but not as long as the basic.
Greenhouse consumes 4x the power
basic-greenhouse-cycle gives 5 to 15 wood (listed as 10) instead of 5 to 25, and takes twice as long to complete
advanced-greenhouse-cycle takes a little longer to make too, but not as long as the basic.
-
- Long Handed Inserter
- Posts: 67
- Joined: Wed Apr 02, 2014 9:06 am
- Contact:
Re: [0.12.x][v0.12.1] Bob's Greenhouse mod
excellent I just hope I'll be able to download those before the Sunday, I'm leaving for vacation and there's no internet connection on the cottage :/
Thank you for your work
Thank you for your work
- bobingabout
- Smart Inserter
- Posts: 7352
- Joined: Fri May 09, 2014 1:01 pm
- Contact:
Re: [0.12.x][v0.12.1] Bob's Greenhouse mod
Greenhouse 0.13.2:
* Made greenhouse more power hungry. (4x)
* Made the basic greenhouse tree growing recipe last longer and give less wood.
* Made the advanced recipe last a little longer too.
* Added active animation
* Made greenhouse more power hungry. (4x)
* Made the basic greenhouse tree growing recipe last longer and give less wood.
* Made the advanced recipe last a little longer too.
* Added active animation