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 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550
|
/*
Bastet - tetris clone with embedded bastard block chooser
(c) 2005-2009 Federico Poloni <f.polonithirtyseven@sns.it> minus 37
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "Ui.hpp"
#include "BlockPosition.hpp"
#include "Config.hpp"
#include "BastetBlockChooser.hpp"
#include "BlockChooser.hpp"
#include <cstdio>
#include <cstdlib>
#include <boost/format.hpp>
#include <boost/foreach.hpp>
#include <boost/algorithm/string.hpp>
using namespace std;
using namespace boost;
namespace Bastet{
Score &operator +=(Score &a, const Score &b){
a.first+=b.first;
a.second+=b.second;
return a;
}
void voidendwin(){
endwin();
}
void PrepareUiGetch(){ ///gets ready for a getch() in the UI, i.e. empties the char buffer, sets blocking IO
nodelay(stdscr,TRUE);
while(getch()!=ERR);
nodelay(stdscr,FALSE);
}
BorderedWindow::BorderedWindow(int height, int width, int y, int x){
if(y==-1 || x==-1){
int screen_h, screen_w;
getmaxyx(stdscr,screen_h, screen_w);
if(y==-1)
y=(screen_h-height-2)/2-1;
if(x==-1)
x=(screen_w-width-2)/2-1;
}
_border=newwin(height+2,width+2,y,x);
_window=derwin(_border,height,width,1,1);
// wattrset(_border,COLOR_PAIR(21));
RedrawBorder();
}
BorderedWindow::~BorderedWindow(){
delwin(_window);
delwin(_border);
}
BorderedWindow::operator WINDOW*(){
return _window;
}
void BorderedWindow::RedrawBorder(){
box(_border,0,0);
wrefresh(_border);
}
int BorderedWindow::GetMinX(){
int y,x;
getbegyx(_border,y,x);
return x;
}
int BorderedWindow::GetMinY(){
int y,x;
getbegyx(_border,y,x);
return y;
}
int BorderedWindow::GetMaxX(){
int y,x;
getmaxyx(_border,y,x);
return GetMinX()+x;
}
int BorderedWindow::GetMaxY(){
int y,x;
getmaxyx(_border,y,x);
return GetMinY()+y;
}
void BorderedWindow::DrawDot(const Dot &d, Color c){
wattrset((WINDOW *)(*this),c);
mvwaddch(*this,d.y,2*d.x,' ');
mvwaddch(*this,d.y,2*d.x+1,' ');
}
Curses::Curses(){
if(initscr()==NULL){
fprintf(stderr,"bastet: error while initializing graphics (ncurses library).\n");
exit(1);
}
if(!has_colors()){
endwin();
fprintf(stderr,"bastet: no color support, sorry. Ask the author for a black and white version.");
exit(1);
}
/* Turn off cursor. */
curs_set(0);
atexit(voidendwin); /*make sure curses are properly stopped*/
/* Setup keyboard. We'd like to get each and every character, but
not to display them on the terminal. */
keypad(stdscr, TRUE);
nodelay(stdscr, TRUE);
nonl();
noecho();
cbreak();
start_color();
/* 1 - 16 is for blocks */
init_pair(1, COLOR_BLACK, COLOR_RED);
init_pair(2, COLOR_BLACK, COLOR_YELLOW);
init_pair(3, COLOR_BLACK, COLOR_GREEN);
init_pair(4, COLOR_BLACK, COLOR_CYAN);
init_pair(5, COLOR_BLACK, COLOR_MAGENTA);
init_pair(6, COLOR_BLACK, COLOR_BLUE);
init_pair(7, COLOR_BLACK, COLOR_WHITE);
/* 17 - ? is for other things */
init_pair(17, COLOR_RED, COLOR_BLACK); //points
init_pair(18, COLOR_YELLOW, COLOR_BLACK); //number of lines
init_pair(19, COLOR_GREEN, COLOR_BLACK); //level
init_pair(20, COLOR_YELLOW, COLOR_BLACK); //messages
init_pair(21, COLOR_WHITE, COLOR_BLACK); //window borders
init_pair(22, COLOR_WHITE, COLOR_BLACK); //end of line animation
/* Set random seed. */
srandom(time(NULL)+37);
}
Ui::Ui():
_level(0),
_wellWin(WellHeight,2*WellWidth),
_nextWin(5,14,_wellWin.GetMinY(),_wellWin.GetMaxX()+1),
_scoreWin(7,14,_nextWin.GetMaxY(),_nextWin.GetMinX())
{
BOOST_FOREACH(ColorWellLine &a, _colors)
a.assign(0);
}
Dot BoundingRect(const std::string &message){ //returns x and y of the minimal rectangle containing the given string
vector<string> splits;
split(splits,message,is_any_of("\n"));
size_t maxlen=0;
BOOST_FOREACH(string &s, splits){
maxlen=max(maxlen,s.size());
}
return (Dot){maxlen+1,splits.size()};
}
void Ui::MessageDialog(const std::string &message){
RedrawStatic();
Dot d=BoundingRect(message);
BorderedWindow w(d.y,d.x);
wattrset((WINDOW *)w,COLOR_PAIR(20));
mvwprintw(w,0,0,message.c_str());
w.RedrawBorder();
wrefresh(w);
PrepareUiGetch();
int ch;
do{
ch=getch();
}
while(ch!=' ' && ch!=13); //13=return key!=KEY_ENTER, it seems
}
std::string Ui::InputDialog(const std::string &message){
RedrawStatic();
Dot d=BoundingRect(message);
d.y+=3;
BorderedWindow w(d.y,d.x);
wattrset((WINDOW *)w,COLOR_PAIR(20));
mvwprintw(w,0,0,message.c_str());
w.RedrawBorder();
wrefresh(w);
PrepareUiGetch();
//nocbreak();
echo();
curs_set(1);
char buf[51];
mvwgetnstr(w,d.y-2,1,buf,50);
curs_set(0);
noecho();
return string(buf);
}
int Ui::KeyDialog(const std::string &message){
RedrawStatic();
Dot d=BoundingRect(message);
BorderedWindow w(d.y,d.x);
wattrset((WINDOW *)w,COLOR_PAIR(20));
mvwprintw(w,0,0,message.c_str());
w.RedrawBorder();
wrefresh(w);
PrepareUiGetch();
return getch();
}
int Ui::MenuDialog(const vector<string> &choices){
RedrawStatic();
size_t width=0;
BOOST_FOREACH(const string &s, choices){
width=max(width,s.size());
}
Dot d={width+5,choices.size()};
BorderedWindow w(d.y,d.x);
wattrset((WINDOW *)w,COLOR_PAIR(20));
for(size_t i=0;i<choices.size();++i){
mvwprintw(w,i,4,choices[i].c_str());
}
w.RedrawBorder();
wrefresh(w);
PrepareUiGetch();
size_t chosen=0;
int ch;
bool done=false;
mvwprintw(w,chosen,1,"-> ");
wrefresh(w);
do{
ch=getch();
switch(ch){
case KEY_UP:
if(chosen==0) break;
mvwprintw(w,chosen,1," ");
chosen--;
mvwprintw(w,chosen,1,"-> ");
wrefresh(w);
break;
case KEY_DOWN:
if(chosen==choices.size()-1) break;
mvwprintw(w,chosen,1," ");
chosen++;
mvwprintw(w,chosen,1,"-> ");
wrefresh(w);
break;
case 13: //ENTER
case ' ':
done=true;
break;
}
} while(!done);
return chosen;
}
void Ui::ChooseLevel(){
RedrawStatic();
int ch='0';
format fmt(" Get ready!\n"
" \n"
" Starting level = %1% \n"
" 0-9 to change\n"
" <SPACE> to start\n");
string msg;
while(ch!=' '){
msg=str(fmt % _level);
PrepareUiGetch();
Dot d=BoundingRect(msg );
BorderedWindow w(d.y,d.x);
wattrset((WINDOW *)w,COLOR_PAIR(20));
mvwprintw(w,0,0,msg.c_str());
w.RedrawBorder();
ch=getch();
switch(ch){
case '0'...'9':
_level=ch-'0';
}
}
assert(_level>=0 && _level<=9);
}
void Ui::RedrawStatic(){
erase();
wrefresh(stdscr);
_wellWin.RedrawBorder();
_nextWin.RedrawBorder();
_scoreWin.RedrawBorder();
wattrset((WINDOW*)_nextWin,COLOR_PAIR(17));
mvwprintw(_nextWin,0,0," Next block:");
wrefresh(_nextWin);
wattrset((WINDOW*)_scoreWin,COLOR_PAIR(17));
mvwprintw(_scoreWin,1,0,"Score:");
wattrset((WINDOW*)_scoreWin,COLOR_PAIR(18));
mvwprintw(_scoreWin,3,0,"Lines:");
wattrset((WINDOW*)_scoreWin,COLOR_PAIR(19));
mvwprintw(_scoreWin,5,0,"Level:");
wrefresh(_scoreWin);
}
//must be <1E+06, because it should fit into a timeval usec field(see man select)
static const boost::array<int,10> delay = {{999999, 770000, 593000, 457000, 352000, 271000, 208000, 160000, 124000, 95000}};
void Ui::DropBlock(BlockType b, Well *w){
fd_set in, tmp_in;
struct timeval time;
FD_ZERO(&in);
FD_SET(0,&in); //adds stdin
time.tv_sec=0;
time.tv_usec=delay[_level];
//assumes nodelay(stdscr,TRUE) has already been called
BlockPosition p;
RedrawWell(w,b,p);
Keys *keys=config.GetKeys();
while(1){ //break = tetromino locked
tmp_in=in;
int sel_ret=select(FD_SETSIZE,&tmp_in, NULL, NULL, &time);
if(sel_ret==0){ //timeout
if(!p.MoveIfPossible(Down,b,w))
break;
time.tv_sec=0;
time.tv_usec=delay[_level];
}
else{ //keypress
int ch=getch();
if(ch==keys->Left)
p.MoveIfPossible(Left,b,w);
else if(ch==keys->Right)
p.MoveIfPossible(Right,b,w);
else if(ch==keys->Down){
bool val=p.MoveIfPossible(Down,b,w);
if(val){
//_points++;
//RedrawScore();
time.tv_sec=0;
time.tv_usec=delay[_level];
}
else break;
}
else if(ch==keys->RotateCW)
p.MoveIfPossible(RotateCW,b,w);
else if(ch==keys->RotateCCW)
p.MoveIfPossible(RotateCCW,b,w);
else if(ch==keys->Drop){
p.Drop(b,w);
//_points+=2*fb.HardDrop(w);
//RedrawScore();
break;
}
else if(ch==keys->Pause){
MessageDialog("Press SPACE or ENTER to resume the game");
RedrawStatic();
RedrawWell(w,b,p);
nodelay(stdscr,TRUE);
}
else {} //default...
} //keypress switch
RedrawWell(w,b,p);
} //while(1)
LinesCompleted lc=w->Lock(b,p);
//locks also into _colors
BOOST_FOREACH(const Dot &d, p.GetDots(b))
if(d.y>=0)
_colors[d.y+2][d.x]=GetColor(b);
RedrawWell(w,b,p);
if(lc._completed.any()){
CompletedLinesAnimation(lc);
w->ClearLines(lc);
//clears also _colors
ColorWell::reverse_iterator it=lc.Clear(_colors.rbegin(),_colors.rend());
for(;it!=_colors.rend();++it){
it->assign(0);
}
int newlines=lc._completed.count();
if(( (_lines+newlines)/10 - _lines/10 !=0) && _level<9){
_level++;
}
_lines+=newlines;
switch(newlines){
case 1:
_points+=100;
break;
case 2:
_points+=300;
break;
case 3:
_points+=500;
break;
case 4:
_points+=800;
break;
}
RedrawScore();
}
}
void Ui::RedrawWell(const Well *w, BlockType b, const BlockPosition &p){
for(int i=0;i<WellWidth;++i)
for(int j=0;j<WellHeight;++j){
Dot d={i,j};
_wellWin.DrawDot(d,_colors[j+2][i]);
}
BOOST_FOREACH(const Dot &d, p.GetDots(b))
_wellWin.DrawDot(d,GetColor(b));
wrefresh(_wellWin);
}
void Ui::ClearNext(){
wmove((WINDOW*)_nextWin,1,0);
wclrtobot((WINDOW*)_nextWin);
wrefresh(_nextWin);
}
void Ui::RedrawNext(BlockType b){
wmove((WINDOW*)_nextWin,1,0);
wclrtobot((WINDOW*)_nextWin);
BlockPosition p((Dot){2,2});
BOOST_FOREACH(const Dot &d, p.GetDots(b))
_nextWin.DrawDot(d,GetColor(b));
wrefresh(_nextWin);
}
void Ui::RedrawScore(){
wattrset((WINDOW*)_scoreWin,COLOR_PAIR(17));
mvwprintw(_scoreWin,1,7,"%6d",_points);
wattrset((WINDOW*)_scoreWin,COLOR_PAIR(18));
mvwprintw(_scoreWin,3,7,"%6d",_lines);
wattrset((WINDOW*)_scoreWin,COLOR_PAIR(19));
mvwprintw(_scoreWin,5,7,"%6d",_level);
wrefresh(_scoreWin);
return;
}
void Ui::CompletedLinesAnimation(const LinesCompleted &completed){
wattrset((WINDOW*)_wellWin,COLOR_PAIR(22));
for(int i=0;i<6;++i){
for(int k=0;k<4;++k){
if(completed._completed[k]){
wmove(_wellWin,completed._baseY+k,0);
whline(_wellWin, i%2?' ':':',WellWidth*2);
}
wrefresh(_wellWin);
usleep(500000/6);
}
}
}
void Ui::Play(BlockChooser *bc){
_points=0;
_lines=0;
BOOST_FOREACH(ColorWellLine &a, _colors)
a.assign(0);
RedrawStatic();
RedrawScore();
Well w;
nodelay(stdscr,TRUE);
Queue q=bc->GetStartingQueue();
if(q.size()==1) //no block preview
ClearNext();
try{
while(true){
while(getch()!=ERR); //ignores the keys pressed during the next block calculation
BlockType current=q.front();
q.pop_front();
if(!q.empty()) RedrawNext(q.front());
DropBlock(current,&w);
q.push_back(bc->GetNext(&w,q));
}
} catch(GameOver &go){
}
return;
}
void Ui::HandleHighScores(difficulty_t diff){
HighScores *hs=config.GetHighScores(diff);
if(hs->Qualifies(_points)){
string name=InputDialog(" Congratulations! You got a high score \n Please enter your name");
hs->InsertHighScore(_points,name);
}else{
MessageDialog("You did not get into\n"
"the high score list!\n"
"\n"
" Try again!\n"
);
}
}
void Ui::ShowHighScores(difficulty_t diff){
HighScores *hs=config.GetHighScores(diff);
string allscores;
if(diff==difficulty_normal)
allscores+="**Normal difficulty**\n";
else if(diff==difficulty_hard)
allscores+="**Hard difficulty**\n";
format fmt("%-20.20s %8d\n");
for(HighScores::reverse_iterator it=hs->rbegin();it!=hs->rend();++it){
allscores+=str(fmt % it->Scorer % it->Score);
}
MessageDialog(allscores);
}
void Ui::CustomizeKeys(){
Keys *keys=config.GetKeys();
format fmt(
"Press the key you wish to use for:\n\n"
"%=1.34s\n\n");
keys->Down=KeyDialog(str(fmt % "move tetromino DOWN (soft-drop)"));
keys->Left=KeyDialog(str(fmt % "move tetromino LEFT"));
keys->Right=KeyDialog(str(fmt % "move tetromino RIGHT"));
keys->RotateCW=KeyDialog(str(fmt % "rotate tetromino CLOCKWISE"));
keys->RotateCCW=KeyDialog(str(fmt % "rotate tetromino COUNTERCLOCKWISE"));
keys->Drop=KeyDialog(str(fmt % "DROP tetromino (move down as much as possible immediately)"));
keys->Pause=KeyDialog(str(fmt % "PAUSE the game"));
}
}
|