• Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
0
Question by ankurpatel · Nov 04, 2014 at 03:24 PM · editornetworkingcrashphotonauthoritative server

Unity Editor Crash !!!

i am Working on a Networking game like poker using photon.

so in terms of using authoritative server, we are using our current computer as a self hosted machine.

but unity editor get crashed when we change a code. i checked it in different computer and it happens only if we are using photon my other project works quite good in editor.

i am using a Lite Application as a server and Photon Unity Networking and 2 scripts only..

my Connection Class on MainCamera

 using UnityEngine;
 using System.Collections;
 using System;
 using Hashtable = ExitGames.Client.Photon.Hashtable;
 using ExitGames.Client.Photon.Lite;
 using ExitGames.Client.Photon;
 
 public class Connection : MonoBehaviour
 {
     LitePeer peer;
     PhotonServerFinal _photonserver;
     bool connected;
     String Current_Status;
     public static string answer;
 
     void Start()
     {
         _photonserver = new PhotonServerFinal();
         connected = false;
         Current_Status = "Disconnected";
     }
 
     void Update()
     {
         try
         {
             if (connected)
             {
                 if (_photonserver != null)
                     _photonserver.Update();
             }
         }
         catch (Exception e)
         {
             Debug.Log(e);
         }
     }
 
     void OnGUI()
     {
         GUI.Label(new Rect(0, 0, 100, 100), Current_Status);
         GUI.Label(new Rect(0, 200, 300, 300), answer);
         if (GUI.Button(new Rect(100, 60, 100, 30), "Connect"))
         {
             peer = new LitePeer(_photonserver, ConnectionProtocol.Udp);
             RoomInfo[] allRooms = PhotonNetwork.GetRoomList();
 
             _photonserver.Initialize(peer, "192.168.1.211:5055", "Lite", this);
             connected = true;
             Current_Status = "Connected";
             Debug.Log("Conncting to Master Server Called");
         }
 
         if (connected)
         {
             if (GUI.Button(new Rect(300, 60, 100, 30), "Join Room"))
             {
                 peer.OpJoin("Low_ball_poker");
             }
 
             if (GUI.Button(new Rect(400, 60, 100, 30), "Leave Room"))
             {
                 peer.OpLeave();
                 Debug.Log("Disconnection Called");
             }
         }
     }
 }



Another Script Which Uses Interface...

using ExitGames.Client.Photon; using ExitGames.Client.Photon.Lite; using System.Collections.Generic; using UnityEngine;

public class PhotonServerFinal : IPhotonPeerListener {

 public string Status { get; set; }
 private PhotonPeer peerFinal;
 private Connection Connection_obj;

 public PhotonServerFinal()
 {
     Status = "Disconnected";
 }

 void OnGUI()
 {

 }


 public void Update()
 {
     peerFinal.Service();
 }

 public void Disconnect()
 {
     Debug.Log("DSfdsf");
     peerFinal.Disconnect();
     Debug.Log("Disconnect Called");
 }

 public void OnEvent(EventData eventData)
 {
     Debug.Log("\n---OnEvent: " + eventData.ToStringFull());
 }

 public void OnStatusChanged(StatusCode statusCode)
 {
     Debug.Log(statusCode);
     switch (statusCode)
     {
         case StatusCode.Connect:
             Status = "Connected";
             break;
         case StatusCode.EncryptionEstablished:
             Status = "Encrypted";
             break;
         case StatusCode.Disconnect:
         case StatusCode.DisconnectByServer:
         case StatusCode.DisconnectByServerLogic:
         case StatusCode.DisconnectByServerUserLimit:
         case StatusCode.TimeoutDisconnect:
             Status = "Disconnected";
             break;
         default:
             Status = "Disconnected";
             break;
     }
 }

 public void SendRequest()
 {
     peerFinal.OpCustom(150, new Dictionary<byte, object> { { 1, "Send Request" } }, false);
 }

 public void Initialize(LitePeer peer, string serveraddress, string applicationname, Connection loginBehaviour)
 {
     Debug.Log("Initialize Called");
     peerFinal = peer;
     peerFinal.Connect(serveraddress, applicationname);
     Connection_obj = loginBehaviour;
     Debug.Log("Initialize Called at Final");
 }



 public void DebugReturn(DebugLevel level, string message)
 {
     throw new System.NotImplementedException();
 }

 public void OnOperationResponse(OperationResponse operationResponse)
 {
     Debug.Log("Here111 " + operationResponse.ToStringFull());
     Connection.answer = operationResponse.ToStringFull();
     //throw new System.NotImplementedException();
 }

}

Comment
Add comment
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

0 Replies

· Add your reply
  • Sort: 

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Welcome to Unity Answers

The best place to ask and answer questions about development with Unity.

To help users navigate the site we have posted a site navigation guide.

If you are a new user to Unity Answers, check out our FAQ for more information.

Make sure to check out our Knowledge Base for commonly asked Unity questions.

If you are a moderator, see our Moderator Guidelines page.

We are making improvements to UA, see the list of changes.



Follow this Question

Answers Answers and Comments

2 People are following this question.

avatar image avatar image

Related Questions

Unity editor and build crash when using NetworkComms.net functions 1 Answer

Unity crashing efter losing connection to other Unity 0 Answers

Should I worry about making an authorative server for an online multiplayer WebGL game? 0 Answers

Best way to implement load-balancer 0 Answers

Unity2D Crashes when switching to Scene View 0 Answers

  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges