2016-04-01 18:31:07 +08:00
|
|
|
/**
|
2016-05-19 06:26:08 +08:00
|
|
|
* Copyright 2015, 2016 IBM Corp.
|
2016-04-01 18:31:07 +08:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
**/
|
|
|
|
|
|
|
|
module.exports = function(RED) {
|
|
|
|
"use strict";
|
|
|
|
var express = require("express");
|
2016-05-19 06:26:08 +08:00
|
|
|
var io = require('socket.io')(RED.server);
|
2016-04-01 18:31:07 +08:00
|
|
|
|
|
|
|
var WorldMap = function(n) {
|
|
|
|
RED.nodes.createNode(this,n);
|
2016-05-19 06:26:08 +08:00
|
|
|
var node = this;
|
|
|
|
//node.log("Serving map from "+__dirname+" as "+RED.settings.httpNodeRoot.slice(0,-1)+"/worldmap");
|
2016-04-01 18:31:07 +08:00
|
|
|
RED.httpNode.use("/worldmap", express.static(__dirname + '/worldmap'));
|
2016-06-02 06:40:38 +08:00
|
|
|
var callback = function(socket) {
|
2016-06-02 19:35:12 +08:00
|
|
|
node.status({fill:"green",shape:"dot",text:"connected "+Object.keys(io.sockets.connected).length});
|
2016-05-19 06:26:08 +08:00
|
|
|
node.on('input', function(msg) {
|
|
|
|
socket.emit("worldmapdata",msg.payload);
|
|
|
|
});
|
2016-05-25 04:34:18 +08:00
|
|
|
socket.on('disconnect', function() {
|
2016-06-02 19:35:12 +08:00
|
|
|
node.status({fill:"green",shape:"ring",text:"connected "+Object.keys(io.sockets.connected).length});
|
2016-05-25 04:34:18 +08:00
|
|
|
});
|
2016-06-02 06:40:38 +08:00
|
|
|
node.on("close", function() {
|
|
|
|
socket.disconnect();
|
|
|
|
});
|
|
|
|
}
|
2016-06-02 19:35:12 +08:00
|
|
|
node.on("close", function() {
|
|
|
|
node.status({});
|
|
|
|
io.sockets.removeListener('connection', callback);
|
|
|
|
});
|
2016-06-02 06:40:38 +08:00
|
|
|
io.on('connection', callback );
|
2016-04-01 18:31:07 +08:00
|
|
|
}
|
|
|
|
RED.nodes.registerType("worldmap",WorldMap);
|
2016-05-19 06:26:08 +08:00
|
|
|
|
|
|
|
var WorldMapIn = function(n) {
|
|
|
|
RED.nodes.createNode(this,n);
|
|
|
|
var node = this;
|
2016-06-02 06:40:38 +08:00
|
|
|
var callback = function(socket) {
|
2016-06-02 19:35:12 +08:00
|
|
|
node.status({fill:"green",shape:"dot",text:"connected "+Object.keys(io.sockets.connected).length});
|
2016-05-19 06:26:08 +08:00
|
|
|
socket.on('worldmap', function(data) {
|
|
|
|
node.send({payload:data, topic:"worldmap"});
|
|
|
|
});
|
|
|
|
socket.on('disconnect', function() {
|
2016-06-02 19:35:12 +08:00
|
|
|
node.status({fill:"green",shape:"ring",text:"connected "+Object.keys(io.sockets.connected).length});
|
|
|
|
node.send({payload:{action:"disconnect", clients:Object.keys(io.sockets.connected).length}, topic:"worldmap"});
|
2016-05-19 06:26:08 +08:00
|
|
|
});
|
2016-06-02 06:40:38 +08:00
|
|
|
node.on("close", function() {
|
|
|
|
socket.disconnect();
|
|
|
|
});
|
|
|
|
}
|
2016-06-02 19:35:12 +08:00
|
|
|
node.on("close", function() {
|
|
|
|
node.status({});
|
|
|
|
io.sockets.removeListener('connection', callback);
|
|
|
|
});
|
2016-06-02 06:40:38 +08:00
|
|
|
io.on('connection', callback);
|
2016-05-19 06:26:08 +08:00
|
|
|
}
|
|
|
|
RED.nodes.registerType("worldmap in",WorldMapIn);
|
2016-04-01 18:31:07 +08:00
|
|
|
}
|