You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdegames/kenolaba/Spy.cpp

156 lines
3.5 KiB

/* Class Spion
*
* Josef Weidendorfer, 10/97
*/
#include <tqgroupbox.h>
#include <tqlayout.h>
#include <tqlabel.h>
#include <tdelocale.h>
#include <tdeapplication.h>
#include "BoardWidget.h"
#include "Spy.h"
Spy::Spy(Board& b)
:board(b)
{
int i;
top = new TQVBoxLayout(this, 5);
TQLabel *l = new TQLabel(this);
l->setText( i18n("Actual examined position:") );
l->setFixedHeight( l->sizeHint().height() );
l->setAlignment( AlignVCenter | AlignLeft );
top->addWidget( l );
TQHBoxLayout* b1 = new TQHBoxLayout();
top->addLayout( b1, 10 );
for(i=0;i<BoardCount;i++) {
TQVBoxLayout *b2 = new TQVBoxLayout();
b1->addLayout( b2 );
actBoard[i] = new BoardWidget(board,this);
actLabel[i] = new TQLabel(this);
actLabel[i]->setText("---");
// actLabel[i]->setFrameStyle( TQFrame::Panel | TQFrame::Sunken );
actLabel[i]->setAlignment( AlignHCenter | AlignVCenter);
actLabel[i]->setFixedHeight( actLabel[i]->sizeHint().height() );
b2->addWidget( actBoard[i] );
b2->addWidget( actLabel[i] );
connect( actBoard[i], TQT_SIGNAL(mousePressed()), this, TQT_SLOT(nextStep()) );
}
l = new TQLabel(this);
l->setText( i18n("Best move so far:") );
l->setFixedHeight( l->sizeHint().height() );
l->setAlignment( AlignVCenter | AlignLeft );
top->addWidget( l );
b1 = new TQHBoxLayout();
top->addLayout( b1, 10 );
for(i=0;i<BoardCount;i++) {
TQVBoxLayout *b2 = new TQVBoxLayout();
b1->addLayout( b2 );
bestBoard[i] = new BoardWidget(board,this);
bestLabel[i] = new TQLabel(this);
bestLabel[i]->setText("---");
// bestLabel[i]->setFrameStyle( TQFrame::Panel | TQFrame::Sunken );
bestLabel[i]->setAlignment( AlignHCenter | AlignVCenter);
bestLabel[i]->setFixedHeight( bestLabel[i]->sizeHint().height() );
b2->addWidget( bestBoard[i] );
b2->addWidget( bestLabel[i] );
connect( bestBoard[i], TQT_SIGNAL(mousePressed()), this, TQT_SLOT(nextStep()) );
}
connect( &board, TQT_SIGNAL(update(int,int,Move&,bool)),
this, TQT_SLOT(update(int,int,Move&,bool)) );
connect( &board, TQT_SIGNAL(updateBest(int,int,Move&,bool)),
this, TQT_SLOT(updateBest(int,int,Move&,bool)) );
top->activate();
setCaption(i18n("Spy"));
// KWM::setDecoration(winId(), 2);
resize(500,300);
}
void Spy::keyPressEvent(TQKeyEvent *)
{
nextStep();
}
void Spy::nextStep()
{
next = true;
}
void Spy::clearActBoards()
{
for(int i=0;i<BoardCount;i++) {
actBoard[i]->clearPosition();
actBoard[i]->draw();
actLabel[i]->setText("---");
}
}
void Spy::update(int depth, int value, Move& m, bool wait)
{
next = false;
if (depth>BoardCount-1) return;
actBoard[depth]->showMove(m,3);
// actBoard[depth]->showMove(m,0,false);
if (!wait) {
actLabel[depth]->setText("---");
return;
}
if (depth<BoardCount-1) {
board.playMove(m);
actBoard[depth+1]->updatePosition(true);
actLabel[depth+1]->setNum(value);
board.takeBack();
if (depth<BoardCount-2) {
actBoard[depth+2]->clearPosition();
actBoard[depth+2]->draw();
}
}
while(!next)
kapp->processEvents();
}
void Spy::updateBest(int depth, int value, Move& m, bool cutoff)
{
if (depth>BoardCount-1) return;
bestBoard[depth]->showMove(m,3);
// board.showMove(m,0);
if (depth<BoardCount-1) {
board.playMove(m);
bestBoard[depth+1]->updatePosition(true);
TQString tmp;
tmp.setNum(value);
if (cutoff) tmp += " (CutOff)";
bestLabel[depth+1]->setText(tmp);
board.takeBack();
}
}
#include "Spy.moc"