【问题标题】:Simple multiplayer game development with socket.io [closed]使用 socket.io 进行简单的多人游戏开发 [关闭]
【发布时间】:2012-05-09 19:50:19
【问题描述】:

使用 socket.io 的多人游戏 - 用字母创造更大的单词

我的游戏需要如何运行:

  1. 用户点击停止,然后他们会得到一个字母来创建比其他玩家更大的单词 DONE!

  2. 当用户创建一个词然后点击“提交”按钮并发送到服务器和服务器选择更大的词...尚未完成

  3. 这里我们必须允许使用socket.io进行两人游戏

这是基本 ONE 玩家游戏模组的代码:http://jsfiddle.net/9rtFa/14/

在游戏中也有实时聊天供玩家聊天beetwen。

app.js

var app = require('express').createServer()
var io = require('socket.io').listen(app);

app.listen(8080);

// routing
app.get('/', function (req, res) {
  res.sendfile(__dirname + '/index.html');
});

// usernames which are currently connected to the chat
var usernames = {};

io.sockets.on('connection', function (socket) {

    // when the client emits 'sendchat', this listens and executes
    socket.on('sendchat', function (data) {
        // we tell the client to execute 'updatechat' with 2 parameters
        io.sockets.emit('updatechat', socket.username, data);
    });

    // when the client emits 'adduser', this listens and executes
    socket.on('adduser', function(username){
        // we store the username in the socket session for this client
        socket.username = username;
        // add the client's username to the global list
        usernames[username] = username;
        // echo to client they've connected
        socket.emit('updatechat', 'SERVER', 'you have connected');
        // echo globally (all clients) that a person has connected
        socket.broadcast.emit('updatechat', 'SERVER', username + ' has connected');
        // update the list of users in chat, client-side
        io.sockets.emit('updateusers', usernames);
    });

    // when the user disconnects.. perform this
    socket.on('disconnect', function(){
        // remove the username from global usernames list
        delete usernames[socket.username];
        // update list of users in chat, client-side
        io.sockets.emit('updateusers', usernames);
        // echo globally that this client has left
        socket.broadcast.emit('updatechat', 'SERVER', socket.username + ' has disconnected');
    });
});

和 index.html

<script src="/socket.io/socket.io.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
<script>
    var socket = io.connect('http://localhost:8080');

    // on connection to server, ask for user's name with an anonymous callback
    socket.on('connect', function(){
        // call the server-side function 'adduser' and send one parameter (value of prompt)
        socket.emit('adduser', prompt("What's your name?"));
    });

    // listener, whenever the server emits 'updatechat', this updates the chat body
    socket.on('updatechat', function (username, data) {
        $('#conversation').append('<b>'+username + ':</b> ' + data + '<br>');
    });

    // listener, whenever the server emits 'updateusers', this updates the username list
    socket.on('updateusers', function(data) {
        $('#users').empty();
        $.each(data, function(key, value) {
            $('#users').append('<div>' + key + '</div>');
        });
    });

    // on load of page
    $(function(){
        // when the client clicks SEND
        $('#datasend').click( function() {
            var message = $('#data').val();
            $('#data').val('');
            // tell server to execute 'sendchat' and send along one parameter
            socket.emit('sendchat', message);
        });

        // when the client hits ENTER on their keyboard
        $('#data').keypress(function(e) {
            if(e.which == 13) {
                $(this).blur();
                $('#datasend').focus().click();
            }
        });
    });

</script>
<div style="float:left;width:100px;border-right:1px solid black;height:300px;padding:10px;overflow:scroll-y;">
    <b>USERS</b>
    <div id="users"></div>
</div>
<div style="float:left;width:300px;height:250px;overflow:scroll-y;padding:10px;">
    <div id="conversation"></div>
    <input id="data" style="width:200px;" />
    <input type="button" id="datasend" value="send" />
</div>

现在我需要使用 socket.io 实时允许两个玩家玩带字母的游戏 - 我已经有聊天但如何在我的游戏中实现 socket.io - 我从 jsfiddle 放在上面的代码

请帮助了解 socket.io 游戏开发。

我认为这一定是了解 socket.io 以创建游戏的好教程。 我认为这对这里的很多人来说会很有趣......

【问题讨论】:

  • 为什么-1为什么.......
  • 好的,谢谢,但我认为这对许多人来说一定很有趣,可以通过示例了解 socket.io 的工作原理
  • 不是一个真正的问题,建议您阅读常见问题解答。至于您似乎在问什么,游戏与多用户客户端服务器无关。游戏就是内容,机制都一样,聊天服务器就是一个经典的例子……
  • 如何创建多人版本; jsfiddle.net/9rtFa/12/ witj 实时连接和用户
  • 可能不是问这个问题的好地方,我把他删了

标签: javascript jquery socket.io


【解决方案1】:

您的问题很难理解,所以除了一般建议之外,我不确定您要问什么。

我快速搜索了一下,发现了这个Multiplayer HTML5, Node.js, Socket.IO

可能有用吗?

【讨论】:

  • 我只想为我的简单游戏 jsfiddle.net/9rtFa/12/ 允许多人游戏
  • 你不能只“允许”多人游戏。必须对其进行编程以处理多人交互。
猜你喜欢
  • 1970-01-01
  • 2013-03-31
  • 1970-01-01
  • 2011-05-08
  • 1970-01-01
  • 2016-02-23
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
相关资源
最近更新 更多