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

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

EECS 22L代做、代寫c++程序語言

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



EECS 22L Project 2: Online Poker
May 7, 2024
1 Online Poker Application
This is the second team programming project of EECS 22L, ”Software Engineering Project in C language”.
The goal of this programming exercise is to design and develop a poker application in which a user can play with
other players across the Internet. To play the game, users need to connect to the host server, enter their name, and
choose a seat. Human users will also connect to Zoom in parallel, so that players can chat and have fun together. This
version of poker will be a game among friends, with no gambling involved.
After the dealer has dealt the cards, each player will have a turn to take. The poker application should be able to deal
cards to players and maintain the game automatically. The mandatory (default) poker variant is Texas Hold’em for
this project, but different variants can be provided optionally.
This project is designed to be an interesting exercise where you can practice essential elements of software engineering
 and work in teams. In particular, you will practice specifying and documenting the software program, designing
data structures and algorithms, designing software modules, writing original source code, testing and debugging the
software program, and collaborating and communicating effectively in a team.
1.1 The rules of Poker
Poker is a relatively simple game to learn. In Texas Hold’em Poker, the dealer hands two cards to each player. Then
a round of betting takes place in a clockwise manner from the dealer. The ffrst player declares a starting bet which
the next player can either match (’call’), ’raise’, or drop (’fold’). If they cannot match the bet and choose to drop, the
game continues without them. After each player has bet, the ffrst round of the game is completed. The dealer then
places three community cards facing up in the middle of the table. Each consecutive round an additional community
 card is placed, for a maximum of ffve. Once all ffve community cards are placed, the ’showdown’ begins, where
each player compares their two cards with the cards on the table. Then the winner is the player who has the best ’hand’.
Figure 1 shows the possible poker ’hands’ available, in decreasing order of value. Further rules and documentation
can be found online.
2 Program Speciffcation
In this project, we want to design an online poker game consisting of a central server which can host a Texas Hold’em
variant of poker. Then guest users should be able to connect and play poker with the central host.
There are several features that we expect the poker program to have. We distinguish between the minimum requirements
 for this project, and more advanced options that are goals and optional features (bonus points).
1Figure 1: Different possible poker hands. Source- upswingpoker.com/poker-hands-rankings/
2.1 Basic functions that are required:
1. Each player should be able to connect with the online poker program and choose their seat, and their name
should be shown when playing the game.
2. The server keeps track of the points for each player. We do not want a gambling application, but a card game
among friends!
3. The server deals the cards to the various players, and also randomly shufffes them.
4. The server needs to properly end a game during the ffnal round and award the winner with points.
5. For this project, a graphical user interface is mandatory at the client (user) side. It is highly recommended to use
GTK 2.0.
6. Program should have at least one basic Bot Player.
7. Git version control is mandatory for this project.
8. To communicate between the server and users, TCP/IP communication should occur via sockets.
9. Unit test for all major modules in the project.
10. Well structured user/software deliverable and detailed documentation which meets the requirements speciffed in
the grading criteria.
22.2 Advanced options that are desirable (but optional): (Bonus)
1. A simple timer which lets others know how long the round is. This could be useful if users are not playing via
Zoom.
2. A scoreboard in the end showing player rankings and what poker hands that they received.
3. The ability to switch to other variations of poker such as Omaha Hi-Lo, 7-Card Stud etc..
4. Any other features that make Poker more fun.
3 Software Engineering Approach
In the design and implementation of this project, we will follow basic principles of software engineering in a close-toreal-world
 setting. You will practice the major tasks in software engineering to build your own software product. We
will not provide detailed instructions on how to design the program as we did for the assignments in EECS22. Instead,
your team needs to come up with your own choices and practice designing the software architecture of a medium-size
program and document it.
3.1 Team work
The software design programming in this course will be performed by student teams. Teams of 4-6 students will be
formed at the beginning of this project. Team work is an essential aspect of this class and every student needs to
contribute to the team effort. While tasks may be assigned in a team to individual members, all members eventually
share the responsibility for the project deliverables.
The overall tasks of software design, implementation and documentation should be partitioned among the team members,
 for example, to be performed by individuals or pairs (pair programming). A possible separation into tasks or
program modules may include:
• Poker rules
• Poker server program
• Poker client program
• Graphical user interface for Poker players
• Communication protocol (data structures for sockets)
• Smart Poker bot
• Documentation
• Testing
When planning the team partitioning, keep in mind that certain tasks depend on others and that some tasks are best
handled by everyone together.
A team account will be provided on the servers (bondi, laguna, crystalcove and zuma) for each team to
share source codes, data and document ffles among the team members. Sharing of ffles across teams is not permitted.
Every student is expected to show up and participate in team meetings. Attendance of the weekly discussion and
lab sections is mandatory for the sake of successful team work.
33.2 Major project tasks
We list several steps here to approach the medium-sized programming project.
• Design the software application speciffcation: work as a team to decide the functionalities of the program, the
input and output of the program, and other things that describe the features of the program for the users.
• Design the software architecture speciffcation: work as a team to design the data structure, program modules,
application programming interface (API) and functions between modules.
• Build the software package: write the source code and implement the program. Each team member may be in
charge of their own modules and ideally work in parallel on implementation and module testing. Use Makeffle
for rule-based compilation to integrate the modules from different owners.
• Version control and collaboration: use a version control application, i.e. Git (introduced in Lecture 3) to maintain
 the team project documentation and source code ffles. Team members can synchronize their own work with
the others through the team repository located in the team account.
• Test and debug the software: work as a team to decide the testing strategies, write automated test programs or
scripts, and debug the program when some of the test cases fail.
• Software release: release the software package with the executable program and documentation, e.g. the
README ffle, user manual, etc. Release also the source code as a package for the further developers or
maintainers. In contrast to Project 1, Project 2 has 3 software releases, alpha, beta, and ffnal release.
3.3 Deliverables
Each team needs to work together and submit one set of deliverables each week. Here is the checklist of the ffles the
team needs to submit and the due dates (hard deadlines).
Table 1: The Online Poker Project Deliverables
Week File Name File Description Due Date
1 Poker UserManual.pdf The application speciffcation 05/13/24 at 10:00am
2 Poker SoftwareSpec.pdf The software architecture speciffcation 05/20/24 at 10:00am
3 Poker Alpha.tar.gz The alpha version of the poker program, 05/27/24 at 10:00am
Poker Alpha src.tar.gz including the program source code and documentation
4 Poker Beta.tar.gz The beta version of the poker program, 06/03/24 at 10:00am
Poker Beta src.tar.gz including the program source code and documentation
5 Poker V1.0.tar.gz The released software package for the poker program 06/10/24 at 10:00am
Poker V1.0 src.tar.gz and the program source code and documentation
Note that we do require these exact ffle names. If you use different ffle names, we will not see your ffles for grading.
We will separately provide detailed templates (document skeleton, table of expected contents) for the textual documents
 and a detailed list of contents (directory structure and expected ffles) for the ffle archives. These grading
criteria will be provided at the Projects tab of the course webpage.
3.4 Submission for grading
To submit your team’s work, you have to be logged in the server zuma or crystalcove by using your team’s
account. Also, you need to create a directory named poker in your team account, and put all the deliverables in
that directory. Next, change the current directory to the directory containing the poker directory. Then type the
command:
% ∼eecs22/bin/turnin.sh
which will guide you through the submission process.
4For each deliverable, You will be asked if you want to submit the script ffle. Type yes or no. If you type “n” or
“y” or just plain return, they will be ignored and be taken as a no. You can use the same command to update your
submitted ffles until the submission deadline.
Below is an example of how you would submit your team work:
zuma% ls # This step is just to make sure that you are in the correct directory that contains poker/
poker/
zuma% ∼eecs22/bin/turnin.sh
==============================================================
EECSL 22L Spring 2024:
Project "poker" submission for team0
Due date: Mon May 13 10:00:00AM 2024
* Looking for files:
* Poker UserManual.pdf
==============================================================
Please confirm the following: *
"I have read the Section on Academic Honesty in the *
UCI Catalogue of Classes (available online at *
http://www.editor.uci.edu/catalogue/appx/appx.2.htm#gen0) *
and submit original work accordingly." *
Please type YES to confirm. yes
==============================================================
Submit Poker UserManual.pdf [yes, no]? yes
File Poker UserManual.pdf has been submitted
==============================================================
Summary:
==============================================================
Submitted on Sun May 5 00:05:31 2024
You just submitted file(s):
Poker UserManual.pdf
zuma% _
For a binary package, we expect the user to read the documentation and run the executable program as follows:
% gtar xvzf BinaryArchive.tar.gz
% evince poker/doc/poker.pdf
% poker/bin/poker
For a source code package, we expect the developer to read the documentation and build the software as follows:
% gtar xvzf SourceArchive.tar.gz
% more README
% more INSTALL
% cd poker
% make
% make test
% make clean
Again, please ensure that these commands execute cleanly on your submitted packages.
請加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp







 

掃一掃在手機打開當(dāng)前頁
  • 上一篇:代寫CPT106、C++設(shè)計編程代做
  • 下一篇:大牌包包在哪進貨,推薦十個進貨渠道
  • 無相關(guān)信息
    合肥生活資訊

    合肥圖文信息
    急尋熱仿真分析?代做熱仿真服務(wù)+熱設(shè)計優(yōu)化
    急尋熱仿真分析?代做熱仿真服務(wù)+熱設(shè)計優(yōu)化
    出評 開團工具
    出評 開團工具
    挖掘機濾芯提升發(fā)動機性能
    挖掘機濾芯提升發(fā)動機性能
    海信羅馬假日洗衣機亮相AWE  復(fù)古美學(xué)與現(xiàn)代科技完美結(jié)合
    海信羅馬假日洗衣機亮相AWE 復(fù)古美學(xué)與現(xiàn)代
    合肥機場巴士4號線
    合肥機場巴士4號線
    合肥機場巴士3號線
    合肥機場巴士3號線
    合肥機場巴士2號線
    合肥機場巴士2號線
    合肥機場巴士1號線
    合肥機場巴士1號線
  • 短信驗證碼 豆包 幣安下載 AI生圖 目錄網(wǎng)

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

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

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

          欧美日韩一级黄| 久久精品国产亚洲aⅴ| 欧美日韩国产精品成人| 亚洲欧美另类中文字幕| 激情文学综合丁香| 欧美色欧美亚洲另类七区| 久久久久91| 亚洲影视综合| 最新日韩av| 国产欧美一区二区三区视频 | 亚洲在线免费观看| 在线精品一区| 国产日韩欧美中文在线播放| 欧美久久电影| 免费影视亚洲| 久久免费高清视频| 香蕉精品999视频一区二区| 国产日韩欧美综合精品| 欧美精品一区二区视频| 美女视频黄免费的久久| 久久成人综合视频| 性伦欧美刺激片在线观看| 一区二区三区欧美亚洲| 亚洲人成网站在线观看播放| 在线观看国产一区二区| 国模精品一区二区三区| 国产亚洲精品激情久久| 国产亚洲精品aa| 国产一区 二区 三区一级| 欧美一区二区播放| 欧美一区二区免费观在线| 亚洲欧美日韩成人高清在线一区| 99精品欧美一区二区三区综合在线| 在线精品一区二区| 亚洲国内在线| 亚洲第一狼人社区| 欧美性色综合| 欧美三级午夜理伦三级中视频| 欧美a级理论片| 欧美电影在线观看完整版| 欧美精品在线观看播放| 欧美全黄视频| 国产精品亚洲综合| 国产亚洲一区二区精品| 精品二区久久| 亚洲美女淫视频| 亚洲色诱最新| 久久久久久久久综合| 蜜桃伊人久久| 国产精品www.| 在线播放日韩| 亚洲天堂av在线免费| 欧美一区二区视频在线观看| 久久中文字幕一区| 小黄鸭视频精品导航| 久久久精品动漫| 欧美日韩高清免费| 国产视频一区二区三区在线观看| 在线观看日韩www视频免费| 日韩午夜在线| 欧美中文在线免费| 欧美日产一区二区三区在线观看| 国产精品久久久久久影视| 在线观看国产一区二区| 在线亚洲免费| 欧美jizzhd精品欧美喷水| 国产精品久久久久一区二区三区共| 激情综合激情| 亚洲影院在线| 欧美国内亚洲| 激情五月***国产精品| 在线中文字幕不卡| 玖玖视频精品| 国产专区综合网| 亚洲一区在线观看免费观看电影高清| 久久精品一区二区三区不卡| 欧美性猛交xxxx免费看久久久| 韩日精品视频一区| 亚洲一区二区三区精品在线观看 | 在线视频亚洲| 蘑菇福利视频一区播放| 国产一区二区按摩在线观看| 一本色道久久综合精品竹菊| 老鸭窝毛片一区二区三区 | 亚洲无线一线二线三线区别av| 老司机免费视频久久| 国产麻豆午夜三级精品| 亚洲一区二区三区高清不卡| 欧美日韩精品一区二区三区四区| 伊甸园精品99久久久久久| 久久国产精品电影| 国产日产高清欧美一区二区三区| 亚洲免费视频中文字幕| 国产精品成人一区二区三区夜夜夜| 国产一区二区成人久久免费影院| 亚洲免费影院| 国产农村妇女精品一区二区| 亚洲午夜精品久久久久久app| 欧美激情五月| 一区二区欧美日韩视频| 欧美午夜不卡在线观看免费 | 亚洲欧美国产日韩中文字幕| 欧美午夜视频在线观看| 夜夜嗨网站十八久久| 欧美视频二区36p| 中文网丁香综合网| 欧美午夜不卡视频| 午夜精品久久久久久久99樱桃| 国产精品狼人久久影院观看方式| 亚洲网站视频福利| 欧美日韩美女在线观看| 亚洲视频中文字幕| 国产精品永久免费| 久久色在线播放| 亚洲国产欧美一区| 国产精品久久久| 欧美一区二区三区四区视频 | 亚洲国产成人一区| 欧美日本国产视频| 亚洲欧美卡通另类91av | 亚洲一级一区| 国产乱码精品一区二区三区av| 久久精品免费观看| 最新国产乱人伦偷精品免费网站| 欧美日韩亚洲不卡| 久久爱另类一区二区小说| 亚洲福利在线观看| 欧美日韩一区二区三区在线看| 新狼窝色av性久久久久久| 亚洲国产精品一区制服丝袜| 国产精品v欧美精品∨日韩| 欧美一区二区三区视频在线观看| 亚洲成人在线观看视频| 国产精品久久久久久户外露出| 久久久久国产精品一区| 99视频热这里只有精品免费| 国产一区二区三区久久| 欧美剧在线观看| 久久精品成人欧美大片古装| 亚洲乱码视频| 在线播放视频一区| 国产麻豆一精品一av一免费| 欧美黄色小视频| 久久视频这里只有精品| 亚洲免费视频中文字幕| 亚洲激情亚洲| 永久免费毛片在线播放不卡| 国产精品每日更新| 欧美日韩在线高清| 欧美国产精品v| 久久爱另类一区二区小说| 亚洲一区在线观看视频 | 亚洲欧美日韩精品在线| 亚洲人成网站在线播| 在线电影欧美日韩一区二区私密| 国产精品久久久久三级| 欧美日韩亚洲天堂| 欧美激情一区在线观看| 你懂的国产精品| 可以免费看不卡的av网站| 欧美在线视频导航| 性色av香蕉一区二区| 亚洲欧美国产高清| 午夜精品成人在线| 亚洲一区黄色| 亚洲欧美精品一区| 香蕉久久夜色| 欧美在线观看一区| 性做久久久久久久免费看| 亚洲欧美日韩久久精品| 亚洲欧美日韩中文播放| 亚洲欧美在线高清| 欧美亚洲尤物久久| 久久精品国产999大香线蕉| 欧美在线亚洲在线| 午夜精品久久久久久久久久久| 亚洲午夜久久久| 国产精品一二三四| 国产精品日韩一区二区| 国产精品美女一区二区| 国产在线国偷精品产拍免费yy| 国产精品永久| 在线日韩日本国产亚洲| 亚洲一区二区伦理| 久久九九久久九九| 欧美日韩成人一区二区三区| 欧美性片在线观看| 在线播放日韩专区| 亚洲精品一区二区三区蜜桃久 | 亚洲天堂av高清| 亚洲欧美制服另类日韩| 欧美主播一区二区三区美女 久久精品人 | 欧美精品一卡二卡| 国产精品视频一区二区高潮| 国内精品免费在线观看| 亚洲破处大片| 午夜视频精品| 欧美激情按摩| 国产亚洲欧美另类一区二区三区| 亚洲第一精品夜夜躁人人爽|