| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- // Copyright 2015 rain1017.
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
- // implied. See the License for the specific language governing
- // permissions and limitations under the License. See the AUTHORS file
- // for names of contributors.
- 'use strict';
- var P = require('quick-pomelo').Promise;
- var Handler = function(app){
- this.app = app;
- };
- var proto = Handler.prototype;
- proto.create = function(msg, session, next){
- var opts = msg.opts;
- return this.app.controllers.area.createAsync(opts)
- .nodeify(next);
- };
- proto.remove = function(msg, session, next){
- var areaId = msg.areaId || session.uid;
- if(!areaId){
- return next(new Error('areaId is missing'));
- }
- return this.app.controllers.area.removeAsync(areaId)
- .nodeify(next);
- };
- proto.join = function(msg, session, next){
- var playerId = session.uid;
- var areaId = msg.areaId;
- if(!playerId || !areaId){
- return next(new Error('playerId or areaId is missing'));
- }
- return this.app.controllers.area.joinAsync(areaId, playerId)
- .nodeify(next);
- };
- proto.quit = function(msg, session, next){
- var playerId = session.uid;
- var areaId = msg.areaId;
- if(!playerId || !areaId){
- return next(new Error('playerId or areaId is missing'));
- }
- return this.app.controllers.area.quitAsync(areaId, playerId)
- .nodeify(next);
- };
- proto.push = function(msg, session, next){
- var areaId = msg.areaId;
- if(!areaId){
- return next(new Error('areaId is missing'));
- }
- return this.app.controllers.area.pushAsync(areaId, msg.playerIds, msg.route, msg.msg, msg.persistent)
- .nodeify(next);
- };
- proto.getMsgs = function(msg, session, next){
- var areaId = msg.areaId;
- if(!areaId){
- return next(new Error('areaId is missing'));
- }
- return this.app.controllers.area.getMsgsAsync(areaId, msg.seq, msg.count)
- .nodeify(next);
- };
- module.exports = function(app){
- return new Handler(app);
- };
|