成a人片国产精品_色悠悠久久综合_国产精品美女久久久久久2018_日韩精品一区二区三区中文精品_欧美亚洲国产一区在线观看网站_中文字幕一区在线_粉嫩一区二区三区在线看_国产亚洲欧洲997久久综合_不卡一区在线观看_亚洲欧美在线aaa_久久99精品国产_欧美卡1卡2卡_国产精品你懂的_日韩精品91亚洲二区在线观看_国内一区二区视频_91丨国产丨九色丨pron

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

時間:2024-08-14  來源:  作者: 我要糾錯



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 ffles 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 ffles to Submitty. Follow the directions in the version control
handout for adding and committing ffles.
ˆ Be sure to add any additional ffles 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 ffx 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 ffgure 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 ffnd 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 ffle
answers/hw8 model-changes.pdf, list any changes you made to the model. For each, write a 1-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 fft 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 Homework
 7. This should be in your model, not your view. There is no need to duplicate ffles;
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 ffle 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 ffnding a route. You need to allow the user toselect 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 automatically
 be zoomed in or out when a route is drawn, so that the route is almost as large as
possible while still fftting in the window.
ˆ As the window is resized, make the map shrink or grow to fft the window.
ˆ Maintain the proportions of the map so that it zooms in on a route without becoming distorted.
ˆ
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 exception
 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 ffle to get credit for any features of your solution.
Writing automated tests for GUI is difffcult 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.Reffection [0.5 points]
Please answer the following questions in a ffle named hw8 reflection.pdf in your answers/ directory.
 Answer brieffy, 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 experience
 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 reffection statements.
Collaboration[0.5 points]
Please answer the following questions in a ffle 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 reffection: 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 ffgure 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 ffles 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 ffles, if any]
ˆ src/main/resources/img/*.* [your image ffles, if any]
ˆ answers/hw8 model-changes.pdf [list of changes to HW7. The ffle may simply contain
“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





 

標簽:

掃一掃在手機打開當前頁
  • 上一篇:代寫GA.2250、Python/Java程序語言代做
  • 下一篇:CSCI 2600代做、代寫Java設計程序
  • 無相關信息
    昆明生活資訊

    昆明圖文信息
    蝴蝶泉(4A)-大理旅游
    蝴蝶泉(4A)-大理旅游
    油炸竹蟲
    油炸竹蟲
    酸筍煮魚(雞)
    酸筍煮魚(雞)
    竹筒飯
    竹筒飯
    香茅草烤魚
    香茅草烤魚
    檸檬烤魚
    檸檬烤魚
    昆明西山國家級風景名勝區
    昆明西山國家級風景名勝區
    昆明旅游索道攻略
    昆明旅游索道攻略
  • NBA直播 短信驗證碼平臺 幣安官網下載 歐冠直播 WPS下載

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

    Copyright © 2025 kmw.cc Inc. All Rights Reserved. 昆明網 版權所有
    ICP備06013414號-3 公安備 42010502001045

    成a人片国产精品_色悠悠久久综合_国产精品美女久久久久久2018_日韩精品一区二区三区中文精品_欧美亚洲国产一区在线观看网站_中文字幕一区在线_粉嫩一区二区三区在线看_国产亚洲欧洲997久久综合_不卡一区在线观看_亚洲欧美在线aaa_久久99精品国产_欧美卡1卡2卡_国产精品你懂的_日韩精品91亚洲二区在线观看_国内一区二区视频_91丨国产丨九色丨pron
    欧美日韩成人激情| 午夜精彩视频在线观看不卡| 欧美亚洲禁片免费| 精品久久久影院| 一区二区三区在线视频播放 | 久久99精品视频| 在线观看日产精品| 欧美国产精品一区| 久久99国产精品成人| 欧美精品免费视频| 亚洲小说春色综合另类电影| 99re在线视频这里只有精品| 久久无码av三级| 久久99精品久久久久久动态图 | 日韩欧美一级精品久久| 亚洲亚洲人成综合网络| 色婷婷一区二区| 亚洲成av人片| 国产精品自拍av| 国产99久久精品| 精品理论电影在线观看| 日韩高清一区在线| 欧美日韩国产中文| 亚洲一区二区三区中文字幕| 色综合天天做天天爱| 中文字幕一区二区三区精华液| 国产一区二区三区免费在线观看| 日韩欧美一区中文| 欧美精品18+| 亚洲国产高清在线观看视频| 国产精品一区二区黑丝| 久久久久久久免费视频了| 国模大尺度一区二区三区| 精品少妇一区二区三区视频免付费| 首页国产欧美日韩丝袜| 欧美日韩aaaaa| 日韩精品亚洲专区| 91精品国产欧美一区二区| 日韩电影一区二区三区四区| 欧美日韩国产经典色站一区二区三区| 一区二区三区四区在线播放| 91久久精品网| 亚洲一区二区不卡免费| 欧美色网一区二区| 午夜精品久久久久久久久| 欧美军同video69gay| 视频在线观看一区二区三区| 欧美一级高清大全免费观看| 久久机这里只有精品| 精品国产一区二区三区av性色| 国产精品毛片无遮挡高清| 成人av资源在线观看| 亚洲欧美在线观看| 一本久久综合亚洲鲁鲁五月天 | 日韩一级大片在线| 欧美国产精品中文字幕| 99久久精品国产一区| 亚洲精选视频免费看| 欧美视频一二三区| 91免费在线视频观看| 国产精品不卡视频| 在线亚洲精品福利网址导航| 亚洲成国产人片在线观看| 制服丝袜中文字幕一区| 精品一区二区三区蜜桃| 欧美激情一区不卡| 在线视频综合导航| 美国av一区二区| 国产女同互慰高潮91漫画| 99久久精品久久久久久清纯| 亚洲国产精品麻豆| 欧美不卡一区二区三区四区| 顶级嫩模精品视频在线看| 伊人婷婷欧美激情| 欧美一区二区免费观在线| 国产成人亚洲综合a∨婷婷 | 日本va欧美va瓶| 26uuu亚洲| 菠萝蜜视频在线观看一区| 亚洲夂夂婷婷色拍ww47| 日韩一区二区影院| 一区二区三区在线播| 制服丝袜成人动漫| 国产精品小仙女| 一级做a爱片久久| 欧美大胆一级视频| 99久久婷婷国产| 日本va欧美va欧美va精品| 日本一区二区在线不卡| 欧美在线免费视屏| 激情文学综合丁香| 波多野结衣亚洲| 日本一区二区动态图| 欧美视频一区二区三区在线观看| 国精产品一区一区三区mba桃花 | 中文一区二区在线观看| 一本大道av一区二区在线播放 | 欧美系列一区二区| 韩国中文字幕2020精品| 亚洲天堂2016| 欧美大片在线观看一区二区| 91视频国产资源| 久久成人羞羞网站| 亚洲精品福利视频网站| 精品国内片67194| 在线免费视频一区二区| 国产精品1区2区| 亚洲成a天堂v人片| 亚洲欧洲日产国码二区| 欧美va亚洲va| 麻豆精品视频在线观看视频| 日韩理论在线观看| 精品国产乱码91久久久久久网站| 91天堂素人约啪| 国产毛片精品国产一区二区三区| 亚洲第一二三四区| 中文字幕中文字幕一区二区| 欧美刺激午夜性久久久久久久| 色香蕉久久蜜桃| 国产成人久久精品77777最新版本| 婷婷中文字幕综合| 青青草国产精品97视觉盛宴| 亚洲色欲色欲www在线观看| 精品盗摄一区二区三区| 欧美日韩免费不卡视频一区二区三区| 国产成人精品亚洲日本在线桃色| 日韩av一区二区在线影视| 亚洲欧美一区二区三区久本道91| 久久久久久亚洲综合| 666欧美在线视频| 色www精品视频在线观看| 成人中文字幕电影| 国产资源在线一区| 日韩 欧美一区二区三区| 一区二区成人在线视频 | 国产在线精品视频| 日韩电影在线免费| 亚洲一区在线看| 亚洲天堂精品视频| 国产精品天美传媒沈樵| 久久噜噜亚洲综合| 亚洲精品国产a| 欧美日韩免费一区二区三区| 93久久精品日日躁夜夜躁欧美| 亚洲欧美电影一区二区| 国产欧美精品一区aⅴ影院 | 欧美zozozo| 欧美理论电影在线| 欧美日韩在线观看一区二区| 色欧美88888久久久久久影院| 成人av先锋影音| 大胆欧美人体老妇| 欧美日韩免费一区二区三区视频| 91丝袜美女网| av中文字幕一区| 成人污视频在线观看| 丰满岳乱妇一区二区三区| 国产麻豆精品在线| 国产一区二区三区免费播放| 激情图片小说一区| 精一区二区三区| 经典三级在线一区| 黑人精品欧美一区二区蜜桃 | 在线日韩一区二区| 91久久精品网| 欧美午夜在线一二页| 在线观看国产91| 在线观看免费成人| 欧美日韩视频在线第一区| 欧美人狂配大交3d怪物一区| 欧美日韩国产a| 91精品在线免费| 欧美一级国产精品| www久久久久| 国产日韩欧美电影| 中文一区二区完整视频在线观看| 中文字幕一区二区三区在线不卡 | 国产精品91xxx| 成人av综合在线| 99精品视频一区二区三区| 99久久777色| 色一情一伦一子一伦一区| 欧美网站大全在线观看| 蜜桃视频在线观看一区| 国产精品伦一区| 亚洲美女视频在线观看| 亚洲国产毛片aaaaa无费看| 午夜精品久久久久久久久久 | caoporn国产精品| 91在线观看视频| 欧美亚洲综合网| 91精品国产综合久久精品| 日韩天堂在线观看| 久久久亚洲综合| 一区在线观看视频| 亚洲福利一区二区| 久久不见久久见中文字幕免费| 国产激情精品久久久第一区二区| av资源站一区| 9191成人精品久久|