#pragma hdrstop
#endif
-// for all others, include the necessary headers
+// for all others, include the necessary headers
#ifndef WX_PRECOMP
#include "wx/wx.h"
#endif
EVT_MENU (ID_ABOUT, LifeFrame::OnMenu)
EVT_MENU (ID_EXIT, LifeFrame::OnMenu)
EVT_COMMAND_SCROLL (ID_SLIDER, LifeFrame::OnSlider)
-END_EVENT_TABLE()
+END_EVENT_TABLE()
BEGIN_EVENT_TABLE(LifeCanvas, wxScrolledWindow)
EVT_PAINT ( LifeCanvas::OnPaint)
EVT_SIZE ( LifeCanvas::OnSize)
EVT_MOUSE_EVENTS ( LifeCanvas::OnMouse)
-END_EVENT_TABLE()
+END_EVENT_TABLE()
BEGIN_EVENT_TABLE(LifeNewGameDialog, wxDialog)
EVT_BUTTON (wxID_OK, LifeNewGameDialog::OnOK)
m_cellsize - 1);
}
}
-
+
// event handlers
void LifeCanvas::OnPaint(wxPaintEvent& event)
{
h = upd.GetH();
CalcUnscrolledPosition(x, y, &xx, &yy);
- dc.Blit(x, y, w, h, &memdc, xx - m_xoffset, yy - m_yoffset);
+ dc.Blit(x, y, w, h, &memdc, xx - m_xoffset, yy - m_yoffset);
upd++;
}
// --------------------------------------------------------------------------
Life::Life(int width, int height)
-{
+{
Create(width, height);
}
bool Life::NextTic()
{
long changed = 0;
+ int i, j;
/* 1st pass. Find and mark deaths and births for this generation.
*
* An organism with >= 4 neighbors will die due to starvation.
* New organisms are born in cells with exactly 3 neighbors.
*/
- for (int j = 0; j < m_height; j++)
- for (int i = 0; i < m_width; i++)
+ for (j = 0; j < m_height; j++)
+ for (i = 0; i < m_width; i++)
{
int neighbors = GetNeighbors(i, j);
bool alive = IsAlive(i, j);
(alive && (neighbors <= 1 || neighbors >= 4)))
m_cells[j * m_width + i] |= CELL_MARK;
else
- m_cells[j * m_width + i] &= ~CELL_MARK;
+ m_cells[j * m_width + i] &= ~CELL_MARK;
}
/* 2nd pass. Stabilize.
*/
- for (int j = 0; j < m_height; j++)
- for (int i = 0; i < m_width; i++)
+ for (j = 0; j < m_height; j++)
+ for (i = 0; i < m_width; i++)
{
/* Toggle CELL_ALIVE for those cells marked in the
* previous pass. Do not clear the CELL_MARK bit yet;
if (IsAlive(x, y)) neighbors--;
return neighbors;
-}
+}
void Life::SetCell(int x, int y, Cell status)
{