1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
|
/****************************************************************************
**
** Copyright (C) 1992-2008 Trolltech ASA. All rights reserved.
**
** This file is part of an example program for TQt. This example
** program may be used, distributed and modified without limitation.
**
*****************************************************************************/
#include "qtetrix.h"
#include <ntqapplication.h>
#include <ntqlabel.h>
#include <ntqdatetime.h>
void drawTetrixButton( TQPainter *p, int x, int y, int w, int h,
const TQColor *color, TQWidget *widg)
{
if ( color ) {
TQPointArray a;
a.setPoints( 3, x,y+h-1, x,y, x+w-1,y );
p->setPen( color->light() );
p->drawPolyline( a );
a.setPoints( 3, x+1,y+h-1, x+w-1,y+h-1, x+w-1,y+1 );
p->setPen( color->dark() );
p->drawPolyline( a );
x++;
y++;
w -= 2;
h -= 2;
p->fillRect( x, y, w, h, *color );
}
else if(widg) {
widg->erase(x, y, w, h);
} else {
p->fillRect(x, y, w, h, p->backgroundColor());
}
}
ShowNextPiece::ShowNextPiece( TQWidget *parent, const char *name )
: TQFrame( parent, name )
{
setFrameStyle( TQFrame::Panel | TQFrame::Sunken );
xOffset = -1; // -1 until first resizeEvent.
}
void ShowNextPiece::resizeEvent( TQResizeEvent *e )
{
TQSize sz = e->size();
blockWidth = (sz.width() - 3)/5;
blockHeight = (sz.height() - 3)/6;
xOffset = (sz.width() - 3)/5;
yOffset = (sz.height() - 3)/6;
}
void ShowNextPiece::paintEvent( TQPaintEvent * )
{
TQPainter p( this );
drawFrame( &p );
p.end(); // explicit end() so any slots can paint too
emit update();
}
void ShowNextPiece::drawNextSquare(int x, int y,TQColor *color)
{
if (xOffset == -1) // Before first resizeEvent?
return;
TQPainter paint;
paint.begin(this);
drawTetrixButton( &paint, xOffset+x*blockWidth, yOffset+y*blockHeight,
blockWidth, blockHeight, color, this );
paint.end();
}
TQTetrix::TQTetrix( TQWidget *parent, const char *name )
: TQWidget( parent, name )
{
TQTime t = TQTime::currentTime();
TetrixPiece::setRandomSeed( (((double)t.hour())+t.minute()+t.second())/
(24+60+60) );
#define ADD_LABEL( str, x, y, w, h ) \
{ TQLabel *label = new TQLabel(str,this); \
label->setGeometry(x,y,w,h); \
label->setAlignment(AlignCenter|AlignVCenter); }
ADD_LABEL( "NEXT", 50, 10, 78, 30 );
ADD_LABEL( "SCORE", 330, 10, 178, 30 );
ADD_LABEL( "LEVEL", 50, 130, 78, 30 );
ADD_LABEL( "LINES REMOVED", 330, 130, 178, 30 );
board = new TQTetrixBoard(this);
showNext = new ShowNextPiece(this);
#ifndef QT_NO_LCDNUMBER
showScore = new TQLCDNumber(5,this);
showLevel = new TQLCDNumber(2,this);
showLines = new TQLCDNumber(5,this);
#else
showScore = new TQLabel("0",this);
showLevel = new TQLabel("0",this);
showLines = new TQLabel("0",this);
showScore->setAlignment(AlignCenter);
showLines->setAlignment(AlignCenter);
showLevel->setAlignment(AlignCenter);
showScore->setFrameStyle(TQFrame::Sunken|TQFrame::Box);
showLines->setFrameStyle(TQFrame::Sunken|TQFrame::Box);
showLevel->setFrameStyle(TQFrame::Sunken|TQFrame::Box);
#endif
quitButton = new TQPushButton("&Quit",this);
startButton = new TQPushButton("&New Game",this);
pauseButton = new TQPushButton("&Pause",this);
// Don't let the buttons get keyboard focus
quitButton->setFocusPolicy( TQWidget::NoFocus );
startButton->setFocusPolicy( TQWidget::NoFocus );
pauseButton->setFocusPolicy( TQWidget::NoFocus );
connect( board, SIGNAL(gameOverSignal()), SLOT(gameOver()) );
connect( board, SIGNAL(drawNextSquareSignal(int,int,TQColor*)), showNext,
SLOT(drawNextSquare(int,int,TQColor*)) );
connect( showNext, SIGNAL(update()), board, SLOT(updateNext()) );
#ifndef QT_NO_LCDNUMBER
connect( board, SIGNAL(updateScoreSignal(int)), showScore,
SLOT(display(int)) );
connect( board, SIGNAL(updateLevelSignal(int)), showLevel,
SLOT(display(int)));
connect( board, SIGNAL(updateRemovedSignal(int)), showLines,
SLOT(display(int)));
#else
connect( board, SIGNAL(updateScoreSignal(int)), showScore,
SLOT(setNum(int)) );
connect( board, SIGNAL(updateLevelSignal(int)), showLevel,
SLOT(setNum(int)));
connect( board, SIGNAL(updateRemovedSignal(int)), showLines,
SLOT(setNum(int)));
#endif
connect( startButton, SIGNAL(clicked()), board, SLOT(start()) );
connect( quitButton , SIGNAL(clicked()), SLOT(quit()));
connect( pauseButton, SIGNAL(clicked()), board, SLOT(pause()) );
board->setGeometry( 150, 20, 153, 333 );
showNext->setGeometry( 50, 40, 78, 94 );
showScore->setGeometry( 330, 40, 178, 93 );
showLevel->setGeometry( 50, 160, 78, 93 );
showLines->setGeometry( 330, 160, 178, 93 );
#ifndef QT_NO_LCDNUMBER
showScore->display( 0 );
showLevel->display( 0 );
showLines->display( 0 );
#else
showScore->setNum( 0 );
showLevel->setNum( 0 );
showLines->setNum( 0 );
#endif
startButton->setGeometry( 46, 288, 90, 30 );
quitButton->setGeometry( 370, 265, 90, 30 );
pauseButton->setGeometry( 370, 310, 90, 30 );
board->revealNextPiece(TRUE);
resize( 550, 370 );
}
void TQTetrix::gameOver()
{
}
void TQTetrix::quit()
{
qApp->quit();
}
|