8 using System.Collections;
9 using System.Collections.Generic;
18 [AddComponentMenu(
"EZ GUI/Utility/EZ Screen Placement")]
84 public class RelativeTo
94 get {
return script; }
95 set { Script = value; }
98 public bool Equals(RelativeTo rt)
102 return (horizontal == rt.horizontal && vertical == rt.vertical);
105 public void Copy(RelativeTo rt)
109 horizontal = rt.horizontal;
110 vertical = rt.vertical;
178 protected Vector2 screenSize;
180 #if (UNITY_3_0 || UNITY_3_1 || UNITY_3_2 || UNITY_3_3 || UNITY_3_4 || UNITY_3_5 || UNITY_3_6 || UNITY_3_7 || UNITY_3_8 || UNITY_3_9 || UNITY_4_0 || UNITY_4_1 || UNITY_4_2 || UNITY_4_3 || UNITY_4_4 || UNITY_4_5 || UNITY_4_6 || UNITY_4_7 || UNITY_4_8 || UNITY_4_9) && UNITY_EDITOR
181 [System.NonSerialized]
182 protected bool justEnabled =
true;
183 [System.NonSerialized]
184 protected EZScreenPlacementMirror mirror =
new EZScreenPlacementMirror();
186 [System.NonSerialized]
187 protected bool justEnabled =
true;
188 [System.NonSerialized]
189 protected EZScreenPlacementMirror mirror =
new EZScreenPlacementMirror();
192 protected bool m_awake =
false;
193 protected bool m_started =
false;
202 IUseCamera uc = (IUseCamera)GetComponent(
"IUseCamera");
215 RelativeTo newRT =
new RelativeTo(
this,
relativeTo);
228 screenSize.x = renderCamera.pixelWidth;
229 screenSize.y = renderCamera.pixelHeight;
237 c.AddDependent(
this);
247 public void OnEnable()
252 public void OnDestroy()
258 c.RemoveDependent(
this);
277 sp.PositionOnScreenRecursively();
318 Debug.LogError(
"Render camera not yet assigned to EZScreenPlacement component of \"" + name +
"\" when attempting to call PositionOnScreen()");
319 return transform.position;
322 Vector3 curPos = renderCamera.WorldToScreenPoint(transform.position);
327 case HORIZONTAL_ALIGN.SCREEN_RIGHT:
328 pos.x = screenSize.x + pos.x;
330 case HORIZONTAL_ALIGN.SCREEN_CENTER:
331 pos.x = screenSize.x * 0.5f + pos.x;
333 case HORIZONTAL_ALIGN.OBJECT:
336 pos.x = renderCamera.WorldToScreenPoint(relativeObject.position).x + pos.x;
341 case HORIZONTAL_ALIGN.NONE:
348 case VERTICAL_ALIGN.SCREEN_TOP:
349 pos.y = screenSize.y + pos.y;
351 case VERTICAL_ALIGN.SCREEN_CENTER:
352 pos.y = screenSize.y * 0.5f + pos.y;
354 case VERTICAL_ALIGN.OBJECT:
357 pos.y = renderCamera.WorldToScreenPoint(relativeObject.position).y + pos.y;
362 case VERTICAL_ALIGN.NONE:
367 return renderCamera.ScreenToWorldPoint(pos);
383 screenPos.z = plane.GetDistanceToPoint(transform.position);
389 pos.z = transform.position.z;
390 transform.position = pos;
396 if(!Application.isPlaying)
401 SendMessage(
"OnReposition", SendMessageOptions.DontRequireReceiver);
465 if (c == null || !enabled)
468 if (!Application.isPlaying && justEnabled)
473 screenSize.x = renderCamera.pixelWidth;
474 screenSize.y = renderCamera.pixelHeight;
476 if (
alwaysRecursive || (Application.isEditor && !Application.isPlaying))
483 public void WorldToScreenPos(Vector3 worldPos)
488 Vector3 newPos = renderCamera.WorldToScreenPoint(worldPos);
492 case EZScreenPlacement.HORIZONTAL_ALIGN.SCREEN_CENTER:
493 screenPos.x = newPos.x - (renderCamera.pixelWidth / 2f);
495 case EZScreenPlacement.HORIZONTAL_ALIGN.SCREEN_LEFT:
496 screenPos.x = newPos.x;
498 case EZScreenPlacement.HORIZONTAL_ALIGN.SCREEN_RIGHT:
499 screenPos.x = newPos.x - renderCamera.pixelWidth;
501 case EZScreenPlacement.HORIZONTAL_ALIGN.OBJECT:
504 Vector3 objPos = renderCamera.WorldToScreenPoint(relativeObject.transform.position);
505 screenPos.x = newPos.x - objPos.x;
512 case EZScreenPlacement.VERTICAL_ALIGN.SCREEN_CENTER:
513 screenPos.y = newPos.y - (renderCamera.pixelHeight / 2f);
515 case EZScreenPlacement.VERTICAL_ALIGN.SCREEN_TOP:
516 screenPos.y = newPos.y - renderCamera.pixelHeight;
518 case EZScreenPlacement.VERTICAL_ALIGN.SCREEN_BOTTOM:
519 screenPos.y = newPos.y;
521 case EZScreenPlacement.VERTICAL_ALIGN.OBJECT:
524 Vector3 objPos = renderCamera.WorldToScreenPoint(relativeObject.transform.position);
525 screenPos.y = newPos.y - objPos.y;
530 screenPos.z = newPos.z;
544 get {
return renderCamera.WorldToScreenPoint(transform.position); }
556 List<EZScreenPlacement> objs =
new List<EZScreenPlacement>();
563 while (curObj != null)
565 if (objs.Contains(curObj))
572 if (curObj.relativeObject == null)
596 List<EZScreenPlacement> temp =
new List<EZScreenPlacement>();
597 temp.AddRange(dependents);
599 if(!temp.Contains(sp))
602 dependents = temp.ToArray();
609 List<EZScreenPlacement> temp =
new List<EZScreenPlacement>();
610 temp.AddRange(dependents);
612 dependents = temp.ToArray();
616 public void CleanDependents()
618 if(dependents == null)
621 List<EZScreenPlacement> temp =
new List<EZScreenPlacement>();
631 dependents = temp.ToArray();
633 if(dependents == null)
638 public void UpdateDependents()
644 sp.PositionOnScreen();
649 public virtual void DoMirror()
652 if (Application.isPlaying)
657 mirror =
new EZScreenPlacementMirror();
661 mirror.Validate(
this);
665 if (mirror.DidChange(
this))
672 #if (UNITY_3_0 || UNITY_3_1 || UNITY_3_2 || UNITY_3_3 || UNITY_3_4 || UNITY_3_5 || UNITY_3_6 || UNITY_3_7 || UNITY_3_8 || UNITY_3_9 || UNITY_4_0 || UNITY_4_1 || UNITY_4_2 || UNITY_4_3 || UNITY_4_4 || UNITY_4_5 || UNITY_4_6 || UNITY_4_7 || UNITY_4_8 || UNITY_4_9) && UNITY_EDITOR
680 public virtual void OnDrawGizmosSelected()
687 public virtual void OnDrawGizmos()
699 public class EZScreenPlacementMirror
701 public Vector3 worldPos;
702 public Vector3 screenPos;
703 public EZScreenPlacement.RelativeTo relativeTo;
704 public Transform relativeObject;
705 public Camera renderCamera;
706 public Vector2 screenSize;
708 public EZScreenPlacementMirror()
710 relativeTo =
new EZScreenPlacement.RelativeTo(null);
715 worldPos = sp.transform.position;
716 screenPos = sp.screenPos;
717 relativeTo.Copy(sp.relativeTo);
718 relativeObject = sp.relativeObject;
719 renderCamera = sp.renderCamera;
729 sp.relativeObject = null;
736 Debug.LogError(
"ERROR: The Relative Object you recently assigned on \"" + sp.name +
"\" which points to \"" + sp.relativeObject.name +
"\" would create a circular dependency. Please check your placement dependencies to resolve this.");
737 sp.relativeObject = null;
746 if (worldPos != sp.transform.position)
751 sp.WorldToScreenPos(sp.transform.position);
754 sp.PositionOnScreen();
759 if (renderCamera != null && (screenSize.x != sp.
renderCamera.pixelWidth || screenSize.y != sp.
renderCamera.pixelHeight))
769 if(relativeObject != null)
773 c.RemoveDependent(sp);
Vector3 ScreenPosToLocalPos(Vector3 screenPos)
Calculates a local position from a given screen or object-relative position, according to the current...
void UpdateCamera()
Updates the object's position based on the currently selected renderCamera.
Vector3 ScreenPosToWorldPos(Vector3 screenPos)
void SetCamera()
A no-argument version of SetCamera() that simply re-assigns the same camera to the object...
The X coordinate of screenPos will be interpreted as the number of pixels from the left edge of the s...
bool allowTransformDrag
When checked, you can simply use the transform handles in the scene view to roughly position your obj...
HORIZONTAL_ALIGN
Specifies what the object will be aligned relative to on the horizontal axis.
bool alwaysRecursive
When true, positioning of the object is always done in a recursive fashion. That is, if this object is relative to any other objects, those objects, should they also hold an EZScreenPlacement component, will be positioned before this one.
Transform relativeObject
The object to which this object is relative. NOTE: Only used if either the vertical or horizontal ele...
The Y coordinate of screenPos will be interpreted as the number of pixels from the top edge of the sc...
void PositionOnScreen()
Repositions the object using the existing screen-space settings.
void PositionOnScreen(int x, int y, float depth)
Positions the object using screen coordinates, according to the relativity settings stored in relativ...
void PositionOnScreenRecursively()
Positions the object, taking into account any object-relative dependencies, making sure the objects t...
bool ignoreZ
When set to true, the Z component of Screen Pos will be calculated based upon the distance of the obj...
void PositionOnScreen(Vector3 pos)
Positions the object using screen coordinates, according to the relativity settings stored in relativ...
Camera RenderCamera
Accessor for the camera that will be used to render this object. Use this to ensure the object is pro...
The X coordinate of screenPos will be interpreted as the number of pixels from the center of the scre...
Camera renderCamera
The camera with which this object should be positioned.
The object will not be repositioned along the X axis.
RelativeTo relativeTo
Settings object that describes what this object is positioned relative to.
Vector3 screenPos
The position of the object, relative to the screen or other object.
The Y coordinate of screenPos will be interpreted as the number of pixels from the bottom edge of the...
The X coordinate of screenPos will be interpreted as the number of pixels from the object assigned to...
void SetCamera(Camera c)
Sets the camera to be used for calculating positions.
Vector3 ScreenPosToParentPos(Vector3 screenPos)
Calculates a in the parent's local space from a given screen or object-relative position, according to the current screen-space settings.
Vector3 ScreenCoord
Retrieves the screen coordinate of the object's current position.
The X coordinate of screenPos will be interpreted as the number of pixels from the right edge of the ...
VERTICAL_ALIGN
Specifies what the object will be aligned relative to on the vertical axis.