Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 13 Next capture
2021 2022 2023
1 capture
13 Jun 22 - 13 Jun 22
sparklines
Close Help
  • 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.

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

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

Unity crashing efter losing connection to other Unity 0 Answers

Photon Stream animation 1 Answer

Photon - Loads a level but doesn't spawn player. 1 Answer


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges