国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看

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

代做Data Structures 2D real-time strategy game

時間:2023-12-29  來源:合肥網hfw.cc  作者:hfw.cc 我要糾錯


 

Data Structures: Assignment 3

Pathfinding

SP2, 2017

James Baumeister

May 2017

1 Introduction

As a game designer you want to develop your first 2D real-time strategy game.

You envision a game where a player is in a procedurally generated terrain map,

performing tasks with non-player characters and defending against attacks from

enemies. The type of map you want to use will feature several biomes, ranging

from deserts to lush rainforests. Each of these biomes will have different characteristics and moving through the different biomes will have different difficulty

levels. As this is your first foray into game development, you want to start with

a very simple map—a 10 × 10 square grid where the player can move north,

south, east, west, north-east, south-east, north-west, south-west. With these

criteria in mind, you decide that a graph is the perfect data structure in which

to store all the possible biomes and their connections to each other.

In this assignment we will build an undirected graph structure. A node, or

vertex, in this graph will represent a terrain biome with its position in the graph

being the centre of a 1x1 square. Each node contains information about the

node’s position in the map, as well as its terrain features, including the biome,

elevation and other locale- and weather-based characteristics. Each node can

have up to eight connections, or edges, to other nodes, depending on its position

in the map. These edges are what allow travel from one node to another.

This assignment consists of two parts. In part A you will complete a number

of helper methods that will be useful when implementing search algorithms in

the next part. In part B you will generate all the edges between each of the

nodes to form them into the 10 × 10 grid. You will also implement a number

of different search algorithms. Depth- and breadth-first searches can both find

a path from one node to another, but do it in different ways and can have

very different results. They also do not take into account the weight of the

edge or, in other words, the difficulty of travelling over particular biomes. The

Dijkstra’s and A* search algorithms both take into account the weight and so

1

more accurately provide a path that is both short and least costly, or difficult

to travel.

This assignment provides two means by which you can test your code. Running GraphGUI will provide a graphical user interface (GUI) that visualises the

graph, the terrains, the nodes and the edges. It also animates the player node,

showing the path that your search method calculates. You can use this GUI to

view the outcome of your algorithm implementations and troubleshoot1

. There

are also unit tests that will give you an idea of the accuracy of your implementations. The tests are not exhaustive and the mark should only be viewed

as a guide. Alternative tests will be run by the markers to ensure that your

answers are not hard-coded to the tests. Many exception cases are not tested,

so you should write your own testing methods. It is suggested that you complete the assignment in the order outlined in the following sections. The later

steps rely on the correct implementation of the earlier steps, particularly the

connectNodes method.

Figure 1: Importing the project through File → Import

1See Appendix A to learn how to control the GUI

2

1.1 Importing into eclipse

The assignment has been provided as an eclipse project. You just need to import

the project into an existing workspace. See Figure 1 for a visual guide. Make

sure that your Java JDK has been set, as well as the two jar files that you need

for junit to function. This can be found in Project → Properties → Java Build

Path → Libraries. The jar files have been provided within the project; there

is no need to download any other version and doing so may impact the testing

environment.

2 Part A

In this section you will complete some methods that are necessary for building

and utilising the graph structure that you will build in section 3.

2.1 Edge

The Edge class represents a connection from one node to up to eight others. An

Edge object has three class variables:

private Node node1;

private Node node2;

private double weight;

2.1.1 void calculateWeight()

The weight of an Edge should be calculated using the calculateWeight()

method upon creation of the Edge. The weight is calculated as the Euclidean

distance between the two nodes multiplied by the average biome weight between

the two nodes. This can be represented mathematically as follows:

w(e) = d(p, q) × ((b1 + b2)/2)

where b1 is the biome value of the source node, and b2 is the biome value of the

target node. d is a function that calculates the Euclidean distance between two

2D points, p and q.

2.2 EdgeTest

EdgeTest will assign marks as shown in Table 1.

2.3 Vector2

The Vector2 class represents a 2D point in space and contains an x (horizontal)

and a y (vertical) coordinate. For this assignment we are only concerned with

finding the distance between two 2D points. A Vector2 object has two class

variables:

3

Table 1: EdgeTest mark allocation

Test Marks

constructor 5

calculateWeight 5

Total: 10

public double x;

public double y;

2.3.1 public double distance(Vector2 v2)

This method should calculate the Euclidean distance between two points. The

method should be called on one Vector2 object, and passed the second Vector2

object as the parameter. The distance should be returned as a double. The

algorithm for calculating the Euclidean distance is as follows:

d(p, q) = p

(q1 − p1)2 + (q2 − p2)2

2.4 VectorTest

VectorTest will assign marks as shown in Table 2.

Table 2: VectorTest mark allocation

Test Marks

distance 5

Total: 5

3 Part B

In this section you will implement a number of methods in the Graph class.

First, you will create edges between a given set of vertices. Next, you will

implement some helper methods for navigating the graph. Lastly, you will

implement several graph searching algorithms.

4

3.1 Graph

The graph structure that you must build in this assignment forms a 10×10 grid,

with all edges between the nodes being undirected. Due to the way in which

our graph is built, node pairs have mirrored edges—node 1 has an edge to node

2, node 2 has an edge to node 1. The Graph class has no class variables.

3.1.1 void connectNodes(Node[] nodes)

This method connects all nodes in a given array to form a 10 × 10 grid-shaped

graph. This method must be successfully completed before attempting any other

graph searching methods! The provided GUI can help you visualise how well

your implementation is functioning. Before completing connectNodes, the GUI

should display as shown in Figure 2. Once all of the edges have been correctly

created, the GUI will display as shown in Figure 3. Every node in the graph

can have up to eight edges, depending on its position. Central nodes will use all

eight to connect to all their surrounding neighbours. Think about how many

neighbours corner and edge nodes have and how many edges you need to create.

In order to develop an algorithm there are some simple constants that you may

utilise:

• The top-left corner of the graph has the 2D coordinate (0, 0).

• The bottom-right corner of the graph has the 2D coordinate (9, 9).

• A node’s position is the exact centre of a biome square.

• In the provided Node[], for every node(i) such that

i mod 10 = 0

node(i) is on the left edge.

It is very important to adhere to the order of the mappings shown in Table 3 when populating a node’s edge list. Note that a node does not need

a list containing eight edges if it only requires three, but the order must be

maintained—for example, east before south, north before south-east.

3.1.2 Edge getEdge(Node source, Node destination)

This methods takes as arguments two Node objects. It should search each node’s

list of Edge objects for one that connects the two nodes and return the source

node’s edge. If there is none found, the method should return null.

3.1.3 double calculateCost(Node[] vertices)

This method should calculate the total cost of travelling from one node

(Node[0]) to a target node (Node[length-1]). The total value should be returned. If the starting and target nodes are the same, the method should return

0.

5

Table 3: Edge list index–direction mappings

Edge list index Direction of connected node

0 East

1 West

2 South

3 North

4 North-east

5 South-east

6 North-west

7 South-west

3.1.4 Node[] breadthFirstSearch(Node start, Node target)

The breadthFirstSearch method takes as arguments two Node objects—a

starting node and a target node, respectively. You must implement a breadthfirst search algorithm to find the shortest path from start to target and return that path as a Node array, ordered from start (index 0) to target (index

length−1). This method should not take into account edge weights.

3.1.5 Node[] depthFirstSearch(Node start, Node target)

The depthFirstSearch method takes as arguments two Node objects—a starting node and a target node, respectively. Unlike the breadth-first search, depthfirst searching will likely not find the shortest path, so you should see drastically

different paths being generated. depthFirstSearch should return the path as

a Node array, ordered from start (index 0) to target (index length−1). This

method should not take into account edge weights.

3.1.6 Node[] dijkstrasSearch(Node start, Node target)

The method should use Dijkstra’s algorithm to search the graph for the shortest

path from start to target while taking into account the cost of travel (i.e. edge

weight). Visualising this algorithm should show that sometimes the path may

not be the most direct route. Rather, it should be the least costly. Your

implementation should be a true implementation of the algorithm2

. Your code

will be inspected to ensure that an alternative algorithm has not been used.

2Closely follow the textbook example. Subtle differences in algorithms could impact your

performance against the tests

6

Figure 2: The GUI before completing the connectNodes method

dijkstrasSearch should return the path as a Node array, ordered from start

(index 0) to target (index length−1).

3.1.7 Node[] aStarSearch(Node start, Node target

This method should use the A* algorithm, similar to Dijkstra’s algorithm, to

search the graph for the least costly path. Unlike Dijkstra’s, which searches

in all directions, the A* algorithm uses a heuristic to predict the direction of

search. The heuristic you should use should be shortest distance, using the

distance algorithm you implemented earlier. Your implementation should be

a true implementation of the algorithm3

. Your code will be inspected to ensure

that an alternative algorithm has not been used. aStarSearch should return a

Node array containing the path, ordered from start (index 0) to target (index

length−1).

3.2 GraphTest

GraphTest will assign marks as shown in Table 4.

3This is a research task, but this website should be very helpful: http://www.

redblobgames.com/pathfinding/a-star/introduction.html

7

Figure 3: The GUI after completing the connectNodes method

A Using the GUI

A GUI has been provided to aid understanding how your graph searching algorithm implementations are functioning. The window contains a graphical

representation of the graph on the left, and three buttons on the right (see

Figure 3. The buttons labelled ‘Biomes’ and ‘Polygons’ are essentially toggles

for displaying an outline of the node squares (shown in Figure 4. ‘Biomes’ is

activated by default. The button labelled ‘Nodes’ controls whether or not the

red node circles and pink edge lines are shown—click to toggle between the two.

The blue player node will render at the nominated start node and its position

will update if a path is provided.

As the GUI operates independently to the testing suite, there are some

aspects that you must manually control in order to show the desired information.

The GraphRender class has the following constants:

private final int START_NODE = 0;

private final int TARGET_NODE = 9;

private final int ANIMATION_DELAY = 500;

private final String METHOD = "breadthFirstSearch";

You may modify these values. As an example, if you were testing your Dijkstra’s

algorithm implementation and wanted to match one of the unit tests, you could

change START_NODE to 8, TARGET_NODE to 0 and METHOD to "dijkstrasSearch".

ANIMATION_DELAY represents the delay for the blue player circle to jump along

8

Table 4: GraphTest mark allocation

Test Marks

connectNodes 10

getEdge 5

calculateCost 5

breadthFirstSearch 20

depthFirstSearch 15

dijkstrasSearch 20

aStarSearch 10

Total: 85

nodes in the path, in milliseconds; increase to slow the animation, decrease to

請加QQ:99515681 或郵箱:99515681@qq.com   WX:codehelp

 

 

掃一掃在手機打開當前頁
  • 上一篇:MA2605代做、代寫MATLAB編程語言
  • 下一篇:莆田鞋一般多少錢一雙,莆田鞋零售價格一覽表
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    流體仿真外包多少錢_專業CFD分析代做_友商科技CAE仿真
    流體仿真外包多少錢_專業CFD分析代做_友商科
    CAE仿真分析代做公司 CFD流體仿真服務 管路流場仿真外包
    CAE仿真分析代做公司 CFD流體仿真服務 管路
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真技術服務
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲勞振動
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲
    流體cfd仿真分析服務 7類仿真分析代做服務40個行業
    流體cfd仿真分析服務 7類仿真分析代做服務4
    超全面的拼多多電商運營技巧,多多開團助手,多多出評軟件徽y1698861
    超全面的拼多多電商運營技巧,多多開團助手
    CAE有限元仿真分析團隊,2026仿真代做咨詢服務平臺
    CAE有限元仿真分析團隊,2026仿真代做咨詢服
    釘釘簽到打卡位置修改神器,2026怎么修改定位在范圍內
    釘釘簽到打卡位置修改神器,2026怎么修改定
  • 短信驗證碼 豆包網頁版入口 破天一劍 目錄網 排行網

    關于我們 | 打賞支持 | 廣告服務 | 聯系我們 | 網站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

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

    国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看
    91精品视频网站| 国产激情久久久久| 国产精品午夜视频| 91久久久亚洲精品| www.日本久久久久com.| 中文字幕乱码人妻综合二区三区| 日韩免费视频播放| 高清无码视频直接看| 日韩中文字幕在线观看| 亚洲国产欧美日韩| 黄色一级一级片| 久久综合婷婷综合| 蜜月aⅴ免费一区二区三区| 日产精品久久久一区二区 | 国产精品一区久久| 久久精品91久久久久久再现| 成人羞羞国产免费| 蜜桃成人免费视频| 久无码久无码av无码| 亚洲国产精品视频一区| 波多野结衣成人在线| 亚洲制服中文| 99国产视频在线| 亚洲a在线播放| 久久久免费视频网站| 日本精品一区二区三区在线| 日韩在线视频播放| 黄色片久久久久| 欧美另类99xxxxx| 成人精品一区二区三区电影黑人 | 蜜桃日韩视频| 久久99青青精品免费观看| 国产免费一区二区三区| 亚洲精品中文字幕无码蜜桃| 国产精成人品localhost| 日韩一二区视频| 国产精品美女免费看| 国产欧美日韩精品丝袜高跟鞋| 一区二区三区精品国产| 久久久久九九九| 欧美中文字幕在线观看视频| 国产精品欧美日韩| 蜜桃av久久久亚洲精品| 欧美激情视频网址| 久久人人爽国产| 欧美精品亚洲| 欧美激情在线有限公司| 久久久女人电视剧免费播放下载| 欧美中文在线免费| 色综合91久久精品中文字幕 | 91免费在线视频| 欧洲亚洲一区二区三区四区五区| 久久精品91久久久久久再现| 国产日韩精品一区二区| 亚洲色图都市激情| 日韩一区视频在线| 国产在线视频欧美一区二区三区| 亚洲乱码一区二区三区三上悠亚 | 久久国内精品一国内精品| 国产美女主播在线| 日本高清不卡在线| 久久躁日日躁aaaaxxxx| 久久久免费精品| 黄页免费在线观看视频| 亚洲 国产 欧美一区| 国产精品欧美日韩一区二区| 99色这里只有精品| 日韩欧美手机在线| 欧美精品久久久久| 日韩视频免费观看| 97久久国产精品| 好吊色欧美一区二区三区| 亚洲欧美日产图| 国产精品久久久对白| 久久久爽爽爽美女图片| 国产资源第一页| 热久久免费视频精品| av网站在线观看不卡| 欧美大陆一区二区| 日本午夜一区二区三区| 久久躁日日躁aaaaxxxx| 久久99精品久久久久久秒播放器| 国产在线观看福利| 日韩黄色片在线| 亚洲专区在线视频| 国产精品久久久久久亚洲调教| 久久青青草原| caopor在线视频| 精品亚洲第一| 欧美中文字幕在线视频| 亚洲二区三区四区| 精品国产乱码久久久久久久软件| 久久久精品免费| 久久久久久久久久久久久国产| 91精品国自产在线观看| 国产午夜大地久久| 国自在线精品视频| 日本一本a高清免费不卡| 亚洲精品9999| 宅男av一区二区三区| 久久婷婷国产麻豆91天堂| 久久久www成人免费精品| 久久国产精品 国产精品 | 亚洲综合自拍一区| 九色精品免费永久在线| 久久天天躁狠狠躁夜夜躁2014| 国产精品天天av精麻传媒| 九色91国产| 久久久久天天天天| 国产福利视频一区二区| 99久热re在线精品996热视频| 国产一区 在线播放| 国产综合香蕉五月婷在线| 黄色国产小视频| 黄色a级片免费看| 黄黄视频在线观看| 黄色污污在线观看| 韩日欧美一区二区| 国产综合在线观看视频| 精品亚洲欧美日韩| 国产小视频免费| 国产麻花豆剧传媒精品mv在线| 国产欧美精品在线| 高清av免费一区中文字幕| 成人久久18免费网站漫画| 成人精品视频久久久久| 国产欧美高清在线| 成人毛片一区二区| 99在线免费视频观看| 国产精成人品localhost| 国产激情美女久久久久久吹潮| 久久大香伊蕉在人线观看热2| 精品国产一区二区三区久久久| 久久精品99无色码中文字幕| 国产精品免费一区二区| 国产精品久久激情| 久久国产精品久久久久久久久久| 九九热在线精品视频| 亚洲淫片在线视频| 日产中文字幕在线精品一区| 青青青在线观看视频| 欧美视频免费播放| 国产综合第一页| 成人免费在线小视频| 久久久欧美精品| 久久久精品电影| 久久69精品久久久久久久电影好| 亚洲天堂电影网| 日韩免费观看av| 精品一区二区成人免费视频| 成人av蜜桃| 久久久久久久av| 精品久久久久久综合日本| 亚洲欧美日韩综合一区| 日韩精品免费一区| 国自在线精品视频| 国产精品一区二区三区免费观看| 国产精品9999久久久久仙踪林| 久久久久久久久久国产| 国产精品久久一| 亚洲精品久久久久久一区二区| 欧美专区日韩视频| 国产日韩在线播放| 久久一区二区三区欧美亚洲| 国产精品欧美久久| 亚洲一区在线免费| 欧美中日韩一区二区三区| 国产日韩成人内射视频| 久久人人爽国产| 久久这里有精品| 日韩中文字幕三区| 欧美 日韩 国产一区| 91免费看蜜桃| 国产精品久久久久久一区二区 | 欧美主播一区二区三区美女 久久精品人 | 黄色a级片免费| 国产精品av在线播放 | 精品欧美日韩| 国产精品99久久久久久白浆小说 | 日韩在线激情视频| 欧美精品激情在线| 欧美日韩高清在线一区| 97碰在线观看| 国产精品久久久久久影视| 五月天在线免费视频| 国产综合欧美在线看| 国产成人在线精品| 欧美精品一区在线播放| 日韩av影视| 成人精品视频一区二区| 国产精品入口尤物| 日本免费a视频| www.av一区视频| 久久亚洲国产精品成人av秋霞| 日本视频一区二区在线观看| 国产日韩欧美综合| 久久精品成人欧美大片| 天天干天天色天天爽| 国产一二三四区在线观看| 久久精品久久久久|