2021-07-03 07:35:02 +10:00
|
|
|
import ipc from '../../../node-ipc.js';
|
2014-03-02 09:31:40 +11:00
|
|
|
|
|
|
|
/***************************************\
|
2016-03-23 18:07:37 +11:00
|
|
|
*
|
2014-03-02 09:31:40 +11:00
|
|
|
* Since there is no client relationship
|
2016-03-23 18:07:37 +11:00
|
|
|
* with UDP sockets sockets are not kept
|
2014-03-02 09:31:40 +11:00
|
|
|
* open.
|
2016-03-23 18:07:37 +11:00
|
|
|
*
|
2014-03-02 09:31:40 +11:00
|
|
|
* This means the order sockets are opened
|
|
|
|
* is important.
|
2016-03-23 18:07:37 +11:00
|
|
|
*
|
|
|
|
* Start World first. Then you can start
|
2014-03-02 09:31:40 +11:00
|
|
|
* hello or goodbye in any order you
|
|
|
|
* choose.
|
2016-03-23 18:07:37 +11:00
|
|
|
*
|
2014-03-02 09:31:40 +11:00
|
|
|
* *************************************/
|
2016-03-23 18:07:37 +11:00
|
|
|
|
2016-01-10 23:18:14 +11:00
|
|
|
ipc.config.id = 'hello';
|
2014-03-02 09:31:40 +11:00
|
|
|
ipc.config.retry= 1500;
|
|
|
|
|
|
|
|
ipc.serveNet(
|
|
|
|
8001, //we set the port here because the world server is already using the default of 8000. So we can not bind to 8000 while world is using it.
|
|
|
|
'udp4',
|
|
|
|
function(){
|
|
|
|
ipc.server.on(
|
|
|
|
'message',
|
|
|
|
function(data){
|
|
|
|
ipc.log('got Data');
|
2016-03-23 18:07:37 +11:00
|
|
|
ipc.log('got a message from ', data.id ,' : ', data.message);
|
2014-03-02 09:31:40 +11:00
|
|
|
}
|
|
|
|
);
|
|
|
|
ipc.server.emit(
|
|
|
|
{
|
|
|
|
address : 'localhost',
|
|
|
|
port : ipc.config.networkPort
|
|
|
|
},
|
|
|
|
'message',
|
|
|
|
{
|
|
|
|
id : ipc.config.id,
|
|
|
|
message : 'Hello'
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2015-12-10 21:29:15 +11:00
|
|
|
|
2014-03-02 09:31:40 +11:00
|
|
|
|
2016-01-10 23:18:14 +11:00
|
|
|
ipc.server.start();
|