Source Code (Use browser search to find items of interest.)

Class Index

katomic'Feld (./kdegames/katomic/feld.h:25)

class Feld : public QWidget
{
    Q_OBJECT

public:
    Feld (Molek *mol, QWidget *parent=0, const char *name=0);
    ~Feld ();

    enum Direction { None, MoveUp, MoveDown, MoveLeft, MoveRight };

    void startAnimation (Direction dir);
    void done ();

    void load (const KSimpleConfig& config);

signals:
    void gameOver(int moves);
    void sendMoves(int moves);

protected:
    bool checkDone();
    void timerEvent (QTimerEvent *);
    void paintEvent( QPaintEvent * );
    void mousePressEvent (QMouseEvent *);
    void mouseMoveEvent (QMouseEvent *);
    void keyPressEvent (QKeyEvent *);
    void emitStatus();

private:

    const atom& getAtom(uint index) const;
    void nextAtom();
    void previousAtom();

    void putNonAtom(int, int, Direction, bool brick = false);

    Highscore *high;

    QPoint *point;
    QPixmap data;
    QPixmap sprite;

    Molek *mol;

    uint feld[15][15];

    // number of movements
    int moves;

    Direction dir;
    int cx, cy;
    int xpos, ypos;
    int anz;
    int frames, framesbak;

    bool anim;
    bool chosen, moving;

    void resetValidDirs();

};

katomic'Feld::Feld() (./kdegames/katomic/feld.cpp:26)

Feld::Feld( Molek *_mol, QWidget *parent, const char *name ) :
  QWidget( parent, name )
{
  mol = _mol;
  anim = false;
  dir = None;
  sprite = QPixmap (30, 30);

  cx = -1;
  cy = -1;

  point = new QPoint [1];
  data = BarIcon("abilder");

  moving = false;
  chosen = false;

  setMouseTracking(true);

  setFocusPolicy(QWidget::StrongFocus);

}


katomic'Feld::~Feld() (./kdegames/katomic/feld.cpp:49)

Feld::~Feld ()
{
  delete [] point;
}


katomic'Feld::resetValidDirs() (./kdegames/katomic/feld.cpp:54)

void Feld::resetValidDirs()
{
  for (int j = 0; j < 15; j++)
    for (int i = 0; i < 15; i++)
      if (feld[i][j] >= 150 && feld[i][j] <= 153)
	{
	  feld[i][j] = 0;
	  putNonAtom(i,j, Feld::None);
	}
}


katomic'Feld::load() (./kdegames/katomic/feld.cpp:65)

void Feld::load (const KSimpleConfig& config)
{
  mol->load(config);

  QString key;

  for (int j = 0; j < 15; j++) {

    key.sprintf("feld_%02d", j);
    const QString line = config.readEntry(key);

    for (int i = 0; i < 15; i++)
	feld[i][j] = atom2int(line.at(i));

  }

  moves = 0;
  chosen = false;
  moving = false;

  xpos = ypos = 0;
  nextAtom();
}


katomic'Feld::mousePressEvent() (./kdegames/katomic/feld.cpp:89)

void Feld::mousePressEvent (QMouseEvent *e)
{
  if (moving)
    return;

  int x = e->pos ().x () / 30;
  int y = e->pos ().y () / 30;

  if ( feld [x] [y] == 150)
    startAnimation (Feld::MoveUp);
  else if ( feld [x] [y] == 151)
    startAnimation (Feld::MoveLeft);
  else if ( feld [x] [y] == 152)
    startAnimation (Feld::MoveDown);
  else if ( feld [x] [y] == 153)
    startAnimation (Feld::MoveRight);
  else if (feld [x] [y] != 254 && feld [x] [y] != 0) {
    chosen = true;
    xpos = x;
    ypos = y;
    dir = None;
    resetValidDirs();
  } else {
    resetValidDirs();
    chosen = false;
  }
  emitStatus();
}


katomic'Feld::keyPressEvent() (./kdegames/katomic/feld.cpp:118)

void Feld::keyPressEvent (QKeyEvent *e)
{
  // sorry to separate this from the switch-statement, but with the
  // Shift-modifier, e->key() is not equal Key_Tab (only & Key_Tab works)

  if ( e->state() & ShiftButton && e->key() & Key_Tab )
    previousAtom();
  else {

    switch (e->key())
      {
      case Qt::Key_Up:
        //CT later, when we make this configurable    case Feld::UpKey:
        if (feld [xpos] [ypos-1] == 150)
	  startAnimation(Feld::MoveUp);
        break;
      case Qt::Key_Down:
        // case Feld::DownKey:
        if (feld [xpos] [ypos+1] == 152)
	  startAnimation(Feld::MoveDown);
        break;
      case Qt::Key_Left:
        // case Feld::LeftKey:
        if (feld [xpos-1] [ypos] == 151)
	  startAnimation(Feld::MoveLeft);
        break;
      case Qt::Key_Right:
        // case Feld::DownKey:
        if (feld [xpos+1] [ypos] == 153)
	  startAnimation(Feld::MoveRight);
        break;
      case Qt::Key_Tab: {
	//CT this will do something in the future :-)
	nextAtom();
	break;
      }
      default:
	e->ignore();
      }
   }
}



katomic'Feld::getAtom() (./kdegames/katomic/feld.cpp:161)

const atom& Feld::getAtom(uint index) const
{
  return mol->getAtom(index);
}



katomic'Feld::nextAtom() (./kdegames/katomic/feld.cpp:167)

void Feld::nextAtom()
{
  int x = xpos, y;

  // make sure we don't check the current atom :-)
  if (ypos++ >= 15) ypos = 0;

  while(1)
    {
      for (y = ypos; y < 15; y++)
	{
	  if ( feld [x] [y] != 0 &&
	       feld [x] [y] != 254 &&
	       feld [x] [y] != 150 &&
	       feld [x] [y] != 151 &&
	       feld [x] [y] != 152 &&
	       feld [x] [y] != 153 )
	    {
	      xpos = x; ypos = y;
	      chosen = true;
	      resetValidDirs();
	      emitStatus();
	      return;
	    }
	}
      ypos = 0;
      x++;
      if (x >= 15) x = 0;
    }

}



katomic'Feld::previousAtom() (./kdegames/katomic/feld.cpp:200)

void Feld::previousAtom()
{
  int x = xpos, y;

  // make sure we don't check the current atom :-)
  if (ypos-- <= 0) ypos = 14;

  while(1)
    {
      for (y = ypos; y >= 0; y--)
	{
	  if ( feld [x] [y] != 0 &&
	       feld [x] [y] != 254 &&
	       feld [x] [y] != 150 &&
	       feld [x] [y] != 151 &&
	       feld [x] [y] != 152 &&
	       feld [x] [y] != 153 )
	    {
	      xpos = x; ypos = y;
	      chosen = true;
	      resetValidDirs();
	      emitStatus();
	      return;
	    }
	}
      ypos = 14;
      x--;
      if (x <= 0) x = 14;
    }
}



katomic'Feld::emitStatus() (./kdegames/katomic/feld.cpp:232)

void Feld::emitStatus()
{
  if (!chosen || moving) {}
  else {

    if (feld[xpos][ypos-1] == 0) {
      feld [xpos][ypos-1] = 150;
      putNonAtom(xpos, ypos-1, Feld::MoveUp);
    }

    if (feld[xpos][ypos+1] == 0) {
      feld [xpos][ypos+1] = 152;
      putNonAtom(xpos, ypos+1, Feld::MoveDown);
    }

    if (feld[xpos-1][ypos] == 0) {
      feld [xpos-1][ypos] = 151;
      putNonAtom(xpos-1, ypos, Feld::MoveLeft);
    }

    if (feld[xpos+1][ypos] == 0) {
      feld [xpos+1][ypos] = 153;
      putNonAtom(xpos+1, ypos, Feld::MoveRight);
    }

  }
}


katomic'Feld::done() (./kdegames/katomic/feld.cpp:260)

void Feld::done ()
{
  if (moving)
    return;

  emitStatus();

  if (checkDone())
    emit gameOver(moves);

}


katomic'Feld::startAnimation() (./kdegames/katomic/feld.cpp:272)

void Feld::startAnimation (Direction d)
{
  // wenn bereits animation stattfindet, nix machen
  if (moving || !chosen)
    return;

  // reset validDirs now so that arrows don't get drawn
  resetValidDirs();

  int x = 0, y = 0;

  moves++;
  emit sendMoves(moves);
  dir = d;

  switch (dir) {
  case MoveUp :
    for (x = xpos, y = ypos, anz = 0; feld [x] [--y] == 0; anz++);
    if (anz != 0)
      {
	feld [x] [++y] = feld [xpos] [ypos];
      }
    break;
  case MoveDown :
    for (x = xpos, y = ypos, anz = 0; feld [x] [++y] == 0; anz++);
    if (anz != 0)
      {
	feld [x] [--y] = feld [xpos] [ypos];
      }
    break;
  case MoveRight :
    for (x = xpos, y = ypos, anz = 0; feld [++x] [y] == 0; anz++);
    if (anz != 0)
      {
	feld [--x] [y] = feld [xpos] [ypos];
      }
    break;
  case MoveLeft :
    for (x = xpos, y = ypos, anz = 0; feld [--x] [y] == 0; anz++);
    if (anz != 0)
      {
	feld [++x] [y] = feld [xpos] [ypos];
      }
    break;
  default:
    return;
  }

  if (anz != 0) {
    moving = true;
    feld [xpos] [ypos] = 0;

    // absolutkoordinaten des zu verschiebenden bildes
    cx = xpos * 30;
    cy = ypos * 30;
    xpos = x;
    ypos = y;
    // 30 animationsstufen
    framesbak = frames = anz * 30;

    // 10 mal pro sek
    startTimer (10);

    bitBlt (&sprite, 0, 0, this, cx, cy, 30, 30, CopyROP);
  }

}




katomic'Feld::mouseMoveEvent() (./kdegames/katomic/feld.cpp:342)

void Feld::mouseMoveEvent (QMouseEvent *e)
{
  int x = e->pos ().x () / 30;
  int y = e->pos ().y () / 30;

  // verschiedene cursor je nach pos
  if (feld[x][y] != 254 && feld [x] [y] != 0)
    setCursor (crossCursor);
  else
    setCursor (arrowCursor);

}



katomic'Feld::checkDone() (./kdegames/katomic/feld.cpp:356)

bool Feld::checkDone ()
{
  for (int i = 0; i < 15 - mol->molecSize().width(); i++)
  for (int j = 0; j < 15 - mol->molecSize().height(); j++)
  {
    bool done = true;
    if (feld [i] [j] == mol->getAtom(0,0))        // gleich links oben
    {
      for (int xx = 0; xx < mol->molecSize().width(); xx++)
      for (int yy = 0; yy < mol->molecSize().height(); yy++)
      {
        // ersten 3 bytes des strukturelements vergleichen (obj, verb)
        if (mol->getAtom(xx, yy) != 0 && feld [i + xx ] [j + yy] != mol->getAtom(xx, yy) && feld[i + xx ] [j + yy] != 254)
          done = false;
      }
      if (done)
        return true;
    }
  }

  return false;
}



katomic'Feld::timerEvent() (./kdegames/katomic/feld.cpp:380)

void Feld::timerEvent (QTimerEvent *)
{
  // animation beenden
  if (frames <= 0)
  {
    moving = false;
    killTimers ();
    done();
    dir = None;
  }
  else
  {
    frames -= settings.anim_speed;
    if (frames < 0)
	frames = 0;

    repaint (false);
  }
}


katomic'Feld::putNonAtom() (./kdegames/katomic/feld.cpp:400)

void Feld::putNonAtom (int x, int y, Direction which, bool brick)
{
  int xarr=0, yarr=0;
  switch (which)
    {
    case Feld::None      : xarr = 279, yarr = 31 * (brick?1:2); break;
    case Feld::MoveUp    : xarr = 248; yarr = 62; break;
    case Feld::MoveLeft  : xarr = 217; yarr = 93; break;
    case Feld::MoveDown  : xarr = 248; yarr = 93; break;
    case Feld::MoveRight : xarr = 279; yarr = 93; break;
    }

  bitBlt(this, x * 30, y * 30, &data, xarr, yarr, 30, 30, CopyROP);
}


katomic'Feld::paintEvent() (./kdegames/katomic/feld.cpp:415)

void Feld::paintEvent( QPaintEvent * )
{
    int i, j, x, y, a = settings.anim_speed;

    QPainter paint ( this );

    paint.setPen (black);

    if (moving) {
	switch (dir) {
	case MoveUp :
	  bitBlt (this, cx, cy - framesbak + frames, &sprite, CopyROP);
	  if ( (framesbak - frames > 1)  )
	    paint.eraseRect (cx, cy - framesbak + frames + 30, 30, a+1);
	  break;
	case MoveDown :
	  bitBlt (this, cx, cy + (framesbak - frames), &sprite, CopyROP);
	  if ( (framesbak - frames > 1) )
	    paint.eraseRect (cx,
			     cy + (framesbak - frames) - a-1, 30, a+1);
	  break;
	case MoveRight :
	  bitBlt (this, cx + (framesbak - frames), cy, &sprite, CopyROP);
	  if ( (framesbak - frames > 1) )
	    paint.eraseRect (cx + (framesbak - frames) - a - 1, cy, a + 1, 30);
	  break;
	case MoveLeft :
	  bitBlt (this, cx - framesbak + frames, cy, &sprite, CopyROP);
	  if ((framesbak - frames > 1))
	    paint.eraseRect (cx - framesbak + frames + 30, cy, a + 1, 30);
	  break;
	default:
	  return;
	
	}
	
    } else {
	
	// spielfeld gleich zeichnen
	
	for (i = 0; i < 15; i++)
	    for (j = 0; j < 15; j++)
		{
		    x = i * 30;
		    y = j * 30;
		
		    // zeichnet Randstücke
		    if (feld [i] [j] == 254) {
		      putNonAtom(i, j, Feld::None, true); continue;
		    }

		    if (feld[i][j] == 150) {
		      putNonAtom(i, j, Feld::MoveUp); continue;
		    }

		    if (feld[i][j] == 151) {
		      putNonAtom(i, j, Feld::MoveLeft); continue;
		    }
		    if (feld[i][j] == 152) {
		      putNonAtom(i, j, Feld::MoveDown); continue;
		    }
		
		    if (feld[i][j] == 153) {
		      putNonAtom(i, j, Feld::MoveRight); continue;
		    }

		    // zeichnet Atome
		    if (getAtom(feld [i] [j]).obj <= '9' && getAtom(feld [i] [j]).obj > '0')
			{
			    bitBlt (this, x, y, &data, (getAtom(feld [i] [j]).obj - '1') * 31, 0, 30,
				    30, CopyROP);
			}

		    // zeichnet Kristalle
		    if (getAtom(feld [i] [j]).obj == 'o')
			{
			    bitBlt (this, x, y, &data, 31, 93, 30, 30, CopyROP);
			}


		
		    // verbindungen zeichnen
		    if (getAtom(feld [i] [j]).obj <= '9' ||
			getAtom(feld [i] [j]).obj == 'o')
			for (int c = 0; c < MAX_CONNS_PER_ATOM; c++) {
			    char conn = getAtom(feld [i] [j]).conn[c];
			    if (!conn)
				break;
			
			    if (conn >= 'a' && conn <= 'a' + 8)
				bitBlt (this, x, y,
					&data, (conn - 'a') * 31, 31, 30, 30,
					XorROP);
			    else
				bitBlt (this, x, y,
					&data, (conn - 'A') * 31, 62, 30, 30,
					XorROP);
			
			}
		
		    // zeichnet Verbindungsstäbe
		    if (getAtom(feld [i] [j]).obj >= 'A' &&
			getAtom(feld [i] [j]).obj <= 'F')
			bitBlt (this, x, y,
				&data,
				(getAtom(feld [i] [j]).obj - 'A' + 2) * 31 ,
				93, 30, 30,
				CopyROP);
		}
    }
    paint.end ();
}