首页
会员中心
到顶部
到尾部
android毕设

基于Android的真人社交游戏辅助应用开发设计论文+选题表+任务书+开题+翻译+客户端服务器源码

时间:2020/10/13 22:06:44  作者:  来源:  查看:0  评论:0
内容摘要: 摘 要时至今日,社交已成为人们生活中必不可少的一部分,社交网络的盛行已经成为一种必然趋势.与此同时,人们的娱乐化需求也越来越重要,游戏产业也得到了飞速发展.为了满足人们的社交化,娱乐化的需要,越来越多的公司开始结合社交和游戏,走社交和娱乐相辅相成的路线.在软件应用行业,也...

摘 要

时至今日,社交已成为人们生活中必不可少的一部分,社交网络的盛行已经成为一种必然趋势.与此同时,人们的娱乐化需求也越来越重要,游戏产业也得到了飞速发展.为了满足人们的社交化,娱乐化的需要,越来越多的公司开始结合社交和游戏,走社交和娱乐相辅相成的路线.在软件应用行业,也有越来越多的公司着手开发结合游戏的社交应用.

本设计完成的应用为一款移动游戏社交应用,本设计根据软件设计的标准流程,从软件的需求分析、可行性分析着手,然后进行软件的总体设计和详细设计与实现,最后进行软件测试确保软件的功能能达到预期标准.本设计将软件开发划分为三大基本模块:服务器端,数据库端以及客户端.整个应用基于Java编程语言编写,其中服务器端再次细分为Java Web服务器和TCP Socket服务器,数据库端分为MYSQL数据库和SQLITE数据库,客户端基于Android平台开发,本应用的核心目标为:游戏与社交,实现的核心功能为:即时通信,游戏,社交.以实现核心功能为目的,再次将Android客户端分为两大部分:核心功能部分与附加功能部分,核心功能部分细分为四个模块:登录注册,消息中心,游戏中心,状态圈;附加功能部分也细分为四个模块:上传下载中心,用户中心,工具中心,设置中心.

关键词:社交;游戏;即时通信;Android;服务器


ABSTRACT

Today, social networking has become an indispensable part of people's lives, the prevalence of social networking has become an inevitable trend. At the same time, people's entertainment needs more and more important, the game industry has been rapid development. In order to meet people's social, entertainment needs, more and more companies are beginning to combine socializing and games, take social and recreational complementary route. In the software application industry, there are more and more companies started to develop binding social game applications.

In this paper, the final design is a social mobile recreation applications. This design follows the standard process of software design, the design start from the software requirements analysis and the feasibility analysis, then begin designing the software, and developing the software, finally testing the software, ensure that the software has reached the expectations. The development process of this software is divided into three basic modules:the server,the database, and the client. The entire software based on the Java programming language, the server side is divided into two parts: The Java Web Server and the TCP Socket Server. The database side is also divided into two parts: The MYSQL database and the SQLITE database. The Client side is based on the Android platform. The core goal of this software: Sociality and Recreation. The main function of the software: Socaility, Recreation and Instant Message. In order to achieve the goal, The Android client is divided into two parts: Part of the core functions and part of additional functions. The Core part is subdivided into four modules: The Login Register module, The Message Center, The Game Center and the State Center; The additional part is also subdivided into four modules: The Upload and Download Center, The User Center, The Tools Center and the Setting Center.

Keywords: Sociality; Recreation; Instant Message; Android; Server


目  录

第1章 绪论1

1.1引言1

1.2课题的背景及意义1

1.3国内外研究现状1

1.4课题工作综述2

1.5论文框架结构2

第2章 需求分析3

2.1 系统开发目标3

2.2 用户需求分析3

2.3 功能需求分析3

2.3.1核心功能3

2.3.2附加功能4

2.4 可行性分析5

2.4.1 经济可行性5

2.4.2技术可行性5

2.5 本章小结5

第3章 总体设计7

3.1 概要设计7

3.2 Socket服务器的设计7

3.3 Web服务器的设计8

3.4 客户端的设计9

3.4.1 登录注册的设计10

3.4.2 消息中心的设计11

3.4.3游戏中心的设计11

3.4.4 上传下载中心的设计12

3.4.5 状态圈设计12

3.4.6 工具中心的设计13

3.4.7 用户中心的设计13

3.4.8 设置中心的设计14

3.5数据库的设计14

3.5.1 服务器端数据库功能设计15

3.5.2 客户端数据库功能设计17

3.6 本章小结18

第4章 详细设计与实现19

4.1 系统主体19

4.2 Web服务器19

4.3 Socket服务器20

4.3.1 Socket服务器与客户端的连接建立20

4.3.2 Socket服务器处理流程21

4.4 客户端22

4.4.1 登录注册模块22

4.4.2 消息中心模块23

4.4.3 游戏中心模块23

4.4.4 状态圈模块24

4.4.5 上传下载中心模块25

4.4.6 工具中心模块26

4.4.7 用户中心模块26

4.4.8 设置中心模块27

4.5 数据库28

4.5.1 服务器端数据库28

4.5.2 客户端数据库33

4.6 本章小结36

第5章 软件测试37

5.1 功能测试37

5.1.1 登录注册模块37

5.1.2 消息中心模块38

5.1.3 游戏中心模块39

5.1.4 状态圈模块40

5.1.5 上传下载模块41

5.1.6 工具中心模块42

5.1.7 用户中心模块43

5.1.8 设置中心模块44

5.2 整体测试45

5.3 兼容性测试46

5.4 本章小结46

第6章 结论与展望47

6.1 结论47

6.1.1 毕业设计完成的任务47

6.1.2 收获和总结47

6.2 不足之处及未来展望47

参考文献49

致  谢51

基于Android的真人社交游戏辅助应用开发设计论文+选题表+任务书+开题+翻译+客户端服务器源码
基于Android的真人社交游戏辅助应用开发设计论文+选题表+任务书+开题+翻译+客户端服务器源码
基于Android的真人社交游戏辅助应用开发设计论文+选题表+任务书+开题+翻译+客户端服务器源码

  


相关评论
android毕设
    本类推荐
      广告联系QQ:45157718 点击这里给我发消息 电话:13516821613 杭州余杭东港路118号雷恩国际科技创新园  网站技术支持:黄菊华互联网工作室 浙ICP备06056032号