|
|
|
Autor |
Mensagem |
joaonaveia
Novato
Registrado: 01/11/09 Mensagens: 30
|
|
Multiplayer |
|
Quero entender como crio jogo MULTIPLAYER COM ESTE Código !
| |
procedure TCPClientConnect();
procedure TCPClientDisconnect();
function TCPClientRead():String;
procedure TCPClientWrite(Msg:String);
procedure TCPClientClearBuffer();
procedure TCPServerActivate();
procedure TCPServerDesactivate();
function TCPServerRead():String;
procedure TCPServerWrite(ClientIP:String; Msg:String);
procedure TCPServerWriteToAll(Msg:String);
function IsTCPClientConnected():Boolean;
function GetTCPClientHost():String;
function GetTCPClientPort():Integer;
function GetTCPServerPort():Integer;
procedure SetTCPServerPort(Port:Integer);
procedure SetTCPClientPort(Port:Integer);
procedure SetTCPClientHost(Host:String);
Event OnConnect();
Event OnReceive();
Event OnDisconnect();
|
Obrigado !
|
|
Qua Dez 09, 2009 9:25 pm |
|
|
Edirlei
Administrador
Registrado: 15/03/08 Mensagens: 760
|
|
|
|
Sabe programar? Conhece pelo menos o básico de programação em rede? Arquitetura cliente/servidor?
Se sim, então este tutorial irá te ajudar: https://edirlei.com/3dgamebuilder/pt/3dgamebuilder/Tutorial19.php
Caso contrario, você deve estudar programação, comunicação entre computadores, arquitetura cliente/servidor, protocolos de comunicação, tcp/ip... etc...
|
|
Qui Dez 10, 2009 1:09 am |
|
|
|
|
|
|
|
|