Add in game board view.
Add in experimental OpenGL test to see if possible to use OpenGL as part of checkboard drawing.
This commit is contained in:
parent
1079aca0bd
commit
f9468b0562
|
@ -313,17 +313,13 @@ class Board(object):
|
||||||
# TODO: Implement the suicide game setup.
|
# TODO: Implement the suicide game setup.
|
||||||
pass
|
pass
|
||||||
|
|
||||||
# /**
|
|
||||||
# * Returns a string to represent the board state. This string is formatted
|
|
||||||
# * for use as a simple board display in the command window.
|
|
||||||
# *
|
|
||||||
# * <b>Legend</b> ## - White space which the piece can not move on to. __ -
|
|
||||||
# * An empty space. LP - A light pawn. LK - A light king. DP - A dark pawn.
|
|
||||||
# * DK - A dark king.
|
|
||||||
# *
|
|
||||||
# * @return A string representing the current board state.
|
|
||||||
# */
|
|
||||||
def __str__(self):
|
def __str__(self):
|
||||||
|
"""
|
||||||
|
Override __str__ to get back an elegant unicode representation of the board.
|
||||||
|
|
||||||
|
:returns: A text representation of the current state of the board.
|
||||||
|
"""
|
||||||
|
# TODO Fix up string building setup. Separate into smaller component functions.
|
||||||
|
|
||||||
# Prepare for output with a nice looking to banner.
|
# Prepare for output with a nice looking to banner.
|
||||||
output = " "
|
output = " "
|
||||||
|
@ -350,7 +346,7 @@ class Board(object):
|
||||||
else:
|
else:
|
||||||
output = u'{}{} '.format(output, row + 1)
|
output = u'{}{} '.format(output, row + 1)
|
||||||
|
|
||||||
# // Get current row's state.
|
# Get current row's state.
|
||||||
for col in xrange(0, self.board_size):
|
for col in xrange(0, self.board_size):
|
||||||
output = output + output_atom[self._board[row][col]]
|
output = output + output_atom[self._board[row][col]]
|
||||||
|
|
||||||
|
|
|
@ -1,405 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
||||||
android:id="@+id/screen_root"
|
|
||||||
android:background="@drawable/backdrop"
|
|
||||||
android:layout_width="fill_parent"
|
|
||||||
android:layout_height="fill_parent">
|
|
||||||
|
|
||||||
<ImageView android:id="@+id/app_logo"
|
|
||||||
android:background="#DDFFFFFF"
|
|
||||||
android:layout_width="fill_parent"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:padding="5dip"
|
|
||||||
android:src="@drawable/logo" />
|
|
||||||
|
|
||||||
|
|
||||||
<TableLayout android:id="@+id/game_board"
|
|
||||||
android:layout_below="@id/app_logo"
|
|
||||||
android:layout_centerVertical="true"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_margin="5dip">
|
|
||||||
|
|
||||||
<TableRow android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content">
|
|
||||||
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/non_play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/non_play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/non_play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/non_play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/play" />
|
|
||||||
|
|
||||||
</TableRow>
|
|
||||||
<TableRow android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content">
|
|
||||||
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/non_play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/non_play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/non_play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/non_play" />
|
|
||||||
|
|
||||||
</TableRow>
|
|
||||||
<TableRow android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content">
|
|
||||||
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/non_play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/non_play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/non_play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/non_play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/play" />
|
|
||||||
|
|
||||||
</TableRow>
|
|
||||||
<TableRow android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content">
|
|
||||||
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/non_play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/non_play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/non_play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/non_play" />
|
|
||||||
|
|
||||||
</TableRow>
|
|
||||||
<TableRow android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content">
|
|
||||||
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/non_play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/non_play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/non_play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/non_play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/play" />
|
|
||||||
|
|
||||||
</TableRow>
|
|
||||||
<TableRow android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content">
|
|
||||||
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/non_play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/non_play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/non_play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/non_play" />
|
|
||||||
|
|
||||||
</TableRow>
|
|
||||||
<TableRow android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content">
|
|
||||||
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/non_play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/non_play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/non_play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/non_play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/play" />
|
|
||||||
|
|
||||||
</TableRow>
|
|
||||||
<TableRow android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content">
|
|
||||||
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/non_play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/non_play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/non_play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/non_play" />
|
|
||||||
</TableRow>
|
|
||||||
</TableLayout>
|
|
||||||
|
|
||||||
<TableLayout android:id="@+id/player_captured_pieces"
|
|
||||||
android:background="#DDFFFFFF"
|
|
||||||
android:layout_below="@+id/app_logo"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_margin="5dip"
|
|
||||||
android:layout_toRightOf="@+id/game_board"
|
|
||||||
android:layout_width="wrap_content">
|
|
||||||
|
|
||||||
<TableRow android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content">
|
|
||||||
|
|
||||||
<TextView android:id="@+id/opposing_player_label"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:padding="5dip"
|
|
||||||
android:text="@string/template_opposing_player"
|
|
||||||
android:textColor="#FF000000"/>
|
|
||||||
|
|
||||||
<ImageView android:id="@+id/opposing_player_king"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/defend_king" />
|
|
||||||
|
|
||||||
<TextView android:id="@+id/opposing_player_king_captured"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:textColor="#FF000000"
|
|
||||||
android:text="@string/template_capture_amounts" />
|
|
||||||
|
|
||||||
<ImageView android:id="@+id/opposing_player_pawn"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/defend_pawn" />
|
|
||||||
|
|
||||||
<TextView android:id="@+id/opposing_player_pawn_captured"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:textColor="#FF000000"
|
|
||||||
android:text="@string/template_capture_amounts" />
|
|
||||||
|
|
||||||
|
|
||||||
</TableRow>
|
|
||||||
</TableLayout>
|
|
||||||
<TableLayout android:id="@+id/opponent_captured_pieces"
|
|
||||||
android:background="#DDFFFFFF"
|
|
||||||
android:layout_below="@id/player_captured_pieces"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_margin="5dip"
|
|
||||||
android:layout_toRightOf="@+id/game_board"
|
|
||||||
android:layout_width="wrap_content">
|
|
||||||
<TableRow
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content">
|
|
||||||
|
|
||||||
<TextView android:id="@+id/current_player_label"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:text="@string/template_current_player"
|
|
||||||
android:textColor="#FF000000" android:padding="5dip"/>
|
|
||||||
|
|
||||||
<ImageView android:id="@+id/current_player_king"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/attack_king" />
|
|
||||||
|
|
||||||
<TextView android:id="@+id/current_player_king_captured"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:textColor="#FF000000"
|
|
||||||
android:text="@string/template_capture_amounts" />
|
|
||||||
|
|
||||||
<ImageView android:id="@+id/current_player_pawn"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/attack_pawn" />
|
|
||||||
|
|
||||||
<TextView android:id="@+id/current_player_pawn_captured"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:textColor="#FF000000"
|
|
||||||
android:text="@string/template_capture_amounts" />
|
|
||||||
|
|
||||||
</TableRow>
|
|
||||||
</TableLayout>
|
|
||||||
|
|
||||||
</RelativeLayout>
|
|
|
@ -1,407 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
||||||
android:id="@+id/screen_root"
|
|
||||||
android:background="@drawable/backdrop"
|
|
||||||
android:gravity="center_horizontal"
|
|
||||||
android:layout_width="fill_parent"
|
|
||||||
android:layout_height="fill_parent">
|
|
||||||
|
|
||||||
<ImageView android:id="@+id/app_logo"
|
|
||||||
android:background="#DDFFFFFF"
|
|
||||||
android:layout_width="fill_parent"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:padding="5dip"
|
|
||||||
android:src="@drawable/logo" />
|
|
||||||
|
|
||||||
<TableLayout android:id="@+id/game_board"
|
|
||||||
android:layout_centerInParent="true"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_margin="5dip">
|
|
||||||
|
|
||||||
<TableRow android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content">
|
|
||||||
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/non_play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/non_play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/non_play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/non_play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/play" />
|
|
||||||
|
|
||||||
</TableRow>
|
|
||||||
<TableRow android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content">
|
|
||||||
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/non_play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/non_play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/non_play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/non_play" />
|
|
||||||
|
|
||||||
</TableRow>
|
|
||||||
<TableRow android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content">
|
|
||||||
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/non_play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/non_play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/non_play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/non_play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/play" />
|
|
||||||
|
|
||||||
</TableRow>
|
|
||||||
<TableRow android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content">
|
|
||||||
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/non_play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/non_play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/non_play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/non_play" />
|
|
||||||
|
|
||||||
</TableRow>
|
|
||||||
<TableRow android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content">
|
|
||||||
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/non_play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/non_play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/non_play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/non_play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/play" />
|
|
||||||
|
|
||||||
</TableRow>
|
|
||||||
<TableRow android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content">
|
|
||||||
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/non_play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/non_play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/non_play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/non_play" />
|
|
||||||
|
|
||||||
</TableRow>
|
|
||||||
<TableRow android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content">
|
|
||||||
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/non_play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/non_play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/non_play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/non_play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/play" />
|
|
||||||
|
|
||||||
</TableRow>
|
|
||||||
<TableRow android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content">
|
|
||||||
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/non_play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/non_play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/non_play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/play" />
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/non_play" />
|
|
||||||
|
|
||||||
</TableRow>
|
|
||||||
|
|
||||||
</TableLayout>
|
|
||||||
|
|
||||||
<TableLayout android:id="@+id/player_captured_pieces"
|
|
||||||
android:background="#DDFFFFFF"
|
|
||||||
android:layout_below="@+id/game_board"
|
|
||||||
android:layout_centerHorizontal="true"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_margin="5dip"
|
|
||||||
android:layout_width="wrap_content">
|
|
||||||
|
|
||||||
<TableRow android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content">
|
|
||||||
|
|
||||||
<TextView android:id="@+id/opposing_player_label"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:padding="5dip"
|
|
||||||
android:text="@string/template_opposing_player"
|
|
||||||
android:textColor="#FF000000"/>
|
|
||||||
|
|
||||||
<ImageView android:id="@+id/opposing_player_king"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/defend_king" />
|
|
||||||
|
|
||||||
<TextView android:id="@+id/opposing_player_king_captured"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:textColor="#FF000000"
|
|
||||||
android:text="@string/template_capture_amounts" />
|
|
||||||
|
|
||||||
<ImageView android:id="@+id/opposing_player_pawn"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/defend_pawn" />
|
|
||||||
|
|
||||||
<TextView android:id="@+id/opposing_player_pawn_captured"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:textColor="#FF000000"
|
|
||||||
android:text="@string/template_capture_amounts" />
|
|
||||||
|
|
||||||
|
|
||||||
</TableRow>
|
|
||||||
</TableLayout>
|
|
||||||
<TableLayout android:id="@+id/opponent_captured_pieces"
|
|
||||||
android:background="#DDFFFFFF"
|
|
||||||
android:layout_below="@id/player_captured_pieces"
|
|
||||||
android:layout_centerHorizontal="true"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_margin="5dip"
|
|
||||||
android:layout_width="wrap_content">
|
|
||||||
|
|
||||||
<TableRow
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content">
|
|
||||||
|
|
||||||
<TextView android:id="@+id/current_player_label"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:text="@string/template_current_player"
|
|
||||||
android:textColor="#FF000000" android:padding="5dip"/>
|
|
||||||
|
|
||||||
<ImageView android:id="@+id/current_player_king"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/attack_king" />
|
|
||||||
|
|
||||||
<TextView android:id="@+id/current_player_king_captured"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:textColor="#FF000000"
|
|
||||||
android:text="@string/template_capture_amounts" />
|
|
||||||
|
|
||||||
<ImageView android:id="@+id/current_player_pawn"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/attack_pawn" />
|
|
||||||
|
|
||||||
<TextView android:id="@+id/current_player_pawn_captured"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:textColor="#FF000000"
|
|
||||||
android:text="@string/template_capture_amounts" />
|
|
||||||
|
|
||||||
</TableRow>
|
|
||||||
</TableLayout>
|
|
||||||
|
|
||||||
</RelativeLayout>
|
|
|
@ -0,0 +1,128 @@
|
||||||
|
#
|
||||||
|
# Copyright (c) 2014 Dorian Pula <dorian.pula@amber-penguin-software.ca>
|
||||||
|
#
|
||||||
|
# justCheckers 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.
|
||||||
|
#
|
||||||
|
# justCheckers 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 justCheckers. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
#
|
||||||
|
# Please share and enjoy!
|
||||||
|
#
|
||||||
|
|
||||||
|
from PySide import QtGui
|
||||||
|
|
||||||
|
from PySide.QtOpenGL import QGLWidget
|
||||||
|
from OpenGL.GL import *
|
||||||
|
from OpenGL.GLUT import *
|
||||||
|
from OpenGL.GLU import *
|
||||||
|
|
||||||
|
|
||||||
|
# TODO Borrowed from: http://biospud.blogspot.ca/2012/02/proof-of-concept-opengl-program-in.html
|
||||||
|
def override(interface_class):
|
||||||
|
"""
|
||||||
|
Method to implement Java-like derived class method override annotation.
|
||||||
|
Courtesy of mkorpela's answer at
|
||||||
|
http://stackoverflow.com/questions/1167617/in-python-how-do-i-indicate-im-overriding-a-method
|
||||||
|
"""
|
||||||
|
def override(method):
|
||||||
|
assert(method.__name__ in dir(interface_class))
|
||||||
|
return method
|
||||||
|
return override
|
||||||
|
|
||||||
|
|
||||||
|
# Install freeglut3 for the example.
|
||||||
|
class SphereTestGLWidget(QGLWidget):
|
||||||
|
"GUI rectangle that displays a teapot"
|
||||||
|
@override(QGLWidget)
|
||||||
|
def initializeGL(self):
|
||||||
|
"runs once, after OpenGL context is created"
|
||||||
|
glEnable(GL_DEPTH_TEST)
|
||||||
|
glClearColor(1,1,1,0) # white background
|
||||||
|
glShadeModel(GL_SMOOTH)
|
||||||
|
glEnable(GL_COLOR_MATERIAL)
|
||||||
|
glMaterialfv(GL_FRONT, GL_SPECULAR, [1.0, 1.0, 1.0, 1.0])
|
||||||
|
glMaterialfv(GL_FRONT, GL_SHININESS, [50.0])
|
||||||
|
glLightfv(GL_LIGHT0, GL_POSITION, [1.0, 1.0, 1.0, 0.0])
|
||||||
|
glLightfv(GL_LIGHT0, GL_DIFFUSE, [1.0, 1.0, 1.0, 1.0])
|
||||||
|
glLightfv(GL_LIGHT0, GL_SPECULAR, [1.0, 1.0, 1.0, 1.0])
|
||||||
|
glLightModelfv(GL_LIGHT_MODEL_AMBIENT, [1.0, 1.0, 1.0, 0.0])
|
||||||
|
glEnable(GL_LIGHTING)
|
||||||
|
glEnable(GL_LIGHT0)
|
||||||
|
self.orientCamera()
|
||||||
|
glutInit()
|
||||||
|
gluLookAt(0, 0, -10, # camera
|
||||||
|
0, 0, 0, # focus
|
||||||
|
0, 1, 0) # up vector
|
||||||
|
|
||||||
|
@override(QGLWidget)
|
||||||
|
def paintGL(self):
|
||||||
|
"runs every time an image update is needed"
|
||||||
|
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT)
|
||||||
|
self.paintTeapot()
|
||||||
|
|
||||||
|
@override(QGLWidget)
|
||||||
|
def resizeGL(self, w, h):
|
||||||
|
"runs every time the window changes size"
|
||||||
|
glViewport(0, 0, w, h)
|
||||||
|
self.orientCamera()
|
||||||
|
|
||||||
|
def orientCamera(self):
|
||||||
|
"update projection matrix, especially when aspect ratio changes"
|
||||||
|
glPushAttrib(GL_TRANSFORM_BIT) # remember current GL_MATRIX_MODE
|
||||||
|
glMatrixMode(GL_PROJECTION)
|
||||||
|
glLoadIdentity()
|
||||||
|
gluPerspective (60.0, self.width()/float(self.height()), 1.0, 10.0)
|
||||||
|
glPopAttrib() # restore GL_MATRIX_MODE
|
||||||
|
|
||||||
|
def paintTeapot(self):
|
||||||
|
glPushAttrib(GL_POLYGON_BIT) # remember current GL_FRONT_FACE indictor
|
||||||
|
glFrontFace(GL_CW) # teapot polygon vertex order is opposite to modern convention
|
||||||
|
glColor3f(0.2,0.2,0.5) # paint it blue
|
||||||
|
glutSolidTeapot(3.0) # thank you GLUT tool kit
|
||||||
|
glPopAttrib() # restore GL_FRONT_FACE
|
||||||
|
|
||||||
|
|
||||||
|
class GameBoardWidget(QGLWidget):
|
||||||
|
def __init__(self, parent):
|
||||||
|
QGLWidget.__init__(self, parent)
|
||||||
|
|
||||||
|
|
||||||
|
class GameView(QtGui.QWidget):
|
||||||
|
"""Info viewer for the game's license, etc."""
|
||||||
|
|
||||||
|
# TODO Setup functional testing with PySide.QtTest
|
||||||
|
|
||||||
|
def __init__(self):
|
||||||
|
super(GameView, self).__init__()
|
||||||
|
self.setup_components()
|
||||||
|
|
||||||
|
def setup_components(self):
|
||||||
|
|
||||||
|
self.game_board = SphereTestGLWidget(self)
|
||||||
|
|
||||||
|
exit_button = QtGui.QPushButton('Back to Menu', self)
|
||||||
|
exit_button.setFixedHeight(50)
|
||||||
|
exit_button.clicked.connect(self.switch_to_menu_view)
|
||||||
|
|
||||||
|
widget_layout = QtGui.QVBoxLayout(self)
|
||||||
|
widget_layout.addWidget(self.game_board)
|
||||||
|
|
||||||
|
# TODO Add in number of captured pieces and whose turn it is.
|
||||||
|
|
||||||
|
button_row = QtGui.QHBoxLayout(self)
|
||||||
|
button_row.addWidget(exit_button)
|
||||||
|
|
||||||
|
widget_layout.addLayout(button_row)
|
||||||
|
|
||||||
|
self.setLayout(widget_layout)
|
||||||
|
|
||||||
|
def switch_to_menu_view(self):
|
||||||
|
self.parentWidget().setCurrentIndex(0)
|
|
@ -36,7 +36,9 @@ class MainMenuView(QtGui.QWidget):
|
||||||
"""Setup the components that make up the widget."""
|
"""Setup the components that make up the widget."""
|
||||||
self.init_justcheckers_logo()
|
self.init_justcheckers_logo()
|
||||||
|
|
||||||
self.new_game = self.create_menu_button('&New Game')
|
self.new_game = self.create_menu_button('&New Game', enabled=True)
|
||||||
|
self.new_game.clicked.connect(self.switch_to_game_view)
|
||||||
|
|
||||||
self.open_game = self.create_menu_button('&Open Game')
|
self.open_game = self.create_menu_button('&Open Game')
|
||||||
self.save_game = self.create_menu_button('&Save Game')
|
self.save_game = self.create_menu_button('&Save Game')
|
||||||
|
|
||||||
|
@ -83,5 +85,9 @@ class MainMenuView(QtGui.QWidget):
|
||||||
"""Exits the application."""
|
"""Exits the application."""
|
||||||
QtCore.QCoreApplication.instance().exit()
|
QtCore.QCoreApplication.instance().exit()
|
||||||
|
|
||||||
|
# TODO Remove magic numbers
|
||||||
def switch_to_about_view(self):
|
def switch_to_about_view(self):
|
||||||
self.parentWidget().setCurrentIndex(1)
|
self.parentWidget().setCurrentIndex(1)
|
||||||
|
|
||||||
|
def switch_to_game_view(self):
|
||||||
|
self.parentWidget().setCurrentIndex(2)
|
||||||
|
|
|
@ -20,6 +20,7 @@
|
||||||
|
|
||||||
from PySide import QtGui
|
from PySide import QtGui
|
||||||
|
|
||||||
|
from justcheckers.ui.game_view import GameView
|
||||||
from justcheckers.ui.info_view import InfoView
|
from justcheckers.ui.info_view import InfoView
|
||||||
from justcheckers.ui.menu_view import MainMenuView
|
from justcheckers.ui.menu_view import MainMenuView
|
||||||
from justcheckers.ui import util
|
from justcheckers.ui import util
|
||||||
|
@ -50,6 +51,7 @@ class DesktopGameWindow(QtGui.QMainWindow):
|
||||||
self.view_stack = QtGui.QStackedWidget()
|
self.view_stack = QtGui.QStackedWidget()
|
||||||
self.view_stack.addWidget(MainMenuView())
|
self.view_stack.addWidget(MainMenuView())
|
||||||
self.view_stack.addWidget(InfoView())
|
self.view_stack.addWidget(InfoView())
|
||||||
|
self.view_stack.addWidget(GameView())
|
||||||
self.setCentralWidget(self.view_stack)
|
self.setCentralWidget(self.view_stack)
|
||||||
|
|
||||||
def center(self):
|
def center(self):
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
# User interface
|
# User interface
|
||||||
PySide==1.2.2
|
PySide==1.2.2
|
||||||
Markdown==2.4.1
|
Markdown==2.4.1
|
||||||
|
PyOpenGL
|
||||||
|
|
||||||
# Core logic
|
# Core logic
|
||||||
enum34==0.9.19
|
enum34==0.9.19
|
||||||
|
|
Loading…
Reference in New Issue