登录
首页 » GO » master079

master079

于 2020-06-17 发布 文件大小:1512KB
0 126
下载积分: 1 下载次数: 0

代码说明:

  MapleStoryServer A MapleStory Server in Go For CMS V079 Go 编写的079版本冒险岛服务端 Target 实现一个079版本的冒险岛服务器. 能够实现原Java的部分功能. Files main.go —— 程序入口,负责初始化CPU分配、打开控制台、准备消息分发routines,侦听端口,并且接收客户端的连接。 Packages connection —— 用于建立与客户端的连接,进行读写数据。 message —— 用于负责服务器向客户端方向的信息的递送,主要功能是广播和点对点通信; types —— 包含整个服务器所用到的各种数据结构,比如用户信息结构体等; users —— 包含用户管理相关函数,比如用户进入游戏与离开。 console —— 给服务端添加一个控制台,便于输入指令调试。(MapleStoryServer A MapleStory Server in Go For CMS V079 Go Edition 079 Adventure Island Server Target Implement a 079 version of the Adventure Island server. It can achieve some of the functions of the original Java. Files Main.go -- Program entry, which is responsible for initializing CPU allocation, opening console, preparing message distribution routines, listening on ports, and receiving client connections. Packages Connection - Used to establish a connection with the client to read and write data. Message is used to deliver information from server to client. Its main functions are broadcasting and point-to-point communication. Types - Contains all kinds of data structures used by the whole server, such as user information structure, etc. Users - Contains user management related functions, such as user entry into the game and departure. Console - add a console to the server to facilitate the debugging of input instructions.)

文件列表:

MapleStoryServer-master079\MapleStoryServer-master\.gitattributes, 378 , 2017-04-10
MapleStoryServer-master079\MapleStoryServer-master\.gitignore, 880 , 2017-04-10
MapleStoryServer-master079\MapleStoryServer-master\LifeMovement.go, 1909 , 2017-04-10
MapleStoryServer-master079\MapleStoryServer-master\main.go, 7939 , 2017-04-10
MapleStoryServer-master079\MapleStoryServer-master\MapleCharacter.go, 1148 , 2017-04-10
MapleStoryServer-master079\MapleStoryServer-master\MapleClient.go, 2119 , 2017-04-10
MapleStoryServer-master079\MapleStoryServer-master\MapleEquip.go, 419 , 2017-04-10
MapleStoryServer-master079\MapleStoryServer-master\MapleJob.go, 1491 , 2017-04-10
MapleStoryServer-master079\MapleStoryServer-master\MapleMap.go, 456 , 2017-04-10
MapleStoryServer-master079\MapleStoryServer-master\MaplePacketCreator.go, 12071 , 2017-04-10
MapleStoryServer-master079\MapleStoryServer-master\MaplePacketHeader.go, 2466 , 2017-04-10
MapleStoryServer-master079\MapleStoryServer-master\MapleStoryServer, 5797291 , 2017-04-10
MapleStoryServer-master079\MapleStoryServer-master\mysql.go, 320 , 2017-04-10
MapleStoryServer-master079\MapleStoryServer-master\README.md, 890 , 2017-04-10
MapleStoryServer-master079\MapleStoryServer-master\receive.ini, 350 , 2017-04-10
MapleStoryServer-master079\MapleStoryServer-master\send.ini, 405 , 2017-04-10
MapleStoryServer-master079\MapleStoryServer-master\server.ini, 98 , 2017-04-10
MapleStoryServer-master079\MapleStoryServer-master, 0 , 2018-06-12
MapleStoryServer-master079, 0 , 2018-06-12

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

发表评论

0 个回复

  • Game_S60_2D
    Symbian OS S60平台2D游戏引擎案例()
    2007-09-04 17:33:36下载
    积分:1
  • c语言编写坦克大战源代码
    c++坦克大战代码,如果有bug我会继续改进的。(C++ tank code, I will continue to improve if I have bug.)
    2017-10-06 09:40:25下载
    积分:1
  • Eluosi
    以前写的一个俄罗斯方块程序 纯Windows API 和 GDI接口编写的 是学习Windows编程的好例子(A Tetris program used to write pure Windows API the GDI interface to write is a good example to learn Windows programming)
    2012-09-07 13:12:21下载
    积分:1
  • guessNumber
    说明:  入门级第一个游戏;猜数字游戏;超级无敌巨简单的(Initial level first game; guess the number game; super invincible huge simple)
    2020-06-21 08:40:01下载
    积分:1
  • 打飞机
    说明:  打飞机非常好玩的游戏建议选择冷酷的敌人(Hit a planeHit is very can make you happy)
    2019-12-23 17:31:48下载
    积分:1
  • JoyKeys.Voluntary
    windows平台的游戏手柄编程源码,有很强的实用性。(Gamepad programming source code, has a strong practical.)
    2013-06-17 16:35:05下载
    积分:1
  • qipanfugai_matlab
    用matlab编写的棋盘覆盖问题的解决,有清楚的注释,帮助学习者了解分治法在类似问题中的应用(Matlab prepared by the board covering problems, clear notes, to help students understand the divide and conquer similar problems)
    2020-12-03 16:09:25下载
    积分:1
  • 2
    Background Given a set of rectangles {R1, R2, …, Rn}, compute the area of their common intersection. i.e., Area(R1∩R2∩…∩Rn) The edges of the rectangles R1, R2, …, Rn, are either vertical or horizontal lines. For example, the intersection of 4 rectangles, R1, R2, R3, and R4, in the following figure is the shaded rectangle. Input The input contains (N + 1) lines. The first line specifies the number of rectangles N, where 1 < N < 1000. Since the sides of the rectangles are parallel to the x-axis and y-axis, each rectangle is bounded by the lines x = x1, x = x2, y = y1 and y = y2 and each subsequent line of the input file thus specifies one rectangle in the following format: x1 x2 y1 y2 such that 0 <= x1 < x2 <= 10000 and 0 <= y1 < y2 <= 10000, and x1, x2, y1 and y2 are integers. Output The output file contains the area of the intersection of all the rectangles.
    2013-11-15 02:58:38下载
    积分:1
  • chick
    简单的微信小程序虐心小游戏,包含好友关系数据子项目和广告调用(A simple WeChat cruelty game)
    2018-07-27 23:37:07下载
    积分:1
  • Android2048
    经典的2048游戏,源码精简,亲测可用,适合初学者研究,欢迎下载(2048 classic games, pro-test available, please download)
    2020-12-13 18:29:14下载
    积分:1
  • 696518资源总数
  • 104271会员总数
  • 70今日下载