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

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

代寫Project 2: Connect 4、代做Python設計編程
代寫Project 2: Connect 4、代做Python設計編程

時間:2025-02-21  來源:合肥網hfw.cc  作者:hfw.cc 我要糾錯



Project 2: Connect 4
Due date and time: Monday, 2/19/25, 11:59 pm 
Checkpoint: Monday, 2/12/24, 11:59 am

Available for all students M-F before 8am & after 5pm, all day Sat/Sun

Overview
For this project, you will implement three versions of a Python console-based Connect Four game:
1.2-player mode 
2.1 player vs. AI 
3.1 player vs. internet AI
Project Goals
1.Implement each mode separately in its own Python file.
2.Reuse as much code as possible across the different versions.
3.Do not modify the provided connect4.py game logic.

Game Details
●Traditional Connect Four Rules
○Connect Four is a 2 player game where one is red and the other is yellow. 
○Players take turns to drop or pop a disc of their color. 
○Connect 4 discs of your color horizontally, vertically, or diagonally to win. 
○If you're not familiar with the rules of the game, you can review the rules on Wikipedia's Connect Four page.
●Variation
○Implement both traditional rules and the "Pop Out" variation. 
○At each turn, you can pop out (remove) a disc of your color from the bottom row of the board instead of dropping another disc in.  
●Flexible Board Sizes
○Support board sizes from 4x4 to 20x20. 
●Red Moves First: 
○Red player always moves first.

Getting Started
●From the project 2 folder, download the project2_starter.zip file containing  starter files shown below. Unzip the file and place all starter files into the same working directory.  

●A client_short.py file will be provided after lab 7’s due date.
○This file is only required for the part 3 of this project.
●Read the provided code to understand how the game logic works



Program 1: Local 2-player Game
Functionality:
●Allow two players to play Connect Four using Python shell.
●To start, ask users to specify the board size before starting the game.
●At each turn, display the current state of the board and indicate whose turn it is.
●Clearly instruct users on how to specify the board size and make moves.
●Allow column selection using numbers (e.g., 1 for the far-left column).
●Validate moves and handle invalid inputs gracefully, providing error messages as needed.
●When the user is asked to specify a move but an invalid one is specified (such as dropping into a column that is full), an error message should be printed and the user should be asked again to specify a move. In general, erroneous input at the Python shell should not cause the program to crash; it should simply cause the user to be asked to specify his or her move again.
○Ex: “Invalid Move”
●The game proceeds, one move at a time, until the game ends, at which point the program ends.
Requirements:
●connect4.py, which contains the provided connect four game logic.
○Note: You must not modify this module but build your game on top of it.
○Recommendation: Read through the provided code, docstrings, and comments to understand how the game logic works.
○Experimentation: Use the Python shell to experiment with the module and comprehend its functionalities.
●connect4_ui.py, which contains utility functions for the 2 player game. The  required functions are described below. You can create additional helper functions as appropriate:
○make_new_game()
■Asks the user for the number of rows and columns.
■The number of rows and columns can be from 4 to 20.
■Once the user provides valid rows and columns, create new game and return the connect4.Gamestate
○print_board(state)
■Returns a string holding the contents of a game board, given a GameState
■The string should contain all lines of the appropriate display
■An example board display is shown below
●Note the spacing difference when the column number requires 2 digits. 
■If it’s red’s turn, display “RED’s turn” after the board
■If it’s yellow’s turn, display “YELLOW’s turn” after the board
■If red wins, display “RED wins!”
■If yellow wins, display “YELLOW wins!” 
○choose_move(state)
■Asks the user to choose a move, returning a tuple whose first element is DROP or POP and whose second element is a valid column number.
■Asks the user for a move, should only return a valid move
■Keep asking user if wrong move type or column is detected
○make_move(state, move)
■Makes the given move against the given state, returning the new state.
■For a valid move, return the new state. 
■Raise connect4.InvalidMoveError if invalid operation detected.
■Implement exception handler to catch this exception. If connect4.InvalidMoveError exception is caught, return the original state.
●connect4_console.py, which implements the 2-player game.
○All code should be implemented inside the provided run_console_ui() function. 
○Utilize functions defined in connect4 and connect4_ui modules.
○If a move is illegal, such as dropping a disc into a full column or popping a column where the bottom disc is not the player’s color, the program should indicate “Invalid Move” and ask the same player for another move. This applies to both players.







Here is an example of a game with 20 columns and 5 rows:



 

Here is an example of how Pop works:

Program 2: 1 Player game against AI 
Functionality:
●Allow a human player (red) to play against an AI player (yellow).
●AI is always the 2nd player in yellow.
●Maintain the same user interaction and board display rules as in Program 1.
●Implement a simple AI based on random selection.
●Extra credit: implement a more sophisticated AI for the Connect 4 AI Tournament. More details provided later in the document.
Requirements:
●connect4_ui_ai.py, which implements the ai player functionality.
○ai_move(state)
■Takes connect4.GameState as input
■Asks the AI to choose a move, and the AI will return a tuple with the following format (move, column number).
■The move is either DROP or POP, which are constants defined as 1 for DROP and 2 for POP
■The column number should be from 1 to the number of columns for the board.
■For full credit, you can simply implement the AI with random numbers.
●For extra credit, you can implement a more complex AI for the ICS 32 Connect 4 AI Tournament. More details are presented at the end of this doc.
■Note: the AI only needs to return a tuple consisting of a valid move and a column within the valid range of columns. The entire move may still be invalid due to certain circumstances. We will address this issue inside of connect4_console_ai.py.
■Hint: helper functions would be useful here.
●connect4_console_ai.py, which implements the 1 player game against AI
○All of the code needs to reside inside the run_console_ui() function.
○Utilize functions defined in connect4, connect4_ui, and connect4_ui_ai.py modules.
○If a move is illegal, such as dropping a disc into a full column or popping a column where the bottom disc is not the player’s color, the program should indicate “Invalid Move” and ask the same player for another move. This applies to both the human and AI players.

Program 3: Networked Connect 4 vs Server AI
Functionality:
●Play Connect Four against an AI server over the network, by connecting to a server that I will provide. 
●Your program will act as a client that connects to a server.
●When this program starts, the user will need to specify the host (either an IP address, such as 192.168.1.101, or a hostname, such as www.ics.uci.edu) where a Connect Four server is running, along with the port on which that server is listening.
●Once the user has specified where to connect, the program should attempt to connect to the server. If the connection is unsuccessful, print an error message specifying why and end the program. If, on the other hand, the connection is successful, the game should proceed, with the client acting as the red player (and moving first) and the server AI acting as the yellow player. (Of course, the user will need to specify the size of the board before the game starts.) For red player moves, the user should specify the move at the Python shell, as in your first program; for yellow player moves, the program should instead communicate with the server and let the server determine what move should be made.
●As in the first program, the game proceeds, one move at a time, until the game ends, at which point the program ends.
●User Inputs:
○Host (IP address or hostname) where the server is running.
○Port number of the server.
●Connection Handling:
○Attempt to connect to the server.
○If the connection fails, print an error message and end the program. If successful, proceed with the game.
●Game Interaction:
○The red player (user) specifies moves, while the server determines yellow player moves.
○Follow the same move validation and error handling practices as in Program 1.
●Protocol
○Need to follow the CFSP protocol to be described later in this document.

Requirements:
●client_short.py, which implements the networking functions via sockets.
○You should have implemented this during the lab.
○We are providing fully functional networking code for you to utilize.
○Do not change the code in this file.
●connect4_network_client.py, which implements the game vs the internet AI.
○All of your  code needs to reside inside the run_console_network() function.
○Utilize functions defined in connect4, connect4_ui, connect4_ui_ai.py, and client_short modules.

Where is the ICS 32 Connect 4 server?
●Information about where the server is running will be distributed on Ed Discussion; I'll also keep you posted about planned downtime.
●Please note that the ICS 32 Connect Four server is running on a machine on the ICS network that is not exposed to the open Internet. In order to connect to it, you will need to be connected to the campus network, which means you'll either need to be on campus or you'll need to be connected to something called the campus VPN, which allows you to access the campus' network from off-campus. Note, also, that certain residential areas are not connected to a part of the campus network that will allow you direct access to the ICS 32 Connect Four server, so you'll need to use the campus VPN in those cases. In general, if you're not able to connect to the ICS 32 Connect Four server, the first thing you should try is using the campus VPN.
●Connecting to the campus VPN requires that you install some software, which you can obtain from UCI's Office of Information Technology at the following link:
●Campus VPN software
●Open the link above, find the section titled Software VPN (as opposed to WebVPN, which won't work for this purpose), and click the link to download the appropriate version of the VPN software for your host operating system. This will require you to log in with your UCInetID and password. Download the one that's appropriate for your host operating system and install it; instructions for setting it up are available from that page, as well.


The Connect Four Server Protocol (CFSP)
Though each of you will be writing a completely separate program, your programs are expected to be able to connect to the Connect Four server via the Internet. There is only one server that we'll all share, so that requires us to agree on a single way to communicate with it.
Any time you want programs to be able to communicate with the Internet, there needs to be a protocol, which is a set of rules governing what each party will send and receive, and when they will do it. 
You can think of a protocol like rules you follow when talking on 2 walkie-talkies. Each participant knows its role, so that it will know what to say and what to expect the other participant to say at any given time. 

Many protocols have been defined that govern how various programs send and receive information via the Internet. For example, the Hypertext Transfer Protocol (HTTP) is what your browser uses to connect to a web server, request a web page, and receive a response. 
For this project, we will use a custom protocol called the ICS 32 Connect Four Server Protocol: CFSP.
CFSP conversations are relatively simple. They are predominantly centered around sending moves back and forth, with the assumption that both parties can determine the game's state by applying these moves locally.
Below is an example sequence of messages between the client and server. Each cell shows the data sent by the corresponding party. In the first row, Client sends “GAME 5 5”. The Server receives this message and sends “START”. Once the Client receives “START”, it sends “USER 0 5”. This continues for 4 turns. The client detects the winning condition and closes the connection.

Client    Server
GAME 5 5    
    START
USER 1 5    
    RECEIVED
MOVE    
    1
COLUMN    
    4
USER 1 4    
    RECEIVED
MOVE    
    1
COLUMN    
    3
USER 1 3    
    RECEIVED
MOVE    
    1
COLUMN    
    2
USER 1 3    
    RECEIVED
MOVE    
    1
COLUMN    
    1
Once the client connects to the server, the CFSP dictates the following sequence of communication. All messages should end with the end-of-line sequences of “\r\n”. (This two-character sequence, which is common in Internet protocols, is called a carriage return and line feed sequence, a sequence so common that it's sometimes abbreviated CRLF.)
1.To start the game, the client sends “Game num_rows num_columns“, where num_rows and num_columns should be replaced by integers representing the board dimensions.
a.Ex: “Game 10 10”
2.Upon receiving this message, the server will respond with “START”
3.Once the client receives “START”, it will start the game.
4.After starting the game, the client should prompt the user for their move. Once a valid move is made by the user, the client will send the following message to the server:
a.“USER move column”, where move should be DROP or POP and column should be an integer indicating the column to perform the action on.
b.Ex: “USER 1 3”
5.Once the Server receives the user’s move, the Server sends “RECEIVED” to confirm receipt of the user’s move.
6.After sending the user move, the client sends the following message to wait for the server AI’s move
a.“MOVE”
7.The server will only send the AI’s move after receiving the “MOVE” message from the client.
a.The server will send a string holding an integer value. “1” for DROP or “2” for POP.
8.After receiving the server’s move, the client will send the following message to prompt the AI for the column
a.“COLUMN”
9.The server will only send the column info after receiving “COLUMN”
a.The server will send a string holding an integer value (i.e. “9”) to indicate the column for the action. 
10.This process repeats itself until one player wins. At each step, the state of the board is printed.
11.The client is responsible for detecting the winning condition. After the winning condition is detected, the client will call print_board and print out the return value. Then, the client will close the connection to the server.


Extra Credit Details:
●There will be a separate Gradescope submission for the AI Tournament. 
●Only submit the connect4_ui_ai.py file. ai_move function will be used to evaluate your AI.
●Up to 10% extra credit for submitting an AI player which can consistently win against the server. Best out of 10 random games with randomly sized boards.
○2% for every game won after winning 5 games.
○Ex: winning 8 games = 6% extra credit 
○Judged by autograder
●Additional 10% extra credit for top 10% placement in the AI Connect 4 AI Tournament.
●Note: your AI player will have limited memory and compute resources. Your player will time out and lose a turn if a turn takes over 10 seconds. If the program times out more than 6 times, the player forfeits the match. 

Additional Information for Students
●Zip and Unzip instructions:
○macOS:

Submission Guidelines
●To submit your work, follow these instructions
○High level design document
■project2_design.pdf
○Your submission should include only the files provided and the design document. 
■Do not change the file names.
○Make sure all of the .py files are all in the same directory. 
○Zip up all the files for the submission
■Do not include and subdirectory in your zip file
○Submit the zip file to Gradescope
○For the testing of the networked connect 4, you need to connect to the server arcala-1.ics.uci.edu at port number 8000 with your client program. Make sure to use the updated client_short.py file which provides you with your IP and timestamp. 
■Play a complete game. 
■Record the IP, start time, and complete time.
■Enter this info along with your name in this document:
■This will be manually graded. No Gradescope submission necessary for this portion in the Gradescope assignment.

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



 

掃一掃在手機打開當前頁
  • 上一篇:紅星花全國客服電話-紅星花24小時人工服務熱線
  • 下一篇:悠悠分期全國客服電話-悠悠分期24小時人工服務熱線
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    流體仿真外包多少錢_專業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怎么修改定
  • 短信驗證碼 寵物飼養 十大衛浴品牌排行 suno 豆包網頁版入口 wps 目錄網 排行網

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

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

    国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看
    y111111国产精品久久婷婷| 狠狠综合久久av| 亚洲在线一区二区| 欧美激情亚洲天堂| 久久精品国产精品亚洲精品色| 国产美女久久久| 成人精品一二区| 国产精品久久婷婷六月丁香| 日本一区二区在线视频观看| 欧美久久综合性欧美| 91禁国产网站| 亚洲精品免费av| 国产美女精品免费电影| 久久成人综合视频| 黄色www在线观看| 国产精品视频永久免费播放| 欧美日本啪啪无遮挡网站| 欧美日韩国产精品一区二区| 久久久久久久久久久91| 日本高清不卡一区二区三| 久久综合精品一区| 免费在线观看毛片网站| 国内精品模特av私拍在线观看| 久久久999免费视频| 日韩精品久久一区二区三区| 久热精品视频在线| 国产伦精品一区二区三| 欧美一级片在线播放| 国产精品人人妻人人爽人人牛| 日韩国产精品一区二区三区| 97精品视频在线| 国产999视频| 国产精欧美一区二区三区| 中文字幕人妻熟女人妻洋洋| 7777精品伊久久久大香线蕉语言| 欧美激情亚洲精品| 成人久久18免费网站图片| 蜜月aⅴ免费一区二区三区| 97欧洲一区二区精品免费| 亚洲最大av在线| 视频一区视频二区国产精品| 国产乱码精品一区二区三区日韩精品 | 日韩av一区二区三区在线观看| 高清不卡日本v二区在线| 午夜在线视频免费观看| 国产精品九九九| 国产奶头好大揉着好爽视频| 日日碰狠狠丁香久燥| 国产精品久久99久久| 91国产在线免费观看| 国内一区二区在线视频观看| 色综合影院在线观看| 久久综合入口| 精品无码av无码免费专区| 日韩中文字幕组| 九九久久国产精品| 国产成人精品视频在线观看| 欧美少妇在线观看| 亚洲综合精品伊人久久| 国产精品美女久久久免费| 国产成人在线一区| www国产亚洲精品| 狠狠色综合一区二区| 日韩和欧美的一区二区| 久久精品国产视频| 国产精品亚洲激情| 亚洲AV无码成人精品一区| 国产精品成人v| 久久精品亚洲精品| 国产xxxxx视频| 91精品美女在线| 高清欧美精品xxxxx| 五月婷婷综合色| 欧美激情第1页| 国产精品美女在线观看| 久久久久久九九| 国产成人91久久精品| 99国产视频| 欧美一区视频在线| 亚洲a∨一区二区三区| 久久久久久久免费视频| 91精品一区二区三区四区| 国产女人18毛片| 国产一级不卡视频| 国产亚洲二区| 国产在线999| 免费看日b视频| 欧美日韩精品不卡| 欧美性在线视频| 青青视频免费在线| 久国内精品在线| 国产精品免费一区二区三区在线观看| 国产在线观看欧美| 精品欧美一区免费观看α√| 欧美精品久久久| 欧美日韩精品综合| 欧美自拍视频在线| 亚洲免费在线精品一区| 亚洲专区国产精品| 国产精品福利在线| 国产精品九九久久久久久久| 国产精品电影网站| 欧美激情二区三区| 亚洲黄色一区二区三区| 日本一区免费观看| 欧美性大战久久久久| 欧美 日韩 国产精品| 女女同性女同一区二区三区91 | 精品国产一区二区三区无码| 国产精品成人国产乱一区| 99视频国产精品免费观看| 九九九久久国产免费 | 日韩欧美亚洲v片| 亚洲国产精品影视| 一区二区不卡在线视频 午夜欧美不卡'| 99爱精品视频| 国产一区二区三区免费不卡| 黄色小网站91| 欧美一区二区影院| 欧美性猛交久久久乱大交小说| 欧美成在线视频| 久热精品视频在线| 久久精品国产综合| 精品国内亚洲在观看18黄| www.日韩免费| 久久久国产精品免费| 国产精品美女在线| 日韩av成人在线观看| 热99精品只有里视频精品| 国产在线精品91| 777国产偷窥盗摄精品视频| 日韩一区av在线| 精品产品国产在线不卡| 亚洲综合中文字幕在线观看| 日韩av大全| 精品日韩欧美| 久久亚洲中文字幕无码| 国产精品男人爽免费视频1| 久久免费精品视频| 久久久免费av| 国产精品第一页在线| 亚洲免费av网| 欧美性大战久久久久xxx| 日本国产欧美一区二区三区| 欧美二区在线| av免费中文字幕| 日韩一区二区久久久| 精品久久久久久一区| 国产精品对白刺激| 中文字幕一区二区中文字幕| 亚洲精品成人自拍| 日韩精品xxxx| 精品视频免费观看| 99久久精品免费看国产四区 | 99视频免费播放| 91av在线不卡| 久久久精品久久久| 久久66热这里只有精品| 久草视频这里只有精品| 国产精品无码av在线播放| 精品国产乱码久久久久久88av| 国产成人久久久| 久久综合久久美利坚合众国| 国内免费久久久久久久久久久| 亚洲熟女乱色一区二区三区| 热99精品里视频精品| 91麻豆蜜桃| 国产精品国产三级国产aⅴ9色| 国产精品久久久影院| 日本伊人精品一区二区三区介绍| 日韩精品无码一区二区三区 | 国产乱子伦精品| 久久婷婷国产精品| 国产精品日韩在线| 色香蕉在线观看| 亚洲综合精品一区二区| 黄色免费福利视频| 久久久久久久久久久福利| 国产精品视频男人的天堂| 国产精品久久久久不卡| 日本免费一区二区三区视频观看| 欧美日韩喷水| 久久国产欧美精品| 五月婷婷一区| 7777奇米亚洲综合久久| 亚洲自拍小视频| 日韩久久久久久久| 成年丰满熟妇午夜免费视频| 国产精品久久久久久久久久免费 | 久久久久免费看黄a片app| 亚洲自拍欧美色图| 国产欧美综合精品一区二区| 国产精品日韩久久久久| 欧日韩一区二区三区| 国产黄色激情视频| 亚洲不卡中文字幕无码| 欧美精品二区三区四区免费看视频 | 久久精品午夜福利| 日韩av电影免费播放| 国内精品久久久久久久久|