Skip to content

Commit bcfe81c

Browse files
author
setchi
committed
Update UniRx
1 parent e12828b commit bcfe81c

File tree

371 files changed

+14009
-1348
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

371 files changed

+14009
-1348
lines changed

Assets/Plugins/UniRx/Examples.meta

+9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
#if !(UNITY_METRO || UNITY_WP8)
2+
3+
using UnityEngine;
4+
5+
namespace UniRx.Examples
6+
{
7+
// sample script, attach your object.
8+
public class Sample01_ObservableWWW : MonoBehaviour
9+
{
10+
void Start()
11+
{
12+
// Basic: Download from google.
13+
{
14+
ObservableWWW.Get("http://google.co.jp/")
15+
.Subscribe(
16+
x => Debug.Log(x.Substring(0, 100)), // onSuccess
17+
ex => Debug.LogException(ex)); // onError
18+
}
19+
20+
// Linear Pattern with LINQ Query Expressions
21+
// download after google, start bing download
22+
{
23+
var query = from google in ObservableWWW.Get("http://google.com/")
24+
from bing in ObservableWWW.Get("http://bing.com/")
25+
select new { google, bing };
26+
27+
var cancel = query.Subscribe(x => Debug.Log(x.google.Substring(0, 100) + ":" + x.bing.Substring(0, 100)));
28+
29+
// Call Dispose is cancel downloading.
30+
cancel.Dispose();
31+
}
32+
33+
// Observable.WhenAll is for parallel asynchronous operation
34+
// (It's like Observable.Zip but specialized for single async operations like Task.WhenAll of .NET 4)
35+
{
36+
var parallel = Observable.WhenAll(
37+
ObservableWWW.Get("http://google.com/"),
38+
ObservableWWW.Get("http://bing.com/"),
39+
ObservableWWW.Get("http://unity3d.com/"));
40+
41+
parallel.Subscribe(xs =>
42+
{
43+
Debug.Log(xs[0].Substring(0, 100)); // google
44+
Debug.Log(xs[1].Substring(0, 100)); // bing
45+
Debug.Log(xs[2].Substring(0, 100)); // unity
46+
});
47+
}
48+
49+
// with Progress
50+
{
51+
// notifier for progress
52+
var progressNotifier = new ScheduledNotifier<float>();
53+
progressNotifier.Subscribe(x => Debug.Log(x)); // write www.progress
54+
55+
// pass notifier to WWW.Get/Post
56+
ObservableWWW.Get("http://google.com/", progress: progressNotifier).Subscribe();
57+
}
58+
59+
// with Error
60+
{
61+
// If WWW has .error, ObservableWWW throws WWWErrorException to onError pipeline.
62+
// WWWErrorException has RawErrorMessage, HasResponse, StatusCode, ResponseHeaders
63+
ObservableWWW.Get("http://www.google.com/404")
64+
.CatchIgnore((WWWErrorException ex) =>
65+
{
66+
Debug.Log(ex.RawErrorMessage);
67+
if (ex.HasResponse)
68+
{
69+
Debug.Log(ex.StatusCode);
70+
}
71+
foreach (var item in ex.ResponseHeaders)
72+
{
73+
Debug.Log(item.Key + ":" + item.Value);
74+
}
75+
})
76+
.Subscribe();
77+
}
78+
}
79+
}
80+
}
81+
82+
#endif

Assets/Plugins/UniRx/Examples/Sample01_ObservableWWW.cs.meta

+12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
using UnityEngine;
2+
using UniRx.Triggers; // Triggers Namepsace
3+
using System;
4+
5+
namespace UniRx.Examples
6+
{
7+
public class Sample02_ObservableTriggers : MonoBehaviour
8+
{
9+
void Start()
10+
{
11+
// Get the plain object
12+
var cube = GameObject.CreatePrimitive(PrimitiveType.Cube);
13+
14+
// Add ObservableXxxTrigger for handle MonoBehaviour's event as Observable
15+
cube.AddComponent<ObservableUpdateTrigger>()
16+
.UpdateAsObservable()
17+
.SampleFrame(30)
18+
.Subscribe(x => Debug.Log("cube"), () => Debug.Log("destroy"));
19+
20+
// destroy after 3 second:)
21+
GameObject.Destroy(cube, 3f);
22+
}
23+
}
24+
}

Assets/Plugins/UniRx/Examples/Sample02_ObservableTriggers.cs.meta

+12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
#if !(UNITY_IPHONE || UNITY_ANDROID || UNITY_METRO)
2+
3+
using UnityEngine;
4+
using UniRx.Triggers; // for enable gameObject.EventAsObservbale()
5+
6+
namespace UniRx.Examples
7+
{
8+
public class Sample03_GameObjectAsObservable : MonoBehaviour
9+
{
10+
void Start()
11+
{
12+
// All events can subscribe by ***AsObservable if enables UniRx.Triggers
13+
this.OnMouseDownAsObservable()
14+
.SelectMany(_ => this.gameObject.UpdateAsObservable())
15+
.TakeUntil(this.gameObject.OnMouseUpAsObservable())
16+
.Select(_ => Input.mousePosition)
17+
.RepeatUntilDestroy(this)
18+
.Subscribe(x => Debug.Log(x), ()=> Debug.Log("!!!" + "complete"));
19+
}
20+
}
21+
}
22+
23+
#endif

Assets/Plugins/UniRx/Examples/Sample03_GameObjectAsObservable.cs.meta

+12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
using System;
2+
using UnityEngine;
3+
4+
namespace UniRx.Examples
5+
{
6+
public class Sample04_ConvertFromUnityCallback : MonoBehaviour
7+
{
8+
// This is about log but more reliable log sample => Sample11_Logger
9+
10+
private class LogCallback
11+
{
12+
public string Condition;
13+
public string StackTrace;
14+
public UnityEngine.LogType LogType;
15+
}
16+
17+
static class LogHelper
18+
{
19+
// If static register callback, use Subject for event branching.
20+
21+
#if (UNITY_4_0 || UNITY_4_1 || UNITY_4_2 || UNITY_4_3 || UNITY_4_4 || UNITY_4_5 || UNITY_4_6 || UNITY_4_7)
22+
static Subject<LogCallback> subject;
23+
24+
public static IObservable<LogCallback> LogCallbackAsObservable()
25+
{
26+
if (subject == null)
27+
{
28+
subject = new Subject<LogCallback>();
29+
30+
// Publish to Subject in callback
31+
32+
33+
UnityEngine.Application.RegisterLogCallback((condition, stackTrace, type) =>
34+
{
35+
subject.OnNext(new LogCallback { Condition = condition, StackTrace = stackTrace, LogType = type });
36+
});
37+
}
38+
39+
return subject.AsObservable();
40+
}
41+
42+
#else
43+
// If standard evetns, you can use Observable.FromEvent.
44+
45+
public static IObservable<LogCallback> LogCallbackAsObservable()
46+
{
47+
return Observable.FromEvent<Application.LogCallback, LogCallback>(
48+
h => (condition, stackTrace, type) => h(new LogCallback { Condition = condition, StackTrace = stackTrace, LogType = type }),
49+
h => Application.logMessageReceived += h, h => Application.logMessageReceived -= h);
50+
}
51+
#endif
52+
}
53+
54+
void Awake()
55+
{
56+
// method is separatable and composable
57+
LogHelper.LogCallbackAsObservable()
58+
.Where(x => x.LogType == LogType.Warning)
59+
.Subscribe(x => Debug.Log(x));
60+
61+
LogHelper.LogCallbackAsObservable()
62+
.Where(x => x.LogType == LogType.Error)
63+
.Subscribe(x => Debug.Log(x));
64+
}
65+
}
66+
}

Assets/Plugins/UniRx/Examples/Sample04_ConvertFromUnityCallback.cs.meta

+12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
using System;
2+
using System.Collections;
3+
using UnityEngine;
4+
5+
namespace UniRx.Examples
6+
{
7+
public class Sample05_ConvertFromCoroutine
8+
{
9+
// public method
10+
public static IObservable<string> GetWWW(string url)
11+
{
12+
// convert coroutine to IObservable
13+
return Observable.FromCoroutine<string>((observer, cancellationToken) => GetWWWCore(url, observer, cancellationToken));
14+
}
15+
16+
// IEnumerator with callback
17+
static IEnumerator GetWWWCore(string url, IObserver<string> observer, CancellationToken cancellationToken)
18+
{
19+
var www = new UnityEngine.WWW(url);
20+
while (!www.isDone && !cancellationToken.IsCancellationRequested)
21+
{
22+
yield return null;
23+
}
24+
25+
if (cancellationToken.IsCancellationRequested) yield break;
26+
27+
if (www.error != null)
28+
{
29+
observer.OnError(new Exception(www.error));
30+
}
31+
else
32+
{
33+
observer.OnNext(www.text);
34+
observer.OnCompleted();
35+
}
36+
}
37+
}
38+
}

Assets/Plugins/UniRx/Examples/Sample05_ConvertFromCoroutine.cs.meta

+12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
using System;
2+
using System.Collections;
3+
using UnityEngine;
4+
5+
namespace UniRx.Examples
6+
{
7+
public class Sample06_ConvertToCoroutine : MonoBehaviour
8+
{
9+
// convert IObservable to Coroutine
10+
void Start()
11+
{
12+
StartCoroutine(ComplexCoroutineTest());
13+
}
14+
15+
IEnumerator ComplexCoroutineTest()
16+
{
17+
yield return new WaitForSeconds(1);
18+
19+
var v = default(int);
20+
yield return Observable.Range(1, 10).StartAsCoroutine(x => v = x);
21+
22+
Debug.Log(v); // 10(callback is last value)
23+
yield return new WaitForSeconds(3);
24+
25+
yield return Observable.Return(100).StartAsCoroutine(x => v = x);
26+
27+
Debug.Log(v); // 100
28+
}
29+
30+
// like WWW.text/error, LazyTask is awaitable value container
31+
IEnumerator LazyTaskTest()
32+
{
33+
// IObservable<T> to LazyTask
34+
var task = Observable.Start(() => 100).ToLazyTask();
35+
36+
yield return task.Start(); // wait for OnCompleted
37+
38+
Debug.Log(task.Result); // or task.Exception
39+
}
40+
41+
// Note:ToAwaitableEnumerator/StartAsCoroutine/LazyTask are obsolete way on Unity 5.3
42+
// You can use ToYieldInstruction.
43+
44+
#if !(UNITY_4_0 || UNITY_4_1 || UNITY_4_2 || UNITY_4_3 || UNITY_4_4 || UNITY_4_5 || UNITY_4_6 || UNITY_5_0 || UNITY_5_1 || UNITY_5_2)
45+
46+
IEnumerator TestNewCustomYieldInstruction()
47+
{
48+
// wait Rx Observable.
49+
yield return Observable.Timer(TimeSpan.FromSeconds(1)).ToYieldInstruction();
50+
51+
// you can change the scheduler(this is ignore Time.scale)
52+
yield return Observable.Timer(TimeSpan.FromSeconds(1), Scheduler.MainThreadIgnoreTimeScale).ToYieldInstruction();
53+
54+
// get return value from ObservableYieldInstruction
55+
var o = ObservableWWW.Get("http://unity3d.com/").ToYieldInstruction(throwOnError: false);
56+
yield return o;
57+
58+
if (o.HasError) { Debug.Log(o.Error.ToString()); }
59+
if (o.HasResult) { Debug.Log(o.Result); }
60+
61+
// other sample(wait until transform.position.y >= 100)
62+
yield return this.ObserveEveryValueChanged(x => x.transform).FirstOrDefault(x => x.position.y >= 100).ToYieldInstruction();
63+
}
64+
65+
#endif
66+
67+
}
68+
}

0 commit comments

Comments
 (0)