登录
首页 » C# » lumisoft 实例开发 抢号专用(电话外呼)

lumisoft 实例开发 抢号专用(电话外呼)

于 2015-03-11 发布
0 77
下载积分: 1 下载次数: 0

代码说明:

lumisoft 实例开发 抢号专用

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • C# Winform围棋(可对战)
    程序使用VS2015,.NET4.5,.NET 2.0以上都可以编译使用,无第三方组件,可生成32、64位。Socket网络传输,可以对战、旁观,围棋走棋规则基本全面,可直接对杀。围棋规则算法写代码太麻烦,直接参考了GreatVerveGo(是单机的)算法,感谢作者。程序包含客户端和服务端2各部分。图片文件在gooinDebugRes里面1、先启动服务端 goServer.exe服务端:地址为IPAddress[] addrIP = Dns.GetHostAddresses("192.168.0.104"); //ip地址端口51888,根据你的需要进行修改;进入服务端后点击“开始监听”。服务端定义://连接的用户System.Collections.Generic.List userList = new List();//监听端口private int port = 51888;//走棋判断int[] GameRoom = new int[255]; //房间号int[] GameUser = new int[255]; //房间人数;int[] GameStat = new int[255];  //走棋状态:1-等待、2-准备、3-开始、4-旁观int[] GameReday = new int[255]; //走棋准备状态//旁观 获得走棋信息string lookuser = "";2、打开客户端 goo.exe这里直接设置了进入到房间“0”,进入后显示“等待其他人加入”,先进房的执黑旗,按钮不可用;当有第2个人进入后,执白棋,按钮显示“准备”;双方都点击“准备”后,进入对局;后面再有人进入为旁观者,能看见双方对局信息。房间都是“0”。地址:client = new TcpClient("192.168.0.104", 51888); //定义服务器端ip地址和端口,与服务器端定义要一致根据你的需要进行修改;客户端定义:private int[,] Qpan = new int[24, 24]; //棋盘数组private string SendLook = null; //发送给旁观者的对局信息private const int Qz_Null = 0; //没有棋子private const int Qz_Black = 1; //黑子private const int Qz_White = 2; //白子private const int Max_Qpan = 23; //棋盘最大路数private int[,] TmpA_Qpan = new int[24, 24]; //临时存储棋盘private int[,] TmpB_Qpan = new int[24, 24];//临时存储棋盘private int[,] Tmp_Qpan = new int[24, 24];//临时存储棋盘private int Current_Go = 1; //当前棋子颜色private int Qpan_Count = 19; //当前棋盘路数private int Rame; //气数private int Die_Num; //死子数private bool _Attack = false; //是否打劫private int Attack_X = 0; //打劫位置private int Attack_Y = 0; //打劫位置private Panel g_Hei; //鼠标移动 黑块private Panel g_Bai; //鼠标移动 白块private Panel Fit_Hei; //最后落子标记 黑private Panel Fit_Bai; //最后落子标记 白private Panel[,] QzH = new Panel[20,20]; //黑棋子private Panel[,] QzB = new Panel[20,20]; //白棋子int LastFitX = 0; //给旁观最后落子位置int LastFitY = 0; //给旁观最后落子位置int LastHB = 0; //给旁观最后落子颜色Point Mouseoff; //鼠标位置bool go_play = false; //能否走棋int Select_Qzi = 0; //是黑还是白,1-黑,2-白int ReceiveHB =1; //接收到的棋子颜色函数://初始化棋盘、棋子private void InitQpan()//判断该谁走棋private void Judge_HB()//显示棋子private void ShowQz(int i, int j, int QzHB)//重置棋盘棋子private void Rest_Qpan()//备份棋盘棋子private void Qpan_Backup()//恢复棋盘棋子private void Qpan_Restore()//刷新棋盘棋子private void Qpan_Refresh(int QzHB)//计算棋子的气数底层函数private void Base_Calc(int i, int j, int QzHB)//计算气数private void Calc_Ream(int m, int n, int QzHB)//计算气数接口private void Calc_Interface(int QzHB)//落子处理,判断打劫、打n还1、吃掉对方棋子private void Falling(int xx, int yy)//设置打劫private void Set_Attack(int i, int j)//最后落子标记private void Fit_Flag(int xx, int yy)//旁观者最后落子标记private void LookFit_Flag(int Qhb, int xx, int yy)//对方走棋显示在己方并判断打劫、打n还1、吃掉对方棋子private void Opp_Falling()3、跨线程调用封装在CrossThreadCall.cs4、时间有限,程序没有做计算胜负,没有做掉线处理。基本规则有了,其他的就是套接字变来变去,需要新功能自己添加。只是一个初学练习,更多初学资料到我的博客http://www.cnblogs.com/qiaoke/
    2017-03-12下载
    积分:1
  • dns
    一个简单的DNS服务器,可以在嵌入式系统中使用。(A simple DNS server,it can be used in embedded system.)
    2019-04-02 11:00:11下载
    积分:1
  • c#实现嗅探器
    c#实现网络嗅探器
    2014-06-24下载
    积分:1
  • samp03z_svr_R1_win32
    GTA的脚本大全,能让你的服务器变得更加好玩,使你的服务器的玩家数量更多(More GTA script Guinness, make your server more fun to make your server' s number of players)
    2020-07-02 23:00:01下载
    积分:1
  • AsyncTcp
    一般的聊天程序都是使用socket方式通讯的。对于一个聊天程序来说一般是一个服务器用来中转消息,然后是多个客户端通过连接服务器来消息交换。(General chat programs are using the socket mode of communication. For a chat program, it is generally a server used to relay the message, then multiple clients to connect to the server through the exchange of messages.)
    2013-08-26 10:10:08下载
    积分:1
  • MyQQ
    企业QQ系统,通过服务端,可让多个客户端进行文字和图像的通信。(QQ enterprise system, through the server, allowing multiple clients for text and image communications.)
    2013-09-06 00:08:33下载
    积分:1
  • MyPing
    网络延迟测试工具。测试出网络速度带宽,大小( Network latency test)
    2016-05-28 11:02:21下载
    积分:1
  • datenew
    说明:  是一个通过网络对软件进行自动更新的系统,可以使用这个程序为你的软件提供远程升级功能(Is a network of software auto-update system, you can use this procedure for you to provide remote software upgrade capability)
    2008-08-29 23:47:44下载
    积分:1
  • 电极贴片
    说明:  功能性电刺激疗法是使用低频电流刺激失去神经控制的肌肉,使其收缩,以替代或矫正器官及肢体已丧失的功能。本系统借助脑机接口技术研发了一款经络疏通按摩仪,借助脑机接口技术,通过MATLAB与单片机通讯,实现左右电极贴片分别刺激(Functional electrical stimulation therapy is to use low-frequency current to stimulate the muscle that has lost nerve control, so as to make it contract, so as to replace or correct the lost function of organs and limbs. With the help of brain computer interface technology, the system developed a meridian dredging massage instrument. With the help of brain computer interface technology, the system realized the stimulation of left and right electrode patches respectively through the communication between MATLAB and MCU)
    2021-02-18 14:11:46下载
    积分:1
  • FiveChess
    网络五子棋系统,网络五子棋功能较完整的实现,可以参考一下(Backgammon systems, networks function more complete realization of backgammon, you can refer to)
    2020-12-09 11:59:19下载
    积分:1
  • 696518资源总数
  • 104269会员总数
  • 42今日下载