I know only little how to make macros in Excel.
|
|
You can find many examples through Google. The very first result is a post from David Gainer's blog that uses Conway’s Game of Life to teach about circular reference formulas and iteration (no VBA involved): http://blogs.msdn.com/excel/archive/2007/11/02/iteration-conway-s-game-of-life.aspx |
|||
|
|
You will need two macros. The first one should format the game sheet so the cells are square. Have the user run this macro. After that she should enter a 1 for each cell that is alive. Use conditional formatting to turn the cell completely black (background = black if value != 0) Now have a second macro which calculates the next step in a background sheet (another sheet). Use relative cell positioning (relative to ActiveCell) and two nested loops. When this is done, copy all values from the background sheet to the game sheet. |
|||
|
|
|
Should have done this a long time ago but here's my version of Conway's Life in excel. You can download my version (with undo, save pattern, and configure logic features) at www.forkandbeard.co.uk. Here's a hack of the code. By no means a perfect solution (didn't spend an age on this) but you might be able to pick some bits out.
To get this to work just make the background of cell A1 black, the background of cell B1 white and then add some black backgrounds in the range C2:AM20 and run the ActionLogic method. |
|||
|
|
|
Search for it and look at their code. Plenty of people have made it a hobby to make full games in Excel. |
|||||||
|
|
Why do you say Excel is the wrong choice? I think Excel is the best way to solve this: Excel solves this with 1 line: IF(OR(SUM(B2:D4)-C3=3,AND(SUM(B2:D4)-C3=2,C3=1)),1,0) *where the above is an expression that returns the next generation value for the cell C3. Here's the demo: https://docs.google.com/open?id=0B4FcWULw3iQidlZSdG9GRDh0TXM If you're in a situation where you have to implement this sort of things from scratch, then functional programming is the best way to go. Otherwise, Excel works really well. Why? Because Excel is a system that forces you to enter only pure functions. You see, the key to simulating this Game of Life is to realize that each state of the cells is a PURE FUNCTION of the previous state. Excel naturally forces you to think this way. |
|||
|
|
|
Excel is definitely the wrong choice for this kind of a problem. As to how it would be possible: First learn about the game of life and then visual basic to use in Excel. |
|||||||
|
|
another tutorial on circular references in excel can be found here: http://chandoo.org/wp/2009/01/08/timestamps-excel-formula-help/ this one explains how you can insert timestamps using circular references. |
|||
|
|