using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class ItemInfo : ScriptableObject
//데이터를 저장하는 데 사용할 수 있는 데이터 컨테이너
//불러올때마다 사본이 생성되는 것을 방지하여 메모리 사용을 줄임
//프리팹이 있는 프로젝트의 경우 유용함 메모리에 데이터 사본을 하나만 저장
{
public string itemName;
}
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
[CreateAssetMenu(menuName ="3Dgame/New Gun")]
//해당이름 가진 에셋메뉴 만들어주기
public class GunInfo : ItemInfo//아이템 인포로부터 받아옴
{
}
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Item : MonoBehaviour
{
public ItemInfo itemInfo;
public GameObject itemGameObject;
}
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using Photon.Pun;
public class PlayerController : MonoBehaviour
{
[SerializeField] float mouseSensitivity, sprintSpeed, walkSpeed, jumpForce, smoothTime;
[SerializeField] GameObject cameraHolder;
[SerializeField] Item[] items;
public int itemIndex;
public int previousItemIndex=-1;//기본 아이템 값 없도록
//마우스감도 뛰는속도 걷는속도 점프힘 뛰기걷기바꿀때 가속시간
float verticalLookRotation;
bool grounded;//점프를 위한 바닥체크
Vector3 smoothMoveVelocity;
Vector3 moveAmount;//실제 이동거리
Rigidbody rb;
PhotonView PV;
void Awake()
{
rb = GetComponent<Rigidbody>();
PV = GetComponent<PhotonView>();
}
void Start()
{
if (PV.IsMine)
{
EquipItem(0);//시작하고 내 포톤뷰면 1번 아이템끼기(2번 아이템은 번호상 1이다)
}
else
{
Destroy(GetComponentInChildren<Camera>().gameObject);
//내꺼 아니면 카메라 없애기
Destroy(rb);
//내거아니면 리지드 바디 없애주기
}
}
void Update()
{
if (!PV.IsMine)
return;//내꺼아니면 작동안함
Look();
Move();
Jump();
}
void Look()
{
transform.Rotate(Vector3.up * Input.GetAxis("Mouse X") * mouseSensitivity);
//마우스 움직이는 정도*민감도만큼 각도 움직이기
verticalLookRotation += Input.GetAxis("Mouse Y") * mouseSensitivity;
//마우스 움직이는 정도*민감도만큼 각도 값 받기
verticalLookRotation = Mathf.Clamp(verticalLookRotation, -90f, 90f);
//y축 -90도에서 90도만 값으로 받음
cameraHolder.transform.localEulerAngles = Vector3.left * verticalLookRotation;
//받은 각도로 카메라도 돌려줌
}
void Move()
{
Vector3 moveDir = new Vector3(Input.GetAxisRaw("Horizontal"), 0, Input.GetAxisRaw("Vertical")).normalized;
//벡더방향을 가지지만 크기는 1로 노말라이즈
moveAmount = Vector3.SmoothDamp(moveAmount, moveDir * (Input.GetKey(KeyCode.LeftShift) ? sprintSpeed : walkSpeed), ref smoothMoveVelocity, smoothTime);
//왼쪽 쉬프트가 누르면 뛰는속도, 나머지는 걷는속도로하기
//smoothTime만큼에 걸쳐서 이동해주기.
}
void Jump()
{
if (Input.GetKeyDown(KeyCode.Space) && grounded)//땅위에서 스페이스바 누르면
{
rb.AddForce(transform.up * jumpForce);//점프력만큼위로 힘받음
}
}
void EquipItem(int _index)
{
itemIndex = _index;
items[itemIndex].itemGameObject.SetActive(true);//itemIndex번쨰 아이템 on
if (previousItemIndex != -1)//만약 초기 상태가 아니라면
{
items[previousItemIndex].itemGameObject.SetActive(false);
//내가 아까 꼈던 아이템은 off
}
previousItemIndex = itemIndex;//무한 사이클
}
public void SetGroundedState(bool _grounded)
{
grounded = _grounded;
}
void FixedUpdate()
{
if (!PV.IsMine)
return;//내꺼아니면 작동안함
rb.MovePosition(rb.position + transform.TransformDirection(moveAmount) * Time.fixedDeltaTime);
//이동하는거는 계산 끝난 moveAmount만큼만 고정된시간(0.2초)마다에 맞춰서
}
}