2021년 4학년 1학기 기업연계프로젝트2
컴퓨터소프트웨어공학과 <원광투어팀>
팀장 : 송유진
팀원 : 김나영, 이경희, 한유진
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
//========= Copyright 2016-2020, HTC Corporation. All rights reserved. ===========
using HTC.UnityPlugin.VRModuleManagement;using System;using System.Collections.Generic;using System.Linq;using System.Reflection;using UnityEngine;
namespace HTC.UnityPlugin.Vive{ /// <summary>
/// This componenet hooks up custom VR camera required component
/// </summary>
[AddComponentMenu("VIU/Hooks/VR Camera Hook", 10)] public class VRCameraHook : MonoBehaviour { [AttributeUsage(AttributeTargets.Class)] public class CreatorPriorityAttirbute : Attribute { public int priority { get; set; } public CreatorPriorityAttirbute(int priority = 0) { this.priority = priority; } }
public abstract class CameraCreator { public abstract bool shouldActive { get; } public abstract void CreateCamera(VRCameraHook hook); }
private static readonly Type[] s_creatorTypes; private CameraCreator[] m_creators;
static VRCameraHook() { try { var creatorTypes = new List<Type>(); foreach (var type in Assembly.GetAssembly(typeof(CameraCreator)).GetTypes().Where(t => t.IsClass && !t.IsAbstract && t.IsSubclassOf(typeof(CameraCreator)))) { creatorTypes.Add(type); } s_creatorTypes = creatorTypes.OrderBy(t => { foreach (var at in t.GetCustomAttributes(typeof(CreatorPriorityAttirbute), true)) { return ((CreatorPriorityAttirbute)at).priority; } return 0; }).ToArray(); } catch (Exception e) { s_creatorTypes = new Type[0]; Debug.LogError(e); } }
private void Awake() { m_creators = new CameraCreator[s_creatorTypes.Length]; for (int i = s_creatorTypes.Length - 1; i >= 0; --i) { m_creators[i] = (CameraCreator)Activator.CreateInstance(s_creatorTypes[i]); }
if (VRModule.activeModule == VRModuleActiveEnum.Uninitialized) { VRModule.onActiveModuleChanged += OnModuleActivated; } else { OnModuleActivated(VRModule.activeModule); } }
private void OnModuleActivated(VRModuleActiveEnum activatedModule) { foreach (var creator in m_creators) { if (creator.shouldActive) { creator.CreateCamera(this); break; } }
if (activatedModule != VRModuleActiveEnum.Uninitialized) { VRModule.onActiveModuleChanged -= OnModuleActivated; } } }}
|