日韩精品一区二区三区高清_久久国产热这里只有精品8_天天做爽夜夜做爽_一本岛在免费一二三区

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

代寫 CSCI 2600、代做 java 程序設計

時間:2024-08-17  來源:合肥網hfw.cc  作者:hfw.cc 我要糾錯



   CSCI 2600 — Principles of Software
Optional Extra Credit Homework 8:
RPI Campus Paths GUI
Due: Friday, Aug. 16, 2024, 11:59:59 pm
 Submission Instructions
􏰀 This assignment uses the same repository as Homework assignments 4, 5, 6, and 7, so when you are ready to start working on Homework 8, pull Homework 8 files from the repository by right-clicking on your Homework 4, 5, 6 and 7 project in Eclipse and selecting Team → Pull... Make sure that When pulling is set to Merge, then click Finish.
􏰀 Be sure to commit and push the files to Submitty. Follow the directions in the version control handout for adding and committing files.
􏰀 Be sure to add any additional files to your repo using Team/Add to Index.
􏰀 Important: You must press the Grade My Repository button, or your answers will not
be graded.
IMPORTANT NOTES:
You should have package hw8 with the usual directory structure. Write your code under src/main/java/hw8 and your tests under src/test/java/hw8 (shows as hw8 under src/test/java in Package Explorer).
Introduction
In Homework 7, you wrote a program that found shortest routes between buildings on the RPI Campus. Now we are asking for a graphical user interface (GUI) that visually draws routes.
You will build your GUI using Java’s JavaFX library. In completing this assignment, you will get practice using JavaFX, event-driven programming, and the MVC (Observer) design pattern.
Important note: you are not allowed to use Swing, AWT, or any library or framework other than JavaFX and the standard Java library.
You are expected to fix any bugs from Homework 7 that affect the correctness or performance of your application in Homework 8. Furthermore, your Homework 8 should use the model you created in Homework 7. This may require that you modify your Homework 7 code, that is OK, but be sure that Homework 7 continues to pass all tests!
   
GUI Requirements
You will write a GUI and a main class to launch it named RPICampusPathsMain.java. This assignment is deliberately open-ended: the exact appearance and functionality of your GUI are up to you. The only requirements are documented below.
For the most part, we are not grading on aesthetics: it doesn’t matter whether your GUI looks pretty as long as it implements the required features. Nevertheless, a design which is genuinely confusing or hard to use (at our discretion) may not receive full credit. For example, we will deduct points if we can’t easily figure out how to select the two buildings, if it’s hard to see the selected path, or if we can only see the whole GUI on a 27-inch screen. In addition, your program should be generally responsive: for instance, the GUI should not take an unusually long time to find and display paths.
Your GUI is a new View and Controller for your Campus Paths application. Ideally, you should not have to make any changes to your Homework 7 model classes — they already implement all the model functionality that you need. If you have to make any small changes (for instance, if your design in Homework 7 was poor and some model methods were too closely tied to your text view), then you may do so. As always, all tests from previous homework assignments must continue to pass, so you may also need to change your Homework 7 View and Controller in that case. In file answers/hw8 model-changes.pdf, list any changes you made to the model. For each, write a **2 sentence explanation of why the change was necessary and what you could have done differently on Homework 7 to create a more general and reusable Model. If you made no changes, write “None” for this section.
Window size
At startup, your GUI must fit and be usable on a screen with resolution 1024 x 768 and above. Most computers provide a way to change the screen resolution, which you can use for testing.
Required features
Your GUI must provide the following features:
􏰀 At startup, load the map data from data/RPI map data Edges.csv and
data/RPI map data Nodes.csv which you should already have in your repository from Home- work 7. This should be in your model, not your view. There is no need to duplicate files; load them directly from the data/ directory.
􏰀 Display the map of RPI campus. You may remove the part at the bottom with the building names if you need.
Important note: download the map from the course Web site and save it into your data/ directory: data/RPI campus map 2010 extra nodes edges.png. DO NOT commit the map as the large file may break the limit on repo size. When testing, we will copy the map into your data/ directory under the name RPI campus map 2010 extra nodes edges.png.
􏰀 Allow the user to select two buildings for finding a route. You need to allow the user to

select endpoints of a path by clicking with the mouse on the map. In addition, you may also implement some other approach, like selection using menus or dropdown lists.
􏰀 Mark or highlight the selected buildings and/or path endpoints on the map.
􏰀 Draw the shortest route between the selected buildings on the map. The map should auto- matically be zoomed in or out when a route is drawn, so that the route is almost as large as possible while still fitting in the window.
􏰀 As the window is resized, make the map shrink or grow to fit the window.
􏰀 Maintain the proportions of the map so that it zooms in on a route without becoming dis-
torted.
􏰀 Place the map in a ScrollPane so it can be displayed full-size. When displaying a route or buildings, jump to that spot on the map to resize if needed. (Hint: you probably need to override getPrefViewportHeight() and getPrefViewportWidth() in your “canvas” class for scrolling to work.)
􏰀 Allow the user to drag the map with the mouse to change the portion that is shown.
􏰀 Add zoom buttons, possibly with a way to recenter the image for zooming if a hand is not
available to drag it (e.g., mouse double click).
􏰀 Allow the user to reset the GUI by clicking a reset button. This button should clear all markings on the map and all other controls (such as building selectors), setting the GUI back to its initial state.
􏰀 Operate robustly. No matter what the user does, your program should never allow an excep- tion message to bubble up to the console window, and your GUI should never crash, freeze, display rendering artifacts, or reach a buggy/invalid state.
JavaFX scene elements and GUI builders
Use only components from the JavaFX library for this assignment.
Some IDEs, such as NetBeans, will let you specify the appearance and behavior of your GUI and automatically generate the code for you. JavaFX also implements FXML, a markup language from which GUI code can be generated. You may use these tools, if you wish.
1 Launching your GUI
We will launch your GUI from Run As → Java Application.
List all features you implemented in answers/hw8 features.pdf. You must commit
answers/hw8 features.pdf file to get credit for any features of your solution.
Writing automated tests for GUI is difficult and usually involves special frameworks that are beyond the scope of this course. For this reason, you are not required to write unit tests. We will test your solution by running your main program.

Reflection [0.5 points]
Please answer the following questions in a file named hw8 reflection.pdf in your answers/ direc- tory. Answer briefly, but in enough detail to help you improve your own practice via introspection and to enable the course staff to improve Principles of Software in the future.
(1) In retrospect, what could you have done better to reduce the time you spent solving this assignment?
(2) What could the Principles of Software staff have done better to improve your learning expe- rience in this assignment?
(3) What do you know now that you wish you had known before beginning the assignment?
We will be awarding up to 1 extra credit point (at the discretion of the grader) for particularly
insightful, constructive, and helpful reflection statements.
Collaboration[0.5 points]
Please answer the following questions in a file named hw8 collaboration.pdf in your answers/ directory.
The standard integrity policy applies to this assignment.
State whether you collaborated with other students. If you did collaborate with other students,
state their names and a brief description of how you collaborated.
Grade Breakdown
􏰀 Model Changes: 5 pts.
􏰀 Basic Functionality of GUI Application: 8 pts.
􏰀 Features of GUI Application: 3 pts. per required feature 􏰀 Collaboration and reflection: 1 pt.
Hints
General GUI Advice
If you have never used JavaFX, it is well worth your time to study some tutorials, read the example code, and generally get comfortable with GUI programming before diving into the assignment.
Abstraction functions, representation invariants, and checkRep() are not required for GUI classes because they generally do not represent ADTs.
User testing is a great way to verify that your interface is as easy to use as you think it is. Show your GUI to your friend/roommate/family member. Can they figure out how to use it without directions from you?
 
As usual, remember to follow good methodology and class decomposition among other best practices for style.
Programming With JavaFX
Oracle’s JavaFX tutorials are a useful resource. Also remember to use the Java API and JavaFX documentation, to see what classes and methods are available and how to use them.
What to Turn In
You must commit and push the following files to Submitty. Don’t forget to click “Grade My Repository” button on Submitty!
􏰀 src/main/java/hw8/RPICampusPathsMain.java
􏰀 src/main/java/hw8/*.java [your GUI classes]
􏰀 src/main/resources/fxml/*.fxml [your FXML files, if any]
􏰀 src/main/resources/img/*.* [your image files, if any]
􏰀 answers/hw8 model-changes.pdf [list of changes to HW7. The file may simply con- tain “None”.]
􏰀 answers/hw8 features.pdf [list of all features you implemented.]
􏰀 answers/hw8 reflection.pdf
 answers/hw8 collaboration.pdf
Errata
Check the Submitty Discussion Forum for possible errata or other relevant information. Q&A
None yet.
Parts of this homework were copied from the University of Washington Software Design and Implementation class by Michael Ernst.

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












 

掃一掃在手機打開當前頁
  • 上一篇:MKTG2509 代做、代寫 C++,JAVA 編程語言
  • 下一篇:INFS3208 代做、代寫 PYTHON 程序設計
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    仿真分析咨詢外包服務-結構 / 熱 / CFD流體 / 電磁 / 光學CAE代做
    仿真分析咨詢外包服務-結構 / 熱 / CFD流體
    流體仿真外包多少錢_專業CFD分析代做_友商科技CAE仿真
    流體仿真外包多少錢_專業CFD分析代做_友商科
    CAE仿真分析代做公司 CFD流體仿真服務 管路流場仿真外包
    CAE仿真分析代做公司 CFD流體仿真服務 管路
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真技術服務
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲勞振動
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲
    流體cfd仿真分析服務 7類仿真分析代做服務40個行業
    流體cfd仿真分析服務 7類仿真分析代做服務4
    超全面的拼多多電商運營技巧,多多開團助手,多多出評軟件徽y1698861
    超全面的拼多多電商運營技巧,多多開團助手
    CAE有限元仿真分析團隊,2026仿真代做咨詢服務平臺
    CAE有限元仿真分析團隊,2026仿真代做咨詢服
  • 豆包網頁版入口 Trae 目錄網 排行網

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

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

    日韩精品一区二区三区高清_久久国产热这里只有精品8_天天做爽夜夜做爽_一本岛在免费一二三区

      <em id="rw4ev"></em>

        <tr id="rw4ev"></tr>

        <nav id="rw4ev"></nav>
        <strike id="rw4ev"><pre id="rw4ev"></pre></strike>
        日韩视频在线观看一区| 欧美wwww| 中文亚洲欧美| 国产成人精品网址| 天天综合色天天| 欧美日韩中文字幕| 国产成人精品免费网站| 91精品国产91| 亚洲一区中文| 国产一级片在线播放| 欧美在线日韩精品| 一级日本免费的| 伊人伊成久久人综合网小说| 国产免费电影网站入口| 91久久精品午夜一区二区| 国产欧美日韩在线| 在线精品视频免费播放| 国产劲爆久久| 91极品视频在线观看| 国产欧美日产一区| 欧美日韩不卡在线视频| 51精品免费网站| 亚洲三级国产| 中文字幕精品视频| 欧美不卡123| 国产一级网站视频在线| 香蕉人人精品| 国产久卡久卡久卡久卡视频精品| 中文字幕欧美日韩va免费视频| 国产又粗又猛又爽又黄91精品| 在线日韩精品视频| 中文精品电影| 精品乱人伦一区二区三区| 一区免费视频| 97最新国自产拍视频在线完整在线看| 国产黄在线播放| 一区在线播放视频| 色综合天天综合网天天狠天天| 国精品产品一区| 免费在线视频一级不卡| 日韩精品在线免费观看视频| 伊人国产视频| 久本草在线中文字幕亚洲欧美| 色偷偷一区二区三区| 中文字幕在线官网| 成人精品国产福利| 在线国产99| 成人久久久久| 日韩精品在线播放| 99视频精品全国免费| 精品激情国产视频| 国产手机视频一区二区| 久久99精品久久久| 国产福利在线播放| 精品久久久视频| 中文国产字幕在线观看| 成人一区二区不卡免费| 午夜一区二区三区免费| 蜜臀久久精品| 欧美乱大交xxxxx免费| 久久视频一区| 日韩欧美国产不卡| 日韩免费视频一区二区视频在线观看| 92久久精品| 一区二区高清在线| 国产福利一区二区精品秒拍| 伊人伊成久久人综合网小说| www中文字幕| 一区二区欧美国产| 欧美日韩国产中文| 韩国v欧美v日本v亚洲| 91精品xxx在线观看| 日韩在线精品视频| 在线国产91| 国产黄色片大全| 中文字幕在线播出| 拍真实国产伦偷精品| 国产一区 二区 三区一级| 亚洲丝袜一区| 免费在线观看国产黄| 国产黄在线看| 亚洲第一中文字幕| 亚洲综合视频一区| 欧美三级日本三级少妇99| 欧美日韩午夜精品| 中文字幕 亚洲视频| 一级片免费在线播放| 亚洲一区日韩在线| 7799精品视频天天看| 国产久卡久卡久卡久卡视频精品| 国产小视频免费在线观看| 国产成人精品免费久久久久| 亚洲乱码中文字幕| 免费视频中文字幕| 欧美日韩精品免费在线观看视频| 欧美色视频一区二区三区在线观看| 中文字幕亚洲第一| 日韩欧美中文在线视频| 在线视频一区二区三区在线播放| 亚洲一区中文| 91精品国产自产在线| 中文字幕亚洲第一| 日本精品在线中文字幕| 国产成免费视频| 欧美日韩视频免费| 亚洲成年人在线播放| 国产亚洲二区| 影音先锋中文字幕在线观看| 视频一区三区| 久久精品最新免费国产成人| 欧美日韩国产不卡| 欧美日韩在线观看成人| av手机天堂| 国产在线高清精品| 国产欧美日韩中文字幕在线| 日韩黄色在线播放| 不卡一区2区| 一区二区三区四区五区视频在线观看| 久久中文精品| 国产超级va在线视频| 国产欧美 在线欧美| 亚洲小说春色综合另类网蜜桃| 精品亚洲永久免费| 久久久精品欧美| 欧美日韩高清| 精品日韩在线观看| 欧美日韩国产中文精品字幕自在自线| 91亚洲欧美| 亚洲丝袜一区| 国内精品不卡| 日韩不卡中文字幕| 国产偷国产偷亚洲清高网站| 日韩精品手机在线观看| 中文字幕日韩欧美在线视频| 一区三区二区视频| 欧美国产一区视频在线观看| 91精品国产日韩91久久久久久| 国产欧美第一页| 国产一二三区精品视频| 日韩精品资源二区在线| 国产欧美日韩在线看| 中文字幕在线亚洲| 精品国产免费视频| 欧美国产一区视频在线观看| 91久久精品国产91久久| 国产一级免费| 日韩在线视频免费观看高清中文| 91久久精品国产91久久| 欧美三级中文字幕| 中文在线а√在线8| 欧美变态tickling挠脚心| 日韩在线观看一区| 一级一片免费视频| 欧美日韩综合在线观看| 国产在线播放一区二区| 中文字幕视频一区二区三区久| 免费日韩精品中文字幕视频在线| 国产欧美日韩精品综合| 亚洲午夜久久| 精品三级在线| 亚洲美女视频一区| 欧美亚洲国产免费| 国产欧美三级| 欧美三级精品|