一、前言
- 最近老师要求做课设,实现一个 “炸飞机” 游戏,我是负责UI界面实现和Socket通信实现的,在这里想总结一下我实现Socket的具体过程,对其中的产生的问题和实现的方法进行进行分析 。由于我是第一次具体实现Socket通信,所以走了不少弯路,请教了许多人,其中尤其是我的舍友,对我帮助很大 。
- 首先是单例化对象,对客户端和服务器都进行了单例化,确保炸飞机时只有一个客户端和一个服务器(因为这个游戏是1V1嘛);
- 然后对客户端的和服务器端 send() 和 receive() 函数进行编写,要注意的一点是:这里不能盲目照搬网络上的代码,其代码使用场景简单,通常是发送一次接收一次(或者是发送一次一直接收),总之对本项目而言是不能适用的;
- 再然后是封装类,封装好之后在其他命名空间中调用接口
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Net.Sockets;using System.Net;using System.Threading;namespace TestBoom{class Client//这是封装好的客户端类{public String receivestr = null;private static Clientclient;private Socket ClientSocket;private Client(string ip1, int port1){ClientSocket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);Init(ip1, port1);}public static Client clientsocket(string ip1,int port1){if (client == null){client = new Client(ip1,port1);}return client;}private void Init(string ip1, int port1){IPEndPoint iPEnd = new IPEndPoint(IPAddress.Parse(ip1), port1);ClientSocket.Connect(iPEnd);Thread reciveThread = new Thread(Recive);reciveThread.IsBackground = true;reciveThread.Start();}public void Recive(){while (true){byte[] Btye = new byte[1024];ClientSocket.Receive(Btye);receivestr = Encoding.UTF8.GetString(Btye,0,3);if (receivestr[0] == '0'){Console.WriteLine($"接受对方了轰炸位置{receivestr}");}else if(receivestr[0]=='1'){Console.WriteLine($"接受轰炸位置结果{receivestr}");}}}public void Send(int i,int x,int y){string str =Convert.ToString(i)+Convert.ToString(x) + Convert.ToString(y);byte[] Btye = Encoding.UTF8.GetBytes(str);ClientSocket.Send(Btye);if (str[0] == '0'){Console.WriteLine($"已发送轰炸位置 {str}");}else if (str[0] == '1'){Console.WriteLine($"已发送对方轰炸位置结果{str}");}}}}
2. 具体分析:1. 首先这个游戏我们必须要知道的一点是我们想要实现两台电脑之间的交互,就必须使用ip和端口进行连接,而想要进行连接就必须使用一个实例化的对象(在这里我没有体现出来,因为实例化对象在另一个from中,在按钮事务响应的函数中进行实例化),而且在这个游戏中,实例化对象必须是单例模型,原因之前提到过,那么实例化对象就必须包含单例化的过程;public String receivestr = null;//receivestr是接受函数中接收到对方的传输过来的信息,后面用到private static Clientclient;//单例化对象所需要的对象private Socket ClientSocket;//Socket类的一个实例化对象private Client(string ip1, int port1)//Client()客户端构造函数{ClientSocket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);Init(ip1, port1);}public static Client clientsocket(string ip1,int port1) //单例化实现函数{if (client == null)//如果实例化对象不存在,则创建一个{client = new Client(ip1,port1);}return client;//如果存在,则直接返回存在的那个对象,这样便实现了单例化}private void Init(string ip1, int port1)//初始化,用于进行客户端和服务器端的连接{IPEndPoint iPEnd = new IPEndPoint(IPAddress.Parse(ip1), port1);ClientSocket.Connect(iPEnd);Thread reciveThread = new Thread(Recive);reciveThread.IsBackground = true;reciveThread.Start();}
经验总结扩展阅读
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 水果能带上飞机吗
- 机长一月工资多少钱 飞机机长的未来发展怎么样
- uniapp之uni-starter小程序多端研发框架搭建与项目实践
- MySQL数据库的性能分析 ---图书《软件性能测试分析与调优实践之路》-手稿节选
- 空气炸锅炸鸡排多长时间多少度
- 👍SpringSecurity单体项目最佳实践
- 飞机上可以带充电宝吗
- 飞机延误多久可以赔偿
- 飞机上可以化妆吗?
- 煤气怎么会爆炸