Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
se3xa3
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Hameed Andy
se3xa3
Commits
2fc2cf1d
Commit
2fc2cf1d
authored
6 years ago
by
Browse files
Options
Downloads
Patches
Plain Diff
updating src
parent
9a7e4937
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
BlankProjectTemplate/src/Interface.py
+25
-2
25 additions, 2 deletions
BlankProjectTemplate/src/Interface.py
BlankProjectTemplate/src/highscore.py
+31
-3
31 additions, 3 deletions
BlankProjectTemplate/src/highscore.py
with
56 additions
and
5 deletions
BlankProjectTemplate/src/Interface.py
+
25
−
2
View file @
2fc2cf1d
## @file interface.py
# @author Vaibhav Chadha
# @brief implements the main interface of this game
# @date 11/11/2018
#importing necessary libraries
import
pygame
,
sys
import
highscore
## @brief A Class that will contain useful functions in order for the creation of main interface
class
GUI
():
#a function made to execute other files from the system
## @brief A function for running other files
# @details Executes another python file when this is selected, Given that the file is in same folder.
# @param runfilename The name of the file to be executed
def
runfile
(
runfilename
):
with
open
(
runfilename
,
"
r
"
)
as
rnf
:
exec
(
rnf
.
read
())
## @brief A method to create a button
# @details This method will make a box on the interface
# @param surface The background (surface) the box should be made on
# @param color The color of the button to be made
# @param Rect The coordinate of the button with the length and width
# @param width The width of the sides of button
def
button
(
Surface
,
color
,
Rect
,
width
):
pygame
.
draw
.
rect
(
Surface
,
color
,
Rect
,
width
)
## @brief A method to display text
# @details This function will print the text on the interface
# @param text The text to be printed
# @param fontStyle The font Style of the text to be displayed
# @param fontSize The size of the text written
# @param color The color of the text
# @param coord The coordinate at which the text should start displaying
# @param surface The background (surface) the text should be printed on
def
text
(
text
,
fontStyle
,
fontSize
,
color
,
coord
,
surface
):
font
=
pygame
.
font
.
SysFont
(
fontStyle
,
fontSize
)
text
=
font
.
render
(
text
,
True
,
color
)
surface
.
blit
(
text
,
coord
)
## @brief Makes the main interface of this game
# @details This will output the main page of this game by using the class above
def
main
():
pygame
.
init
()
gray
=
[
180
,
180
,
180
]
...
...
This diff is collapsed.
Click to expand it.
BlankProjectTemplate/src/highscore.py
+
31
−
3
View file @
2fc2cf1d
## @file highscore.py
# @author Vaibhav Chadha
# @brief implements the highscore interface
# @date 10/11/2018
import
pygame
,
sys
## @brief A Class that will contain useful functions in order for the creation of highscore page
class
HighScore
():
## @brief A function for running other files
# @details Executes another python file when this is selected, Given that the file is in same folder.
# @param runfilename The name of the file to be executed
def
runfile
(
runfilename
):
with
open
(
runfilename
,
"
r
"
)
as
rnf
:
exec
(
rnf
.
read
())
## @brief A method to display text
# @details This function will print the text on the interface
# @param text The text to be printed
# @param fontStyle The font Style of the text to be displayed
# @param fontSize The size of the text written
# @param color The color of the text
# @param coord The coordinate at which the text should start displaying
# @param surface The background (surface) the text should be printed on
def
text
(
text
,
fontStyle
,
fontSize
,
color
,
coord
,
surface
):
font
=
pygame
.
font
.
SysFont
(
fontStyle
,
fontSize
)
text
=
font
.
render
(
text
,
True
,
color
)
surface
.
blit
(
text
,
coord
)
## @brief A method to create a button
# @details This method will make a box on the interface
# @param surface The background (surface) the box should be made on
# @param color The color of the button to be made
# @param Rect The coordinate of the button with the length and width
# @param width The width of the sides of button
def
button
(
Surface
,
color
,
Rect
,
width
):
pygame
.
draw
.
rect
(
Surface
,
color
,
Rect
,
width
)
## @brief Finds the highest score from the file
# @details This writes the input from the file in an array and find the max number from it
def
findHighscore
():
infile
=
open
(
"
highscore.txt
"
,
"
r
"
)
mylist
=
[]
...
...
@@ -20,7 +46,9 @@ class HighScore():
a
=
line
.
strip
()
mylist
.
append
(
a
)
return
max
(
mylist
)
## @brief Makes the highscore interface
# @details This will output the final interface using the class above
# which can be seen by executing this function.
def
main
():
pygame
.
init
()
red
=
[
255
,
0
,
0
]
...
...
@@ -37,8 +65,8 @@ def main():
HighScore
.
text
(
'
Main Menu
'
,
"
times
"
,
25
,
red
,(
90
,
70
),
highscore
)
if
(
90
<=
mousepos
[
0
]
<=
90
+
120
and
70
<=
mousepos
[
1
]
<=
70
+
27
):
if
mouseclick
[
0
]
==
1
:
#
HighScore.runfile('
Snake_Gam
e.py')
Snake_Game
.
main
()
HighScore
.
runfile
(
'
Interfac
e.py
'
)
#
Snake_Game.main()
HighScore
.
button
(
highscore
,[
0
,
0
,
0
],
[
125
,
105
,
45
,
27
],
0
)
HighScore
.
text
(
'
Quit
'
,
"
times
"
,
25
,
red
,(
125
,
105
),
highscore
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment