File: scalpel_darts.h

package info (click to toggle)
scummvm 2.9.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 450,268 kB
  • sloc: cpp: 4,297,604; asm: 28,322; python: 12,901; sh: 11,219; java: 8,477; xml: 7,843; perl: 2,633; ansic: 2,465; yacc: 1,670; javascript: 1,020; makefile: 933; lex: 578; awk: 275; objc: 82; sed: 11; php: 1
file content (129 lines) | stat: -rw-r--r-- 3,212 bytes parent folder | download | duplicates (3)
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
/* ScummVM - Graphic Adventure Engine
 *
 * ScummVM is the legal property of its developers, whose names
 * are too numerous to list here. Please refer to the COPYRIGHT
 * file distributed with this source distribution.
 *
 * 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/>.
 *
 */

#ifndef SHERLOCK_SCALPEL_DARTS_H
#define SHERLOCK_SCALPEL_DARTS_H

#include "sherlock/image_file.h"

namespace Sherlock {

namespace Scalpel {

class ScalpelEngine;

class Darts {
private:
	ScalpelEngine *_vm;
	ImageFile *_dartImages;
	int _dartScore1, _dartScore2;
	int _roundNumber;
	int _level;
	int _computerPlayer;
	Common::String _opponent;
	bool _playerDartMode;
	int _roundScore;
	bool _oldDartButtons;

	/**
	 * Load the graphics needed for the dart game
	 */
	void loadDarts();

	/**
	 * Initializes the variables needed for the dart game
	 */
	void initDarts();

	/**
	 * Frees the images used by the dart game
	 */
	void closeDarts();

	/**
	 * Show the names of the people playing, Holmes and his opponent
	 */
	void showNames(int playerNum);

	/**
	 * Show the player score and game status
	 */
	void showStatus(int playerNum);

	/**
	 * Throws a single dart.
	 * @param dartNum	Dart number
	 * @param computer	0 = Player, 1 = 1st player computer, 2 = 2nd player computer
	 * @returns			Score for what dart hit
	 */
	int throwDart(int dartNum, int computer);

	/**
	 * Draw a dart moving towards the board
	 */
	void drawDartThrow(const Common::Point &pt);

	/**
	 * Erases the power bars
	 */
	void erasePowerBars();

	/**
	 * Show a gradually incrementing incrementing power that bar. If goToPower is provided, it will
	 * increment to that power level ignoring all keyboard input (ie. for computer throws).
	 * Otherwise, it will increment until either a key/mouse button is pressed, or it reaches the end
	 */
	int doPowerBar(const Common::Point &pt, byte color, int goToPower, bool isVertical);

	/**
	 * Returns true if a mouse button or key is pressed.
	 */
	int dartHit();

	/**
	 * Return the score of the given location on the dart-board
	 */
	int dartScore(const Common::Point &pt);

	/**
	 * Calculates where a computer player is trying to throw their dart, and choose the actual
	 * point that was hit with some margin of error
	 */
	Common::Point getComputerDartDest(int playerNum);

	/**
	 * Returns the center position for the area of the dartboard with a given number
	 */
	bool findNumberOnBoard(int aim, Common::Point &pt);
public:
	Darts(ScalpelEngine *vm);

	/**
	 * Main method for playing darts game
	 */
	void playDarts();
};

} // End of namespace Scalpel

} // End of namespace Sherlock

#endif