99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

合肥生活安徽新聞合肥交通合肥房產(chǎn)生活服務合肥教育合肥招聘合肥旅游文化藝術合肥美食合肥地圖合肥社保合肥醫(yī)院企業(yè)服務合肥法律

代寫Maze Runner編程、代做Java設計程序

時間:2024-01-29  來源:合肥網(wǎng)hfw.cc  作者:hfw.cc 我要糾錯



Project: Maze Runner
We want you to practice composing multiple classes and files into one larger, functional piece
of software. For that, we ask you to implement a small game in Java.
Game Idea
The core idea of the game is navigating a character through a maze, overcoming various
challenges to reach the exit. The maze contains multiple different elements like traps, enemies,
and keys that the player must interact with or evade to escape. The game unfolds in a maze
enclosed by walls on all sides, featuring an entry point where the player starts and an exit to
reach for completing the game. Within the maze, the player will encounter an intricate
network of interior walls that create not only a challenging path but also various dead-ends.
Randomly scattered throughout the maze are traps and enemies that the player must avoid
or overcome, as well as keys that must be collected to unlock the exit.
Game Logic
Your game must implement the following mechanics:
Walls and Paths
The game world is designed as a maze, consisting of traversable paths and walls. Each maze
has exactly one entrance and at least one, potentially multiple exits. The exit points are
exclusively situated on the outer border of the maze, which is otherwise completely enclosed
by walls without any gaps. The entrance can be anywhere in or on the border of the maze.
When playing the game, it's crucial that the entrance and exit are clearly distinguishable from
walls and each other. The entrance should be uniquely identifiable, as should the exit, but in
a distinct manner.
In this context, 'paths' refer to the free space within the maze. The density of the maze can
vary significantly, ranging from sparse layouts with abundant open space and fewer walls, to
dense configurations characterized by numerous walls and limited walkable paths.
Character
The main character must be able to move through the maze in four directions (up, down, left,
right). Generally, the character can only walk in free spaces; they cannot walk through walls.
The character must have a number of lives. If the character loses all their lives before reaching
and opening the exit (see below), it's game over.
Obstacles
The maze contains at least two kinds of obstacles. Essentially, an obstacle is an additional
object on an otherwise free path within the maze that causes the character to lose a life when
contact occurs. Like the character, obstacles can only exist within free paths and cannot pass
through walls.
The two required kinds of obstacles are:
Traps: Obstacles with a fixed position within the maze.
Enemies: Obstacles that are dynamic. This means their position within the maze changes
regularly in short intervals. For minimal requirements, they must move randomly throughout
the maze but never leave it; however, for bonus points, they can exhibit more intelligent
behavior (see below).
Keys
The ultimate goal for the main character is to exit the maze. However, to open the exit, they
must have collected a key. There will be at least one, but potentially multiple keys in each
maze. The character must collect at least one key to use the exit of the maze. Attempting to
exit without the key should result in the path being blocked (think: the exit behaves like a wall
until you have a key).
HUD
The game must have at least a small, basic HUD that is visible to the player at all times while
navigating the maze. It must at least display the following information:
- Amount of lives remaining
- Whether a key has been collected
Game Menu
There must be a game menu displayed at the launch of the game and any time a player
presses the Esc key during gameplay. If a player presses Esc to access the menu, the game
itself must be paused (i.e., the main characters and all enemies stop moving). In this menu,
players must at least be able to:
- continue the game (if coming from Esc)
- load a new map file and start a new game
- exit the game
ALL UI and MENUS must be libGDX based. No JavaFX or something.
Victory and Game Over
If the player can leave the maze without losing all lives, they achieve a victory. In this case,
display that the user has won, and stop the gameplay.
If the player loses all lives, the game is over. In this case, display that the game is over, and
stop the gameplay.
In both cases, allow to go back to the main menu.
Technical Requirements
Maze files
You should not generate or define a maze yourself within your program code. Instead, your
program must be able to run any arbitrary maze stored in a Java properties file. If the player
chooses the "load map" option in your game menu, your program must open a File Chooser
and allow them to select the file. Then, your program should read the file and start the game
based on the maze defined in this file.
Properties files are a very simple way to store data in files in Java. Essentially, they just store
key-value pairs of Strings; think of it as a Map<String, String>. In our maze files, the key
specifies the x and y coordinates, separated by a comma, for example: 5,6.
The value specifies the type of the object at the given coordinates. The following types exist:
Value | Type
-------------------
0 | Wall
1 | Entry point
2 | Exit
3 | Trap (static obstacle)
4 | Enemy (dynamic obstacle)
5 | Key
The coordinate system starts at the bottom left with 0,0. x coordinates extend to the right,
and y coordinates go upwards.
Check out one of the files in the maps directory to get an idea.
Graphics
Your game must be a 2D game based on libGDX with a top-down view.
Each object must be rendered as a 2D sprite at their respective coordinates as specified by
the map file. Ensure to use proper, open-source 2D assets (images) to render the different
object types. We recommend using simple 16x16 pixel graphics. Recommended sources
include Kenney or OpenGameArt.
Ensure that your animations are fluent and your game runs on a playable, fluid framerate.
We provide you with a skeleton for such a game, so you don't have to start from scratch.
Viewport
Different computers have different screen sizes. Some players may want to play your game
on a very large screen or maybe in a very small window.
Therefore, please make sure to fulfill the following important requirements:
- The maze may be larger than the screen. Implement a camera movement mechanism
that ensures that the player character is always visible within at least the middle 80% of
the screen horizontally and vertically during gameplay. If the window is resized, ensure
to readjust the camera position to adhere to this rule as well.
- Your game must adapt to different sizes of your program window.
- DO NOT scale the game items if the window size changes. If the user scaled up the
window, that means they can now see a larger segment of the maze.
Music and Sounds
Include music and sound effects in your game. Use the Music and Sound classes of libGDX to
achieve this. There is an example of playing music in the template.
Ensure to balance volume of music and sound effects. Choose royalty-free tracks and effects,
for example from OpenGameArt.
https://opengameart.org/art-searchadvanced?keys=&field_art_type_tid%5B%5D=13&sort_by=count&sort_order=DESC
Background Music
- Gameplay: Loop a background track during gameplay, matching the game's intensity
and theme.
- Menu: Play a different, calmer track for the game menu.
-
Sound Effects
Play sound effects if something happens to make the experience more immersive. Play proper
sound effects at least for the following events:
- Life lost
- Key collected
- Victory
- Game over
Code Structure
- Implement your game in an object-oriented manner using concepts presented in the
lecture.
- The different object types like entry, exit, all types of traps, and all types of enemies must
be dedicated classes, inheriting from at least one common superclass, such as a
GameObject that contains shared functionality and properties. Use a class hiearchy that
makes sense for your game. A wall does not necessarily have to be a class, but can be.
- Avoid code duplication using inheritance, delegation, and proper usage of method
extraction.
Documentation
- Your code must be documented properly. Document each class and each method with
proper JavaDoc!
- If you use code from the internet, add the source URLs into your JavaDoc of the method
using the external code.
- Create a README file that documents your project structure so a reviewer can easily
understand:
1. your code structure - how is everything organized, what does the class
hierarchy look like?
2. how to run and use your game?
3. rules for and description of game mechanics that go beyond the minimal
requirements
Checklist
When creating the project, remember the following points:
- Your program must be able to read any maze from a properties file and play it.
- The character must be movable with the arrow keys in four directions.
- The character has a limited number of lives.
- The character must collect a key from the maze and reach the exit before losing all lives.
- Static traps and dynamically moving enemies are obstacles. On contact with any of them,
the player loses one life.
- Camera Movement: Implement a camera movement mechanism that ensures that the
player character is always visible within at least the middle 80% of the screen horizontally
and vertically during gameplay.
- HUD: Display the amount of lives left and key collection status at all times.
- Game Menu: Available on startup and through the Esc button; must allow to continue
playing, choosing a new map, or exiting.
- Victory and Game over: Your game must display that the player has won or lost, stop
the gameplay and allow to return to the main menu afterwards.
- Render the game using libGDX as a 2D game with a top-down view using simple 2D
assets.
- Your game must run fluently.
- Support different screen sizes.
- Play background music during gameplay and in the menu
- Use sound effects when something happens in the game
- Use object-orientation to implement your game. Each object type must be a dedicated
class (except for Wall - this can optionally be a class, but doesn't have to be) in a proper
class hierarchy.
- Document your code and your project properly.
Extension for Bonus Points
You are free to extend the game as you like as long as the minimal requirements are and stay
fulfilled.
Functionality that goes beyond the minimal requirements may result in bonus points.
Some examples follow below. Especially the first one is a cool thing to have in a game like
this and will definitely earn you more than one point ;)
- Enemies move intelligently towards the main character using a path-finding algorithm if
they are within a certain range, instead of moving randomly.
- Point systems: Can players get a score in the end, e.g., based on time?
- Collectable lives.
- More types of obstacles.
- Further abilites for the main character other than walking, such as
- combat with enemies
- collectable power ups (faster running, shield, …)
- Fog of War.
- Movable walls.
- Multiple kinds of things other than a key to exit (remember, having to collect a key is the
minimal requirement; you can require more things before you open the exit).
- …
- Unleash Your Creativity! Treat this project as your experimental playground, a space
where you can try out innovative ideas, apply your acquired knowledge, and
continuously learn along the way. We're excited to see the remarkable game you'll create
and be impressed by your ingenuity!
Organizational considerations
Third party libraries
Third party code libraries that can be installed through Gradle are in general not allowed. We
want you to implement things yourself and avoid relying on third party features. You are free
to use all the various functionality built into libGDX. However, this covers only the base
framework; not all libGDX extensions are allowed. The following libGDX extensions are
approved to use: Box2D, Bullet, FreeTypeFont, Controllers, Tools, Box2DLights. Explicitly
not allowed are: Ashley, AI.
Scores & Grades
This game accounts for 20% of your final grade which can be achieved by scoring 100% in the
project.
You can score 100% in the project by fulfilling the minimal requirements for your project.
On top of that, all functionality that is implemented in addition to the minimal requirements
can result in bonus points.
You can achieve at most 10 bonus points.
By collecting bonus points, you can score up to an additional 10% on your final course score.
In sum, you can contribute up to 30% of your final score by delivering a top-notch project! :)
Troubleshooting
Fix Gradle JVM
On some machines, you run might into this issue:
To resolve it, click Open Gradle settings and select the Project SDK as your Gradle JVM:
Note: You might need to re-run Gradle afterwards. Open the Gradle Tool Window in View >
Tool Windows > Gradle and hit the sync button (two arrows forming a circle).
Fix the classpath
It's important that you use the run configuration that is delivered with the template. You will
have to adapt the classpath setting.
Windows and Linux
If you are on Windows or Linux, please remove the -XstartOnFirstThread VM option in the
run configuration:
如有需要,請加QQ:99515681 或WX:codehelp

掃一掃在手機打開當前頁
  • 上一篇:CS39A0190代做、代寫Python,Java程序
  • 下一篇:代發(fā)EI會議 EI期刊 發(fā)表EI期刊
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    2025年10月份更新拼多多改銷助手小象助手多多出評軟件
    2025年10月份更新拼多多改銷助手小象助手多
    有限元分析 CAE仿真分析服務-企業(yè)/產(chǎn)品研發(fā)/客戶要求/設計優(yōu)化
    有限元分析 CAE仿真分析服務-企業(yè)/產(chǎn)品研發(fā)
    急尋熱仿真分析?代做熱仿真服務+熱設計優(yōu)化
    急尋熱仿真分析?代做熱仿真服務+熱設計優(yōu)化
    出評 開團工具
    出評 開團工具
    挖掘機濾芯提升發(fā)動機性能
    挖掘機濾芯提升發(fā)動機性能
    海信羅馬假日洗衣機亮相AWE  復古美學與現(xiàn)代科技完美結合
    海信羅馬假日洗衣機亮相AWE 復古美學與現(xiàn)代
    合肥機場巴士4號線
    合肥機場巴士4號線
    合肥機場巴士3號線
    合肥機場巴士3號線
  • 短信驗證碼 trae 豆包網(wǎng)頁版入口 目錄網(wǎng) 排行網(wǎng)

    關于我們 | 打賞支持 | 廣告服務 | 聯(lián)系我們 | 網(wǎng)站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網(wǎng) 版權所有
    ICP備06013414號-3 公安備 42010502001045

    99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

          9000px;">

                日韩写真欧美这视频| 日韩一区二区三区观看| 欧美日韩国产天堂| 亚洲图片自拍偷拍| 欧美日韩国产综合一区二区三区 | 在线播放中文字幕一区| 亚洲午夜精品久久久久久久久| 欧美无砖专区一中文字| 日本不卡不码高清免费观看| 精品国内二区三区| 97精品久久久午夜一区二区三区| 夜夜嗨av一区二区三区四季av | 欧美成人性战久久| 国产成人在线观看免费网站| 亚洲精品你懂的| 日韩免费视频一区二区| 色网综合在线观看| 蜜臀av一区二区| 自拍偷拍国产亚洲| 制服视频三区第一页精品| 国产99一区视频免费| 亚洲国产三级在线| 国产精品久久午夜夜伦鲁鲁| 欧美喷潮久久久xxxxx| 99精品视频在线观看免费| 奇米精品一区二区三区在线观看 | 精品一区二区免费视频| 中文字幕人成不卡一区| 精品国产一区a| 欧美日韩电影在线播放| 91在线观看免费视频| 国模套图日韩精品一区二区| 亚洲国产精品人人做人人爽| 中文字幕亚洲综合久久菠萝蜜| 日韩精品一区二| 欧美综合久久久| 成人午夜看片网址| 国产精品888| 国产一区在线不卡| 麻豆精品新av中文字幕| 日韩成人一区二区三区在线观看| 成人免费在线视频观看| 中文字幕电影一区| 国产精品久久久久影视| 欧美激情一区二区三区在线| 久久久精品一品道一区| 久久伊99综合婷婷久久伊| 日韩精品一区二区三区视频播放 | 欧美日韩亚洲国产综合| 色综合久久久久久久久| 99视频精品在线| 99久久免费精品高清特色大片| 国产成人免费视| 高清不卡在线观看| 成人自拍视频在线观看| 成人v精品蜜桃久久一区| 粉嫩绯色av一区二区在线观看 | bt欧美亚洲午夜电影天堂| 高清视频一区二区| www.欧美日韩| 欧美性色黄大片手机版| 欧美精品一二三四| 日韩视频123| 国产午夜亚洲精品午夜鲁丝片| 久久久午夜精品| 国产网站一区二区| 一区二区欧美在线观看| 亚洲国产美女搞黄色| 视频精品一区二区| 激情都市一区二区| 99久久精品免费| 欧美日韩日日摸| 精品剧情在线观看| 最新国产精品久久精品| 亚洲一区免费视频| 美女www一区二区| 成人免费视频一区二区| 一本久久综合亚洲鲁鲁五月天| 欧美影院精品一区| 欧美成人午夜电影| 亚洲美女淫视频| 九九久久精品视频| 色综合色狠狠天天综合色| 欧美一区二区黄色| 中文字幕在线免费不卡| 日韩vs国产vs欧美| 99精品国产视频| 精品国产亚洲在线| 一个色妞综合视频在线观看| 国产经典欧美精品| 在线成人午夜影院| 亚洲男人的天堂网| 高清不卡一区二区在线| 欧美日本国产一区| 亚洲另类在线制服丝袜| 久久精品国产77777蜜臀| 色综合中文字幕国产 | 97精品久久久午夜一区二区三区| 91精品国产综合久久久久久 | 极品尤物av久久免费看| 在线观看91精品国产入口| 精品99久久久久久| 丝袜美腿亚洲一区二区图片| 成人高清av在线| 欧美不卡123| 男男视频亚洲欧美| 欧美亚洲高清一区| 亚洲黄色在线视频| 99精品久久久久久| 国产精品免费看片| 国产在线一区观看| 久久亚洲一级片| 久久国产精品99精品国产 | 91在线视频免费观看| 久久久亚洲国产美女国产盗摄 | 国产亚洲视频系列| 免费精品视频最新在线| 9191成人精品久久| 亚洲一区二区精品久久av| 色综合久久综合| 亚洲三级小视频| 97se亚洲国产综合在线| 综合分类小说区另类春色亚洲小说欧美 | 亚洲欧美综合在线精品| 国产盗摄女厕一区二区三区| 精品成a人在线观看| 国产一区二区三区香蕉| 久久久久久**毛片大全| 国产69精品久久久久毛片 | 成人av在线影院| 国产精品高潮呻吟久久| 99re成人精品视频| 一区二区高清免费观看影视大全| 日本精品视频一区二区| 亚洲国产综合人成综合网站| 欧美日韩一区二区三区在线| 日韩1区2区3区| 2019国产精品| 96av麻豆蜜桃一区二区| 亚洲第一会所有码转帖| 日韩欧美国产成人一区二区| 国产精品亚洲第一区在线暖暖韩国| 久久精品视频网| 91看片淫黄大片一级| 亚洲国产aⅴ天堂久久| 欧美xxx久久| 95精品视频在线| 日本欧美在线观看| 国产免费成人在线视频| 在线观看精品一区| 日本美女一区二区三区| 中文成人综合网| 欧洲一区二区三区在线| 久久99精品国产.久久久久 | 国产精品一区二区久久不卡| 久久精品一区四区| 色婷婷av一区二区三区大白胸| 亚洲国产一区视频| 精品人伦一区二区色婷婷| 成人丝袜高跟foot| 日韩高清电影一区| 国产精品久线在线观看| 69堂精品视频| 成人av电影在线播放| 久久国产人妖系列| 一区二区三区加勒比av| 久久久av毛片精品| 91精品国产福利| 色综合久久久久综合体| 国产精品资源在线| 日韩精品欧美精品| 亚洲一二三四在线观看| 精品国产乱码久久久久久免费| 91精品福利视频| 成人精品视频一区| 精品一区二区三区免费毛片爱| 亚洲永久免费av| 中文字幕av资源一区| 日韩精品在线看片z| 3atv一区二区三区| 欧美亚洲动漫制服丝袜| 成人动漫视频在线| 成人性生交大片免费看视频在线 | 丁香婷婷综合激情五月色| 毛片一区二区三区| 日韩激情在线观看| 午夜av一区二区| 五月天中文字幕一区二区| 亚洲综合一区二区| 亚洲品质自拍视频网站| 综合激情成人伊人| 最近中文字幕一区二区三区| 国产精品国产三级国产aⅴ原创 | 精品国产乱码久久久久久闺蜜| 欧美日韩成人激情| 9191久久久久久久久久久| 91.com视频| 日韩精品综合一本久道在线视频| 欧美精品在欧美一区二区少妇| 在线不卡中文字幕|