首页
网站开发
桌面应用
管理软件
微信开发
App开发
嵌入式软件
工具软件
数据采集与分析
其他
首页
>
> 详细
代写 CSSE2002、代做 Python/java 程序设计
项目预算:
开发周期:
发布时间:
要求地区:
1 OVERVIEW CSSE2002 — Programming in the Large Assignment 1 — Semester 1, 2025 School of EECS The University of Queensland Due April 2nd 13:00 AEST I’ve never been able to see any boundary between scientific research and game-playing. — Donald Knuth Do not distribute. Version 1.1 1 Overview Greetings fellow earthling! We, the governing body of earth (not aliens), require your participation in mandatory earth-protection-focused anti-extraterrestrial-defense training. Unfortunately we, the governing body of earth (still not aliens), have lost our copy of Atari’s 1978’s hit cultural phenomenon Space Invaders, and require you {subject name} to assist in the creation of a suitable alternative. Congratulations, {subject name}! Everyone in {subject home town} would be very proud and impressed with you! Given our earthling laywers’ advice that “Star wars” would upset other earthling laywers, we have decided to name our new implementation NotSpace Invaders. In your creation process, you will be guided and evaluated. Your task and evaluation is detailed below. Common Mistakes Please carefully read Appendix A. It outlines common and critical mistakes which you must avoid to prevent a loss of marks. If at any point you are even slightly unsure, please check as soon as possible with course staff. Plagiarism All work on this assignment is to be your own individual work. Code supplied by course staff (from this semester) is acceptable, but must be clearly acknowledged. Code generated by third-party tools is acceptable but must be clearly acknowledged. See Generative Artificial Intelligence below. You must be familiar with the school policy on plagiarism: https://uq.mu/rl553 Generative Artificial Intelligence You are strongly discouraged from using generative arti- ficial intelligence (AI) tools to develop your assignment. This is a learning exercise and you will harm your learning if you use AI tools inappropriately. Remember, you will be required to write code by hand in the final exam. If you do use AI tools, you must clearly acknowledge this in your submission. See Appendix B for details on how to acknowledge the use of generative AI tools. Even with acknowledged AI use, you must be able to explain all parts of your submission. Interviews In order to maintain assessment integrity and in accordance with the course profile, you may be asked by the course coordinator via email to attend an interview to evaluate genuine authorship of your assignment. Please refer to the course profile for further details. ? The University of Queensland 2025 1 2 GETTING STARTED 2 Getting Started To get started, download the provided code from the following location: https://csse2002.uqcloud.net/assessment/A1/provided.zip After that, you are strongly encouraged to create a diagram mapping out the relationships be- tween all the classes you must implement (details of which are in the javadoc). Component #1: Implementation You are required to implement all of the classes and interfaces specified in the provided Javadoc. Do NOT modify any package, class, or method that is tagged as provided (such as the game.ui package or the GameModel.setRandomSeed method). Stubs (such as GameModel.java) have been given to you to help start you on the right path, but the class implementation must be finished. https://csse2002.uqcloud.net/assessment/A1/javadocs/index.html The staging below is intended to guide and assist you in implementation, but it remains your responsibility to ensure that you have completed the implementation. Component #2: Style You will be required to write well-styled code throughout the assignment as specified in the Style Guide on Blackboard. Further details in the Marking Breakdown. ? The University of Queensland 2025 2 3 STAGES 3 Stages Your assignment has been split into stages that help deconstruct the task into managable sections, and allow you to notice progress before reaching complete implementation. Stages are optional, but recomended. You may complete the assignment in any way you prefer, but the stages are designed to save you time and minimize frustration. If you do not complete all stages you may still score high marks as not all stages are required to pass. For more details, see the Marking Breakdown. This assignment has been split into the following stages: ? Stage 0: A stray Bullet. – Implement Bullet class and its parents – Implement Logger interface – Implement GameModel.getSpaceObjects and GameModel.addObject – In GameController.renderGame call ui.render with GameModel objects, and uncom- ment renderGame in GameController.onTick ? Stage 1: Contact with the Enemy – Implement Enemy class and its parents – Implement GameModel.updateGame and GameModel.checkCollisions, and uncomment them in GameController.onTick – Implement Asteroid – Comment/Uncomment in GameController.startGame ? Stage 2: Taking Control – Implement Ship class and its parents – Implement GameController.handlePlayerInput and anything else it depends on or makes use of. – Implement the remaining methods required to instantiate the ship (hint: look in GameM- odel). You can now control the ship! – Comment/Uncomment in GameController.startGame ? Stage 3: Level Up – Implement any and all remaining classes, interfaces, gameplay functionality and game- play systems. For example, levels, spawning, scoring, health, rendering etc. Maintain and improve code style and documentation throughout! ? The University of Queensland 2025 3 4 MARKING 4 Marking The assignment is marked out of 100. The marks are divided into 2 categories: functionality (F ), and style (S). Weight Description F 90 The provided code has been extended to include the specified new components and those compo- nents function as expected. S 10 Code style conforms to course style guides. The overall assignment mark is defined as A1 = (90× F ) + (10× S) Functionality Each class has a number of unit tests associated with it. Your mark for function- ality is based on the percentage of unit tests you pass. Assume that you are provided with 10 unit tests for a class, if you pass 8 of these tests, then you earn 80% of the marks for that class. Classes may be weighted differently depending on their complexity. Your mark for the functionality, F , is then the weighted average of the marks for each of the n classes, F = ∑n i=1 wi · piti∑n i=1 wi where n is the number of classes, wi is the weight of class i, pi is the number of tests that pass on class i, and ti is the total number of tests for class i. Code Style The Code Style category is marked starting with a mark of 10. Every occurrence of a style violation in your solution, as detected by Checkstyle using the course-provided configuration1, results in a 1 mark deduction, down to a minimum of 0. For example, if your code has 2 checkstyle violations, then your mark for code quality is 8. Note that multiple style violations of the same type will each result in a 1 mark deduction. S = max(0, 10?Number of style violations) Note: There is a plug-in available for IntelliJ which will highlight style violations in your code. Instructions for installing this plug-in are available in the Java Programming Style Guide on Blackboard (Learning Resources → Guides). If you correctly use the plug-in and follow the style requirements, it should be relatively straightforward to get high marks for this section. Electronic Marking Marking will be carried out automatically in a Linux environment. The environment will not be runningWindows, and neither IntelliJ nor Eclipse (or any other IDE) will be involved. OpenJDK 21 with the JUnit 4 library will be used to compile and execute your code and tests. When uploading your assignment to Gradescope, ensure that Gradescope says that your submission was compiled successfully. Your code must compile. If your submission does not compile, you will receive zero marks. 1The latest version of the course Checkstyle configuration can be found at http://csse2002.uqcloud.net/ checkstyle.xml. See the Style Guide for instructions. ? The University of Queensland 2025 4 5 SUBMISSION 5 Submission Submission is via Gradescope. Submit your code to Gradescope early and often. Gradescope will give you some feedback on your code, but it is not a substitute for testing your code yourself. You must submit your code before the deadline. Anything that is submitted after the dead- line will not be marked (1 nanosecond late is still late). See Assessment Policy . You may submit your assignment to Gradescope as many times as you wish before the due date. Your last submission made before the due date will be marked. You must submit ALL files you create or modify, and NONE of the files you do not. Code Submission Your code submission must include at least the following directories: Implementation Code Files: src/game/* src/game/core/* src/game/exceptions/* src/game/utility/Logger ai/README.txt Do not include the provided code outside of these packages! If you create additional packages, include them in the submission. Only submit code you have modified or created. Ensure that your classes and interfaces correctly declare the package they are within. For ex- ample, GameModel.java should declare package game.model;. Provided tests A small number of the unit tests used for assessing Functionality (F) are pro- vided in Gradescope, which can be used to test your submission against. The purpose of this is to provide you with an opportunity to receive feedback on whether the basic functionality of your classes and tests is correct or not. Passing all the provided unit tests does not guarantee that you will pass all the tests used for functionality marking. ? The University of Queensland 2025 5 7 CHANGE LOG VERSION: 1.1 6 Assessment Policy Late Submission Any submission made after the grace period (of one hour) will not be marked. Your last submission before the deadline will be marked. Do not wait until the last minute to submit the final version of your assignment. A submission that starts before the end of the grace period but finishes after will not be marked. Extensions If an unavoidable disruption occurs (e.g. illness, family crisis, etc.) you should consider applying for an extension. Please refer to the following page for further information: http://uq.mu/rl551 All requests for extensions must be made via my.UQ. Do not email your course coordinator or demonstrators to request an extension. Remarking If an administrative error has been made in the marking of your assignment (e.g. marks were incorrectly added up), please contact the course coordinator (csse2002@uq.edu.au) to request this be fixed. For all other cases, please refer to the following page for further information: http://uq.mu/rl552 7 Change Log Version: 1.1 v1.1 Task Sheet ? Fixes assorted typos ? Clarifies Section 2.1: it’s ok to comment/uncomment provided code (as advised in staging) ? Fixes missing submission detail Provided Code ? Adjusts provided code in game.ui.gui.Stats.paintComponent() to fix the first stat being hidden (Marking remains unaffected, but there is a visual change for students). ? Fixes encapsulation violation in GameModel, where the .random attribute was made private. JavaDocs ? Fixes assorted typos ? Adds a hint to game.GameController.pauseGame() ? Clarifies javadocs of Controllable.move(). ? Clarifies javadocs on storage, manipulation, and rendering of the Ship. ? The University of Queensland 2025 6 APPENDIX A Critical Mistakes THINGS YOU MUST AVOID Code may run fine locally on your own computer in IntelliJ, but it is required that it also builds and runs correctly when it is marked with the electronic marking tool in Gradescope. Your solution needs to conform to the specification for this to occur. ? Files must be in the correct directories (exactly) as specified by the Javadoc. If files are in incorrect directories (even slightly wrong), you will lose marks for functionality in these files because the implementation does not conform to the specification. ? Files must have the exact correct package declaration at the top of the file. If files have incorrect package declarations (even slightly wrong), you will lose marks for functionality in these files because the implementation does not conform to the specification. ? You must implement the public members exactly as described in the supplied documentation (no extra public members or classes). Creating public data members in a class when it is not specified will result in loss of marks, because the implementation does not conform to the specification. ? You are encouraged to create private members and protected methods as you see fit to implement the required functionality or improve the design of your solution. ? Do not use any version of Java newer than 21 when writing your solution. If you accidentally use Java features which are only present in a version newer than 21, then your submission may fail to compile. B Generative Artificial Intelligence While the use of generative AI for this assignment is discouraged, if you do wish to use it, ensure that it is declared properly. For this, you must create a new folder, called “ai”, within this folder, create a file called “README.txt”. This file must explain and document how you have used AI tools. For example, if you have used ChatGPT, you must state this and provide a log of questions and answers received using the tool. The “README.txt” file must provide details on where the log of questions and answers are within your “ai” folder. If you plan to use continuous AI tools such as Copilot, you must ensure that the tool is logging its suggestions so that the log can be uploaded. For example, in IntelliJ, you should enable the log by following this guide.
软件开发、广告设计客服
QQ:99515681
邮箱:99515681@qq.com
工作时间:8:00-23:00
微信:codinghelp
热点项目
更多
代写cs918 sentiment classifi...
2025-04-02
代做llp714 corporate social ...
2025-04-02
代做cs 338 – winter 2025 as...
2025-04-02
代做21797 strategic supply c...
2025-04-02
代做ee 5711: power electroni...
2025-04-02
代写llaw6055 law of internat...
2025-04-02
代写dts208tc data analytics ...
2025-04-02
代做bees2041 data analysis f...
2025-04-02
代做econ154 business statist...
2025-04-02
代写cit 596 - hw5代做留学生j...
2025-04-02
代做data driven business代写...
2025-04-02
代写envi5705 – assessment 2...
2025-04-02
代写econ154 - statistical fo...
2025-04-02
热点标签
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
软件定制开发网!