当前位置: 首页 > news >正文

成都网站建设公司哪家好商标logo图片

成都网站建设公司哪家好,商标logo图片,多媒体网站开发实战,抓取网站后台文章目录 一、意义二、功能三、作用四、游戏房间类基本框架五、游戏房间管理类基本框架七、游戏房间类代码八、游戏房间管理类代码 一、意义 对匹配成功的玩家创建房间#xff0c;建立起一个小范围的玩家之间的关联关系#xff01; 房间里一个玩家产生的动作将会广播给房间里… 文章目录 一、意义二、功能三、作用四、游戏房间类基本框架五、游戏房间管理类基本框架七、游戏房间类代码八、游戏房间管理类代码 一、意义 对匹配成功的玩家创建房间建立起一个小范围的玩家之间的关联关系 房间里一个玩家产生的动作将会广播给房间里的其他用户。 二、功能 将这些房间管理起来以便于进行房间生命周期的控制 三、作用 游戏房间类 // 实现两个部分 // 1. 房间的设计 // 2. 房间管理的设置 // 游戏房间的设计 // 管理的数据,处理房间中产生的动作 // 1. 房间的ID // 2. 房间的状态决定了一个玩家退出房间时所作的动作 // 3. 房间中玩家的数量决定了玩家什么时候销毁 // 4. 白棋玩家id // 5. 黑棋玩家id // 6. 用户信息表的句柄当玩家胜利/失败的时候更新用户数据 // 7. 棋盘信息二维数组 // 房间中产生的动作 // 1. 下棋 // 2. 聊天 // 不管是什么动作只要是合理的都要广播给房间里的其他用户游戏房间管理类 // Restful 风格的网络通信接口设计 // 房间管理 // 1. 创建房间 (两个玩家对战匹配完成了为他们创造一个房间需要传入两个玩家的用户id) // 2. 查找房间 (通过房间id查找房间信息通过用户id查找房间所在信息) // 3. 销毁房间 (根据房间id销毁房间房间中所有用户退出了销毁房间) // 需要管理的数据 // 1. 数据管理模块句柄 // 2. 在线用户管理模块句柄 // 3. 房间id分配计数器 // 4. 互斥锁 // using room_ptr std::shared_ptr; 房间信息的空间使用shared_ptr进行管理释放了我们还操作访问错误 // 5. unordered_maproom_id,room_ptr 房间信息管理(建立起房间id与房间信息的映射关系) // 6. unordered_maproom_id,user_id 房间id与用户id的关联关系管理 通过用户id找到所在房间id再去查找房间信息 // 7. 房间中所有用户退出了销毁房间。 四、游戏房间类基本框架 typedef enum { GAME_START, GAME_OVER }room_statu; class room {private:// 1. 房间的ID// 2. 房间的状态决定了一个玩家退出房间时所作的动作// 3. 房间中玩家的数量决定了玩家什么时候销毁// 4. 白棋玩家id// 5. 黑棋玩家id// 6. 用户信息表的句柄当玩家胜利/失败的时候更新用户数据// 7. 棋盘信息二维数组uint64_t _room_id;room_statu _statu;int _player_count;uint64_t _white_id;uint64_t _black_id;user_table *_tb_user; online_manager *_online_user;std::vectorstd::vectorint _board;public:room()~room()/*处理下棋动作*/room_statu statu();int player_count();void add_white_user(uint64_t uid);void add_black_user(uint64_t uid);uint64_t get_white_user();uint64_t get_black_user();void handle_chess(Json::Value req);/*处理聊天动作*/Json::Value handle_chat(Json::Value req);/*处理玩家退出房间动作*/void handle_exit(uint64_t uid);/*将指定的信息广播给房间中所有玩家*/void broadcast(Json::Value rsp); };五、游戏房间管理类基本框架 using room_ptr std::shared_ptrroom;class room_manager {private:uint64_t _next_rid;std::mutex _mutex;user_table *_tb_user;online_manager *_online_user;std::unordered_mapuint64_t, room_ptr _rooms;std::unordered_mapuint64_t, uint64_t _users;room_manager();~room_manager();//为两个用户创建房间并返回房间的智能指针管理对象room_ptr create_room(uint64_t uid1, uint64_t uid2);/*通过房间ID获取房间信息*/room_ptr get_room_by_rid(uint64_t rid);/*通过用户ID获取房间信息*/room_ptr get_room_by_uid(uint64_t uid);/*通过房间ID销毁房间*/void remove_room(uint64_t rid);/*删除房间中指定用户如果房间中没有用户了则销毁房间用户连接断开时被调用*/void remove_room_user(uint64_t uid); };七、游戏房间类代码 #ifndef __M_ROOM_H__ #define __M_ROOM_H__ #include util.hpp #include logger.hpp #include online.hpp #include db.hpp #define BOARD_ROW 15 #define BOARD_COL 15 #define CHESS_WHITE 1 #define CHESS_BLACK 2 typedef enum { GAME_START, GAME_OVER }room_statu; class room {private:// 1. 房间的ID// 2. 房间的状态决定了一个玩家退出房间时所作的动作// 3. 房间中玩家的数量决定了玩家什么时候销毁// 4. 白棋玩家id// 5. 黑棋玩家id// 6. 用户信息表的句柄当玩家胜利/失败的时候更新用户数据// 7. 棋盘信息二维数组uint64_t _room_id;room_statu _statu;int _player_count;uint64_t _white_id;uint64_t _black_id;user_table *_tb_user; online_manager *_online_user;std::vectorstd::vectorint _board;private: bool five(int row, int col, int row_off, int col_off, int color) {//row和col是下棋位置 row_off和col_off是偏移量也是方向int count 1;int search_row row row_off;int search_col col col_off;while(search_row 0 search_row BOARD_ROW search_col 0 search_col BOARD_COL _board[search_row][search_col] color) {//同色棋子数量count;//检索位置继续向后偏移search_row row_off;search_col col_off;}search_row row - row_off;search_col col - col_off;while(search_row 0 search_row BOARD_ROW search_col 0 search_col BOARD_COL _board[search_row][search_col] color) {//同色棋子数量count;//检索位置继续向后偏移search_row - row_off;search_col - col_off;}return (count 5);}uint64_t check_win(int row, int col, int color) {// 从下棋位置的四个不同方向上检测是否出现了5个及以上相同颜色的棋子横行纵列正斜反斜if (five(row, col, 0, 1, color) || five(row, col, 1, 0, color) ||five(row, col, -1, 1, color)||five(row, col, -1, -1, color)) {//任意一个方向上出现了true也就是五星连珠则设置返回值return color CHESS_WHITE ? _white_id : _black_id;}return 0;}public:room(uint64_t room_id, user_table *tb_user, online_manager *online_user):_room_id(room_id), _statu(GAME_START), _player_count(0),_tb_user(tb_user), _online_user(online_user),_board(BOARD_ROW, std::vectorint(BOARD_COL, 0)){DLOG(%lu 房间创建成功!!, _room_id);}~room() {DLOG(%lu 房间销毁成功!!, _room_id);}uint64_t id() { return _room_id; }room_statu statu() { return _statu; }int player_count() { return _player_count; }void add_white_user(uint64_t uid) { _white_id uid; _player_count;}void add_black_user(uint64_t uid) {_black_id uid; _player_count; }uint64_t get_white_user() { return _white_id; }uint64_t get_black_user() { return _black_id; }// 处理下棋动作Json::Value handle_chess(Json::Value req) {Json::Value json_resp req;// 2. 判断房间中两个玩家是否都在线任意一个不在线就是另一方胜利。int chess_row req[row].asInt();int chess_col req[col].asInt();uint64_t cur_uid req[uid].asUInt64();if (_online_user - is_in_game_room(_white_id) false) {json_resp[result] true;json_resp[reason] 运气真好对方掉线不战而胜;json_resp[winner] (Json::UInt64)_black_id;return json_resp;}if (_online_user-is_in_game_room(_black_id) false) {json_resp[result] true;json_resp[reason] 运气真好对方掉线不战而胜;json_resp[winner] (Json::UInt64)_white_id;return json_resp;}// 3. 获取走棋位置判断当前走棋是否合理位置是否已经被占用if (_board[chess_row][chess_col] ! 0) {json_resp[result] false;json_resp[reason] 当前位置已经有了其他棋子;return json_resp;}int cur_color cur_uid _white_id ? CHESS_WHITE : CHESS_BLACK;_board[chess_row][chess_col] cur_color;// 4. 判断是否有玩家胜利从当前走棋位置开始判断是否存在五星连珠uint64_t winner_id check_win(chess_row, chess_col, cur_color);if (winner_id ! 0) {json_resp[reason] 五星连珠您获胜了;}json_resp[result] true;json_resp[winner] (Json::UInt64)winner_id;return json_resp;}/*处理聊天动作*/Json::Value handle_chat(Json::Value req) {Json::Value json_resp req;// 检查消息中是否包含敏感词std::string msg req[message].asString();size_t pos msg.find(sb);if (pos ! std::string::npos) {json_resp[result] false;json_resp[reason] 消息中包含敏感词不能发送;return json_resp;}//广播消息---返回消息json_resp[result] true;return json_resp;}/*处理玩家退出房间动作*/void handle_exit(uint64_t uid) {//如果是下棋中退出则对方胜利否则下棋结束了退出则是正常退出Json::Value json_resp;if (_statu GAME_START) {uint64_t winner_id (Json::UInt64)(uid _white_id ? _black_id : _white_id);json_resp[optype] put_chess;json_resp[result] true;json_resp[reason] 对方掉线不战而胜;json_resp[room_id] (Json::UInt64)_room_id;json_resp[uid] (Json::UInt64)uid;json_resp[row] -1;json_resp[col] -1;json_resp[winner] (Json::UInt64)winner_id;uint64_t loser_id winner_id _white_id ? _black_id : _white_id;_tb_user-win(winner_id);_tb_user-lose(loser_id);_statu GAME_OVER;broadcast(json_resp);}//房间中玩家数量--_player_count--;return;}void handle_request(Json::Value req) {//1. 校验房间号是否匹配Json::Value json_resp;uint64_t room_id req[room_id].asUInt64();if (room_id ! _room_id) {json_resp[optype] req[optype].asString();json_resp[result] false;json_resp[reason] 房间号不匹配;return broadcast(json_resp);}//2. 根据不同的请求类型调用不同的处理函数if (req[optype].asString() put_chess) {json_resp handle_chess(req);if (json_resp[winner].asUInt64() ! 0) {uint64_t winner_id json_resp[winner].asUInt64();uint64_t loser_id winner_id _white_id ? _black_id : _white_id;_tb_user-win(winner_id);_tb_user-lose(loser_id);_statu GAME_OVER;}}else if (req[optype].asString() chat) {json_resp handle_chat(req);}else {json_resp[optype] req[optype].asString();json_resp[result] false;json_resp[reason] 未知请求类型;}std::string body;json_util::serialize(json_resp, body);DLOG(房间-广播动作: %s, body.c_str());return broadcast(json_resp);}/*将指定的信息广播给房间中所有玩家*/void broadcast(Json::Value rsp) {//1. 对要响应的信息进行序列化将Json::Value中的数据序列化成为json格式字符串std::string body;json_util::serialize(rsp, body);//2. 获取房间中所有用户的通信连接//3. 发送响应信息wsserver_t::connection_ptr wconn _online_user-get_conn_from_room(_white_id);if (wconn.get() ! nullptr) {wconn-send(body);}else {DLOG(房间-白棋玩家连接获取失败);}wsserver_t::connection_ptr bconn _online_user-get_conn_from_room(_black_id);if (bconn.get() ! nullptr) {bconn-send(body);}else {DLOG(房间-黑棋玩家连接获取失败);}return;} };八、游戏房间管理类代码 using room_ptr std::shared_ptrroom;class room_manager { private:uint64_t _next_rid;std::mutex _mutex;user_table *_tb_user;online_manager *_online_user;std::unordered_mapuint64_t, room_ptr _rooms;std::unordered_mapuint64_t, uint64_t _users; public:/*初始化房间ID计数器*/room_manager(user_table *ut, online_manager *om):_next_rid(1), _tb_user(ut), _online_user(om) {DLOG(房间管理模块初始化完毕);}~room_manager() { DLOG(房间管理模块即将销毁); }//为两个用户创建房间并返回房间的智能指针管理对象room_ptr create_room(uint64_t uid1, uint64_t uid2) {// 两个用户在游戏大厅中进行对战匹配匹配成功后创建房间// 1. 校验两个用户是否都还在游戏大厅中只有都在才需要创建房间。if (_online_user-is_in_game_hall(uid1) false) {DLOG(用户%lu 不在大厅中创建房间失败!, uid1);return room_ptr();}if (_online_user-is_in_game_hall(uid2) false) {DLOG(用户%lu 不在大厅中创建房间失败!, uid2);return room_ptr();}// 2. 创建房间将用户信息添加到房间中std::unique_lockstd::mutex lock(_mutex);room_ptr rp(new room(_next_rid,_tb_user,_online_user));rp-add_white_user(uid1);rp-add_black_user(uid2);//3. 将房间信息管理起来_rooms.insert(std::make_pair(_next_rid, rp));_users.insert(std::make_pair(uid1, _next_rid));_users.insert(std::make_pair(uid2, _next_rid));_next_rid;//4. 返回房间信息return rp;}/*通过房间ID获取房间信息*/room_ptr get_room_by_rid(uint64_t rid) {std::unique_lockstd::mutex lock(_mutex);auto it _rooms.find(rid);if (it _rooms.end()) {return room_ptr();}return it-second;}/*通过用户ID获取房间信息*/room_ptr get_room_by_uid(uint64_t uid) {std::unique_lockstd::mutex lock(_mutex);//1. 通过用户ID获取房间IDauto uit _users.find(uid);if (uit _users.end()) {return room_ptr();}uint64_t rid uit-second;//2. 通过房间ID获取房间信息auto rit _rooms.find(rid);if (rit _rooms.end()) {return room_ptr();}return rit-second;}/*通过房间ID销毁房间*/void remove_room(uint64_t rid) {//因为房间信息是通过shared_ptr在_rooms中进行管理因此只要将shared_ptr从_rooms中移除//则shared_ptr计数器0外界没有对房间信息进行操作保存的情况下就会释放//1. 通过房间ID获取房间信息room_ptr rp get_room_by_rid(rid);if (rp.get() nullptr)return ;//2. 通过房间信息获取房间中所有用户的IDuint64_t uid1 rp-get_white_user();uint64_t uid2 rp-get_black_user();//3. 移除房间管理中的用户信息std::unique_lockstd::mutex lock(_mutex);_users.erase(uid1);_users.erase(uid2);//4. 移除房间管理信息_rooms.erase(rid);}/*删除房间中指定用户如果房间中没有用户了则销毁房间用户连接断开时被调用*/void remove_room_user(uint64_t uid) {room_ptr rp get_room_by_rid(uid);if (rp.get() nullptr)return ;rp-handle_exit(uid);if (rp-player_count() 0) {remove_room(rp-id());}return ;} };#endif
http://www.w-s-a.com/news/723959/

相关文章:

  • 新公司注册网站传奇手游大型网站
  • 无极网站网站涉案多少人被抓网站的按钮怎么做
  • ds216j做网站做购物网站那个好
  • 做淘宝门头的网站阿里巴巴官网app
  • 安踏网站建设策划方案如何通过域名访问网站
  • 建设网站破解版seo查询 站长之家
  • 太原模板建站平台旅游企业网站建设工作的通知
  • 网站国外建设超级简历模板官网
  • 上海网站建设市场医药网站怎么做
  • 宁夏成城建设集团网站网店美工课本
  • 哪些网站的简历做的比较好政务服务 网站 建设方案
  • 如何建设个人网站凡科怎么样vps安装wordpress后怎样登录
  • 学seo朝阳区seo
  • 网站开发团队成员皮具网站建设
  • 国外外贸需求网站响应式布局网页
  • 手机端便民服务平台网站建设昆明网络哪家好
  • 产品网站建设找哪家舟山信息港
  • 唐山网站建设汉狮怎么样seol英文啥意思
  • 深圳小程序网站开发公司网页制作模板视频教程
  • 电子商务网站开发开题报告wordpress更改后台地址
  • 网站静态前端是什么工作
  • 餐饮门户网站 方案怎么做创业好项目
  • 做百度手机网站推广普通话的宣传标语
  • 记事本可以做网站吗网站服务器是主机吗
  • 手机网站被拦截怎么办怎么解决东营建设信息网网
  • 外贸网站模板免费微信网站开发技术
  • 视频盗版网站怎么做福州网站seo
  • 成都金铭 网站建设做网站包含的技术
  • 长沙的网站建设公司哪家好做网站应选那个主题
  • 公司网站百度搜不到如何自己做一个网站