How can I make random variations?

Place to get help with not working mods / modding interface.
thenameipicked
Burner Inserter
Burner Inserter
Posts: 13
Joined: Wed Mar 15, 2017 12:36 am
Contact:

How can I make random variations?

Post by thenameipicked »

I had a mod idea, but as I've been writing it, I'm realizing more and more that this isn't possible.

The initial idea was to make random variations of different types of entities. For example, I would change the bounding box of various items so that they have different sizes, or I would change ratios on different recipes. This would force people to come up with new layouts.

However, the problem is that math.random() is deterministic, and at the data.lua stage, it is always seeded to the same value. This means that the variations I generate are always the same.

This makes sense, though: You don't want different prototypes every time you load the game, because you may want to load an existing game, which means that the prototypes should stay the same.

However, control.lua is too late: most of the properties I want to set are readonly. Bounding box is readonly, and all of the prototypes are readonly, and I don't see a way to reload a new prototype.

As it stands, the only way I see this being possible is by launching 5 different versions of the same mod, where each one calls math.random() a different number of times at the start, forcing the variations to be different.

Is there any other way to create random variations?
sparr
Smart Inserter
Smart Inserter
Posts: 1463
Joined: Fri Feb 14, 2014 5:52 pm
Contact:

Re: How can I make random variations?

Post by sparr »

You would not want to randomize things in data.raw on starting the game. Every existing entity of the given type would change to the new parameters.
thenameipicked
Burner Inserter
Burner Inserter
Posts: 13
Joined: Wed Mar 15, 2017 12:36 am
Contact:

Re: How can I make random variations?

Post by thenameipicked »

sparr wrote:You would not want to randomize things in data.raw on starting the game. Every existing entity of the given type would change to the new parameters.
That's exactly what I want (except seeded by the initial game seed).

I understand that prototypes are already finalized by that point in time, so I'm looking for workarounds.
sparr
Smart Inserter
Smart Inserter
Posts: 1463
Joined: Fri Feb 14, 2014 5:52 pm
Contact:

Re: How can I make random variations?

Post by sparr »

A long time ago before inserters were configurable via the modding api, someone made a configurable inserter mod that involved having hundreds of different pre-configured entities and a GUI to smoothly switch between them.

Maybe you could pre-generate some dozens of variations, and then just pick between them in the background at runtime?
thenameipicked
Burner Inserter
Burner Inserter
Posts: 13
Joined: Wed Mar 15, 2017 12:36 am
Contact:

Re: How can I make random variations?

Post by thenameipicked »

Hmm....I don't think that'd play nice with other mods, but I think that'll work.

Thanks!
Post Reply

Return to “Modding help”