首页
网站开发
桌面应用
管理软件
微信开发
App开发
嵌入式软件
工具软件
数据采集与分析
其他
首页
>
> 详细
代做program、代写Java程序语言
项目预算:
开发周期:
发布时间:
要求地区:
3 Game description
The game is called Simon’s Obstacle Course, it is a made up game, so there is no point Googling for
implementations of it. Simon’s Obstacle Course is a board-based game which has a start line and a finish
line, and a course of obstacles between the two. The goal is easy: the player to get from the start to the
end first is the winner. However, there are a few rules that make this a little more complicated! The
rules which determine if a move is valid are:
1. A 9-sided dice is rolled to determine how many squares a player can move: 1, 2, ..., 9 squares.
1
2. Players always move forwards, but might have to interact with obstacles on the way. You should
have controls to allow players to decide if they want to move, or stop.
3. If a player cannot make a valid move, they stop at the last valid square they can.
4. Obstructions include: other players, the edges / walls of the board, and obstacles in the game (fires,
fences, pits, teleporting portals etc.).
To provide some context, consider the setup displayed in Figure 1. Here, 2 or more players, race to
the finish. The board is arranged as a spiral, the start line is on the outside, the first player to get to the
centre square wins. The brown lines indicate the walls that define the path from start to finish. While
in Figure 1 there is only one path, you could consider extending the game to facilitate multiple paths.
There are, in this example, four types of obstruction:
• a bottomless pit (black background): causing the player to return to the start if they fall in (land
on it)
• a fire pit (blue background): causing the player to miss a turn after they pass it
• a spike pit: must be jumped over, i.e. if it consumes 3 tiles, at least 4 is needed on the dice to pass
the obstacle by the time the player reaches it
• a teleporter (white background): moves either the current player, or a player of their choice to a
random location as soon as the player enters the tile (regardless of how much further they could
move).
Note this board set up is only indicative, your board:
• could have more obstacles,
• could have perhaps more obstacle types,
• will likely be larger (have more squares), and
• perhaps have more than one route to the centre
Figure 1: Example Simon’s Obstacle Course Board.
Note the following:
1. you need 2 or more players, but 2 players cannot be on the same square
2
2. players must be able to make decisions when needed (you can decide how they do this)
3. you can have as large a board (i.e. the distance between start and end) as you like
4. the board should fit on the screen in at least one direction, i.e. either the full width or full height
of the board should be visible, the other direction can scroll if needed.
5. you can have as many obstacles as you like, however, as discussed in section 4 there are some
minimum requirements
There is a lot of free design space for you, your game can look very different to the mockup shown in
Figure 1: it is only a quick illustration. There is no legitimate reason for two projects to look the same,
and as such two projects that are “too similar” may be scrutinised more closely for issues of plagiarism.
4 Requirements
In this assignment you are making a multi-player game according the game brief presented in section 3,
however, the following MINIMUM requirements should be observed:
1. All conditions noted in section 3 must be observed
2. The game MUST have a 2D JavaFX user interface (which can be quite simple: fancy animations
are NOT NEEDED!)
3. When a player wins Simon’s Obstacle Course the game should end immediately and “announce”
the winner
4. The players should be able to specify their name, this should be displayed in the interface
5. The interface should illustrate current value of the game dice
6. The game must be well unit tested
7. this IS NOT a maze game, and should not be constructed as a maze, the spiral shape should
ALWAYS be retained and clearly visible.
8. You need to derive a scoring mechanism for the game, and have a persistent top 10 score board
(e.g. in a flat file, serialised object, etc.);
9. all code should be placed within a well-structured Java package with accompanying JavaDoc that
provides detailed information for all classes, methods, fields etc. Simply making a JavaDoc with
no informative content will receive a score of zero.
10. you must have at least 3 different types of obstacle, one of these should have “special rules” i.e.
modify the game play in some manner, e.g. a button that when pressed (stepped on) rearranges
the board, a fire pit that makes the player miss their next turn, a teleportation portal that swaps
the position of both players, etc.
All these requirements must be fulfilled to achieve a B grade or higher. To increase your mark, you
can add adaptions to the game that increase its complexity and allow you to go beyond the minimum requirements (above). However, this should only be undertaken once all minimum requirements
are met. Example adaptions:
1. user-specified board sizes and layout (e.g. of obstacles)
2. a difficulty setting (more or less obstacles)
3. randomly generated boards (with clear rules and parameters for the construction of the board)
4. player defined board layouts
5. < add your own ideas here >
3
5 Deliverables
Demo Video a (max of) 7.5 min video (with audio commentary) demonstrating your game, and key unit tests,
you should also illustrate how the unit tests thoroughly test game in the video. You should use
OBS to record your demo (see OBS tutorial on brightspace). Both team members much have a
meaningful role in the demo.
Screenshot of your application showing an on-going game in anything but the start or end state
Documentation a Java Doc for all classes as a .zip
Code all .java files as a .zip archive
README.txt a file explaining how to run the game, and tests for each class
Challenge a (max of) 3 min video (with audio commentary) where you will perform a set a unique (to you)
tasks. These will be provided after submission. You need to record yourself making changes to
the code and running the result. These may include, but are not limited to: 1) change some part
of the UI, reload the game to show these change, 2) initialise the board with a specified state, 3)
modify the code in various ways to create specified situations then demo these situations, etc. You
will have 24 hours to answer these questions. None of these questions will be difficult if you have a
good understanding of the code. Team members will receive INDIVIDUALISED challenges.
Contributions a short document that breaks down individual contributions on the project, this should align with
GitHub commits, comments, author tags in the code etc.
Peer Eval a short peer evaluation assessment for your team
6 Tips and Grading Rubric
Problem Definition start the project by defining a problem definition, this is essentially a list of things
your game needs to do. Work on paper to identify potential areas of functionality when considering classes
to implement; your main classes are probably the nouns in your problem description e.g. board, piece,
scoreboard, UI, etc.
Interface start with a command line interface: so that you can get the move logic correct. A functioning
game is more important than a pretty interface!
Start with the “board” or environment data structure and implement code that makes a move / takes
a turn (this, initially, should not include the UI!). Then add code to check a move / turn is valid. A
simple game, well implemented is better than a complex game that doesn’t work. Once you can check
for valid moves, add functionality to check for the win / lose condition. Then build up to multiple turns,
then start planning the GUI, etc. You should be using the model view controller design pattern for this
project, and as such you can build most of the core functionality without a UI!
Testing should be undertaken as you implement key aspects of functionality. Don’t leave it to the last
minute. Key testing in this project should look at valid moves, changes in board / environment state,
identifying the win / lose condition, etc. A poor project has less than 20 or so distinct test cases.
Workload it is expected that this project require 40-80 hours of work to complete per student.
Grading the game itself is “only” worth 50% make sure you allocate sufficient time for the other aspects
of the project: video, testing, JavaDoc, etc.
Model-View-Controller this is the best design pattern to use for project.
Scene Builder makes the design of the UI much easier and enforces an MVC approach to the project.
4
7 Grade individualisation
Even though the COMP20300 project is a group project, students still receive individual grades. Projects
will initially be graded without consideration of individual contributions. This acts only as a starting
point when considering individual grades, which can be higher or lower than the group grade. Grades
are individualised using three sources of information:
1. A peer evaluation: team members evaluate each others’ contribution to the team as well as their
own.
2. Github: checks to see that github contributions are both meaningful and span the entire duration
of the project, i.e. if you have a relatively large number of commits only near the start or end of
the project, this will reflect negatively on you.
3. Distribution of work document submitted with the other deliverables. Here, you outline the contributions to the project of both team members. Both members of the team must submit this
to illustrate their agreement with the contents. If you do not agree, mark changes in red text.
Note, however, that significant disagreements will likely result in an invitation to discuss team
contributions.
软件开发、广告设计客服
QQ:99515681
邮箱:99515681@qq.com
工作时间:8:00-23:00
微信:codinghelp
热点项目
更多
代做ceng0013 design of a pro...
2024-11-13
代做mech4880 refrigeration a...
2024-11-13
代做mcd1350: media studies a...
2024-11-13
代写fint b338f (autumn 2024)...
2024-11-13
代做engd3000 design of tunab...
2024-11-13
代做n1611 financial economet...
2024-11-13
代做econ 2331: economic and ...
2024-11-13
代做cs770/870 assignment 8代...
2024-11-13
代写amath 481/581 autumn qua...
2024-11-13
代做ccc8013 the process of s...
2024-11-13
代写csit040 – modern comput...
2024-11-13
代写econ 2070: introduc2on t...
2024-11-13
代写cct260, project 2 person...
2024-11-13
热点标签
mktg2509
csci 2600
38170
lng302
csse3010
phas3226
77938
arch1162
engn4536/engn6536
acx5903
comp151101
phl245
cse12
comp9312
stat3016/6016
phas0038
comp2140
6qqmb312
xjco3011
rest0005
ematm0051
5qqmn219
lubs5062m
eee8155
cege0100
eap033
artd1109
mat246
etc3430
ecmm462
mis102
inft6800
ddes9903
comp6521
comp9517
comp3331/9331
comp4337
comp6008
comp9414
bu.231.790.81
man00150m
csb352h
math1041
eengm4100
isys1002
08
6057cem
mktg3504
mthm036
mtrx1701
mth3241
eeee3086
cmp-7038b
cmp-7000a
ints4010
econ2151
infs5710
fins5516
fin3309
fins5510
gsoe9340
math2007
math2036
soee5010
mark3088
infs3605
elec9714
comp2271
ma214
comp2211
infs3604
600426
sit254
acct3091
bbt405
msin0116
com107/com113
mark5826
sit120
comp9021
eco2101
eeen40700
cs253
ece3114
ecmm447
chns3000
math377
itd102
comp9444
comp(2041|9044)
econ0060
econ7230
mgt001371
ecs-323
cs6250
mgdi60012
mdia2012
comm221001
comm5000
ma1008
engl642
econ241
com333
math367
mis201
nbs-7041x
meek16104
econ2003
comm1190
mbas902
comp-1027
dpst1091
comp7315
eppd1033
m06
ee3025
msci231
bb113/bbs1063
fc709
comp3425
comp9417
econ42915
cb9101
math1102e
chme0017
fc307
mkt60104
5522usst
litr1-uc6201.200
ee1102
cosc2803
math39512
omp9727
int2067/int5051
bsb151
mgt253
fc021
babs2202
mis2002s
phya21
18-213
cege0012
mdia1002
math38032
mech5125
07
cisc102
mgx3110
cs240
11175
fin3020s
eco3420
ictten622
comp9727
cpt111
de114102d
mgm320h5s
bafi1019
math21112
efim20036
mn-3503
fins5568
110.807
bcpm000028
info6030
bma0092
bcpm0054
math20212
ce335
cs365
cenv6141
ftec5580
math2010
ec3450
comm1170
ecmt1010
csci-ua.0480-003
econ12-200
ib3960
ectb60h3f
cs247—assignment
tk3163
ics3u
ib3j80
comp20008
comp9334
eppd1063
acct2343
cct109
isys1055/3412
math350-real
math2014
eec180
stat141b
econ2101
msinm014/msing014/msing014b
fit2004
comp643
bu1002
cm2030
联系我们
- QQ: 9951568
© 2021
www.rj363.com
软件定制开发网!