Skip to content

Instantly share code, notes, and snippets.

View icywind's full-sized avatar

Rick Cheng icywind

View GitHub Profile
@icywind
icywind / AgoraApiHandlersImpl.cs
Created October 21, 2019 18:52
Actual implementation for the Agora SDK event callbacks.
using UnityEngine;
using agora_gaming_rtc;
public class AgoraApiHandlersImpl
{
private IRtcEngine mRtcEngine;
public AgoraApiHandlersImpl(IRtcEngine engine)
{
mRtcEngine = engine;
@icywind
icywind / AgoraVideoController.cs
Created October 21, 2019 19:05
Interface to the Agora Video SDK to do join channel, show video, mute microphone, flip camera, etc.
using UnityEngine;
using agora_gaming_rtc;
using Tanks.TankControllers;
#if (UNITY_ANDROID && UNITY_2018_3_OR_NEWER)
using UnityEngine.Android;
#endif
public class AgoraVideoController
@icywind
icywind / AgoraPlayerController.cs
Created October 21, 2019 19:07
Mapping from the Unity Multiplayer's id to Agora user's id
using System;
using System.Collections.Generic;
using UnityEngine;
using TankNt = Tanks.Networking;
public class AgoraPlayerController
{
private Dictionary<TankNt.NetworkPlayer, uint> NetworkToAgoraIDMap = new Dictionary<TankNt.NetworkPlayer, uint>();
private List<TankNt.NetworkPlayer> m_NetworkPlayers = new List<TankNt.NetworkPlayer>();
private List<uint> m_AgoraUserIds = new List<uint>();
@icywind
icywind / TankManager.cs
Last active October 21, 2019 20:41
Partial list of TankManager.cs
// new code
GameManager.AddTank(this);
StartCoroutine(SetupVideoSurface(player));
} // end of Initialize(TanksNetworkPlayer player)
IEnumerator SetupVideoSurface(TanksNetworkPlayer player)
{
Debug.Log("Tank initializing player:" + player);
yield return new WaitForFixedUpdate();
using UnityEngine;
namespace Tanks.Utilities {
public class FixedRotation : MonoBehaviour
{
// Plane facing front
readonly Quaternion m_Rotation = Quaternion.Euler(-45,45,0);
void LateUpdate()
{
using System;
using UnityEngine;
using Tanks.Map;
using Tanks.Rules;
using Tanks.Networking;
using Tanks.Utilities;
#if PLATFORM_ANDROID
using UnityEngine.Android;
#endif
// When a remote user joined, this delegate will be called. Typically
// create a GameObject to render video on it
private void onUserJoined(uint uid, int elapsed)
{
Debug.Log ("onUserJoined: uid = " + uid);
// this is called in main thread
// find a game object to render video stream from 'uid'
GameObject go = GameObject.Find (uid.ToString ());
if (!ReferenceEquals (go, null)) {
@icywind
icywind / VideoSurface.cs
Created December 10, 2019 04:51
Updated version of VideoSurface to use RawImage for rendering.
using UnityEngine;
using System.Runtime.InteropServices;
using UnityEngine.UI;
/**!! This version of the script is non-official. use it on your own risk! */
/*
* This example script demonstrates how to attachThis example
* video content to a 3D object (chenzhenyong@agora.io)
*
@icywind
icywind / ARClientCaptureARBuffer.cs
Last active January 21, 2021 13:42
Interface for Agora Video Chat clients
// Get Image from the AR Camera, extract the raw data from the image
private unsafe void CaptureARBuffer()
{
// Get the image in the ARSubsystemManager.cameraFrameReceived callback
XRCameraImage image;
if (!cameraManager.TryGetLatestImage(out image))
{
Debug.LogWarning("Capture AR Buffer returns nothing!!!!!!");
return;
@icywind
icywind / RAAR_ShareRenderTexture.cs
Last active March 23, 2020 21:17
RemoteAssistantAR
private void ShareRenderTexture()
{
if (BufferTexture == null) // offlined
{
return;
}
Camera targetCamera = Camera.main; // AR Camera
RenderTexture.active = targetCamera.targetTexture; // the targetTexture holds render texture
Rect rect = new Rect(0, 0, targetCamera.targetTexture.width, targetCamera.targetTexture.height);
BufferTexture.ReadPixels(rect, 0, 0);