namespace update
This commit is contained in:
parent
7d2ffeb11c
commit
05cdf0328d
@ -1,4 +1,4 @@
|
|||||||
namespace Passer.RoboidControl {
|
namespace RoboidControl {
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// A message containing binary data for custom communication
|
/// A message containing binary data for custom communication
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
namespace Passer.RoboidControl {
|
namespace RoboidControl {
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Message notifiying that a Thing no longer exists
|
/// Message notifiying that a Thing no longer exists
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
namespace Passer.RoboidControl {
|
namespace RoboidControl {
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Message to request details for a Thing
|
/// Message to request details for a Thing
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
using Passer.LinearAlgebra;
|
using Passer.LinearAlgebra;
|
||||||
|
|
||||||
namespace Passer.RoboidControl
|
namespace RoboidControl
|
||||||
{
|
{
|
||||||
public class LowLevelMessages
|
public class LowLevelMessages
|
||||||
{
|
{
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
namespace Passer.RoboidControl {
|
namespace RoboidControl {
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Root structure for all communcation messages
|
/// Root structure for all communcation messages
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
namespace Passer.RoboidControl {
|
namespace RoboidControl {
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Message for communicating the URL for a model of the thing
|
/// Message for communicating the URL for a model of the thing
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
namespace Passer.RoboidControl {
|
namespace RoboidControl {
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Message for communicating the name of a thing
|
/// Message for communicating the name of a thing
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
namespace Passer.RoboidControl {
|
namespace RoboidControl {
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// A message communicating the network ID for that participant
|
/// A message communicating the network ID for that participant
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
namespace Passer.RoboidControl {
|
namespace RoboidControl {
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// A participant messages notifies other participants of its presence
|
/// A participant messages notifies other participants of its presence
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
using Passer.LinearAlgebra;
|
using Passer.LinearAlgebra;
|
||||||
|
|
||||||
namespace Passer.RoboidControl {
|
namespace RoboidControl {
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Message to communicate the pose of the thing
|
/// Message to communicate the pose of the thing
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
namespace Passer.RoboidControl {
|
namespace RoboidControl {
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Message for sending generic text
|
/// Message for sending generic text
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
namespace Passer.RoboidControl {
|
namespace RoboidControl {
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Message providing generic information about a Thing
|
/// Message providing generic information about a Thing
|
||||||
|
@ -4,7 +4,7 @@ using System.Collections.Concurrent;
|
|||||||
using System.Net;
|
using System.Net;
|
||||||
using System.Net.Sockets;
|
using System.Net.Sockets;
|
||||||
|
|
||||||
namespace Passer.RoboidControl {
|
namespace RoboidControl {
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// A participant is used for communcation between things
|
/// A participant is used for communcation between things
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Passer.RoboidControl {
|
namespace RoboidControl {
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// A reference to a participant, possibly on a remote location
|
/// A reference to a participant, possibly on a remote location
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
namespace Passer.RoboidControl {
|
namespace RoboidControl {
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// A sensor measuring the distance in the forward direction
|
/// A sensor measuring the distance in the forward direction
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
//using System;
|
//using System;
|
||||||
|
|
||||||
namespace Passer.RoboidControl {
|
namespace RoboidControl {
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// A temperature sensor
|
/// A temperature sensor
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
namespace Passer.RoboidControl {
|
namespace RoboidControl {
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// A sensor which can detect touches
|
/// A sensor which can detect touches
|
||||||
|
@ -2,7 +2,7 @@ using System;
|
|||||||
using System.Net;
|
using System.Net;
|
||||||
using System.Net.Sockets;
|
using System.Net.Sockets;
|
||||||
|
|
||||||
namespace Passer.RoboidControl {
|
namespace RoboidControl {
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// A site server is a participant which provides a shared simulated environment
|
/// A site server is a participant which provides a shared simulated environment
|
||||||
|
2
Thing.cs
2
Thing.cs
@ -2,7 +2,7 @@ using System;
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using Passer.LinearAlgebra;
|
using Passer.LinearAlgebra;
|
||||||
|
|
||||||
namespace Passer.RoboidControl {
|
namespace RoboidControl {
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// A thing is the primitive building block
|
/// A thing is the primitive building block
|
||||||
|
@ -3,7 +3,7 @@ using System.IO;
|
|||||||
using System.Text;
|
using System.Text;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
namespace Passer.RoboidControl.Unity {
|
namespace RoboidControl.Unity {
|
||||||
|
|
||||||
public class UnityLogWriter : TextWriter {
|
public class UnityLogWriter : TextWriter {
|
||||||
public override void Write(char value) {
|
public override void Write(char value) {
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
using System.Collections;
|
using System.Collections;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
namespace Passer.RoboidControl.Unity {
|
namespace RoboidControl.Unity {
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The Unity representation of a distance sensor
|
/// The Unity representation of a distance sensor
|
||||||
|
@ -3,7 +3,7 @@ using System;
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
namespace Passer.RoboidControl.Unity {
|
namespace RoboidControl.Unity {
|
||||||
|
|
||||||
public class SiteServer : MonoBehaviour {
|
public class SiteServer : MonoBehaviour {
|
||||||
public RoboidControl.SiteServer site;
|
public RoboidControl.SiteServer site;
|
||||||
|
@ -3,7 +3,7 @@ using System.Collections;
|
|||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
using UnityEngine.Networking;
|
using UnityEngine.Networking;
|
||||||
|
|
||||||
namespace Passer.RoboidControl.Unity {
|
namespace RoboidControl.Unity {
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The representation of a Thing in Unity
|
/// The representation of a Thing in Unity
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#if UNITY_5_3_OR_NEWER
|
#if UNITY_5_3_OR_NEWER
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
namespace Passer.RoboidControl.Unity {
|
namespace RoboidControl.Unity {
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The Unity representation of the TouchSensor
|
/// The Unity representation of the TouchSensor
|
||||||
|
Loading…
x
Reference in New Issue
Block a user