Dautery91 / game-off-2019

MIT License
1 stars 2 forks source link

Improve "Electricity" System #82

Open Dautery91 opened 4 years ago

Dautery91 commented 4 years ago

In order to make a proper electricity system, need to be able to recreate boolean algebra. There are a few changes that will need to happen:

vjs22334 commented 4 years ago

is there a reason you want to use DFS over BFS? like do you want the activation for a generator to happen only in one direction? because that can still be done with BFS. I don't want a DFS as : 1 that method of searching intuitively doesn't really fit with how we want the tiles to activate. 2 the recursive calls of a DFS is heavy and too complicated for what we want to accomplish