Skip to content

Commit 0fb69bd

Browse files
author
setchi
committed
Update UniRx
1 parent f0dddc0 commit 0fb69bd

File tree

347 files changed

+15520
-4423
lines changed

Some content is hidden

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

347 files changed

+15520
-4423
lines changed

Assets/Plugins/UniRx.meta

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Assets/Plugins/UniRx/ReadMe.txt

+53-22
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
1-
UniRx - Reactive Extensions for Unity / ver.4.8.2
1+
UniRx - Reactive Extensions for Unity / ver.5.0.0
22
===
33
Created by Yoshifumi Kawai(neuecc)
44

5+
[![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/neuecc/UniRx?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
6+
57
What is UniRx?
68
---
7-
UniRx (Reactive Extensions for Unity) is a reimplementation of the .NET Reactive Extensions. The Official Rx implementation is great but doesn't work on Unity and has issues with iOS AOT compatibility. This library fixes those issues and adds some specific utilities for Unity. Supported platforms are PC/Mac/Android/iOS/WP8/WindowsStore/etc and the library is fully supported on both Unity 5 and 4.6.
9+
UniRx (Reactive Extensions for Unity) is a reimplementation of the .NET Reactive Extensions. The Official Rx implementation is great but doesn't work on Unity and has issues with iOS AOT/IL2CPP compatibility. This library fixes those issues and adds some specific utilities for Unity. Supported platforms are PC/Mac/Android/iOS/WP8/WindowsStore/etc and the library is fully supported on both Unity 5 and 4.6.
810

911
UniRx is available on the Unity Asset Store (FREE) - http://u3d.as/content/neuecc/uni-rx-reactive-extensions-for-unity/7tT
1012

@@ -103,7 +105,7 @@ parallel.Subscribe(xs =>
103105
Progress information is available:
104106

105107
```csharp
106-
// notifier for progress
108+
// notifier for progress use ScheudledNotifier or new Progress<float>(/* action */)
107109
var progressNotifier = new ScheduledNotifier<float>();
108110
progressNotifier.Subscribe(x => Debug.Log(x)); // write www.progress
109111

@@ -167,6 +169,28 @@ var cancel = Observable.FromCoroutine(AsyncA)
167169
cancel.Dispose();
168170
```
169171

172+
If in Unity 5.3, you can use ToYieldInstruction for Observable to Coroutine.
173+
174+
```csharp
175+
IEnumerator TestNewCustomYieldInstruction()
176+
{
177+
// wait Rx Observable.
178+
yield return Observable.Timer(TimeSpan.FromSeconds(1)).ToYieldInstruction();
179+
180+
// you can change the scheduler(this is ignore Time.scale)
181+
yield return Observable.Timer(TimeSpan.FromSeconds(1), Scheduler.MainThreadIgnoreTimeScale).ToYieldInstruction();
182+
183+
// get return value from ObservableYieldInstruction
184+
var o = ObservableWWW.Get("http://unity3d.com/").ToYieldInstruction(throwOnError: false);
185+
yield return o;
186+
187+
if (o.HasError) { Debug.Log(o.Error.ToString()); }
188+
if (o.HasResult) { Debug.Log(o.Result); }
189+
190+
// other sample(wait until transform.position.y >= 100)
191+
yield return this.ObserveEveryValueChanged(x => x.transform).FirstOrDefault(x => x.position.y >= 100).ToYieldInstruction();
192+
}
193+
```
170194
Normally, we have to use callbacks when we require a coroutine to return a value. Observable.FromCoroutine can convert coroutines to cancellable IObservable[T] instead.
171195

172196
```csharp
@@ -437,7 +461,7 @@ public class DangerousDragAndDrop : MonoBehaviour
437461

438462
UniRx provides an additional safe Repeat method. `RepeatSafe`: if contiguous "OnComplete" are called repeat stops. `RepeatUntilDestroy(gameObject/component)`, `RepeatUntilDisable(gameObject/component)` allows to stop when a target GameObject has been destroyed:
439463

440-
```
464+
```csharp
441465
this.gameObject.OnMouseDownAsObservable()
442466
.SelectMany(_ => this.gameObject.UpdateAsObservable())
443467
.TakeUntil(this.gameObject.OnMouseUpAsObservable())
@@ -446,6 +470,22 @@ this.gameObject.OnMouseDownAsObservable()
446470
.Subscribe(x => Debug.Log(x));
447471
```
448472

473+
UniRx gurantees hot observable(FromEvent/Subject/FromCoroutine/UnityUI.AsObservable..., there are like event) have unhandled exception durability. What is it? If subscribe in subcribe, does not detach event.
474+
475+
```csharp
476+
button.OnClickAsObservable().Subscribe(_ =>
477+
{
478+
// If throws error in inner subscribe, but doesn't detached OnClick event.
479+
ObservableWWW.Get("htttp://error/").Subscribe(x =>
480+
{
481+
Debug.Log(x);
482+
});
483+
});
484+
```
485+
486+
This behaviour is sometimes useful such as user event handling.
487+
488+
449489
All class instances provide an `ObserveEveryValueChanged` method, which watches for changing values every frame:
450490

451491
```csharp
@@ -615,7 +655,7 @@ void Start()
615655
MyToggle.OnValueChangedAsObservable().SubscribeToInteractable(MyButton);
616656

617657
// Input is displayed after a 1 second delay
618-
MyInput.OnValueChangeAsObservable()
658+
MyInput.OnValueChangedAsObservable()
619659
.Where(x => x != null)
620660
.Delay(TimeSpan.FromSeconds(1))
621661
.SubscribeToText(MyText); // SubscribeToText is helper for subscribe to text
@@ -867,28 +907,19 @@ See [UniRx/Examples](https://github.com/neuecc/UniRx/tree/master/Assets/UniRx/Ex
867907

868908
The samples demonstrate how to do resource management (Sample09_EventHandling), what is the MainThreadDispatcher, among other things.
869909

870-
iOS AOT
871-
---
872-
UniRx provides AotSafe utilities:
873-
874-
```csharp
875-
// create safety iterator
876-
Enumerable.Range(1, 10).AsSafeEnumerable().ToArray();
877-
878-
// Wrap elements in a class
879-
Enumerable.Range(1, 10).WrapValueToClass(); // IEnumerable<Tuple<int>>
880-
Observable.Range(1, 10).WrapValueToClass(); // IObservable<Tuple<int>>
881-
```
882-
883-
Please see [AOT Exception Patterns and Hacks](https://github.com/neuecc/UniRx/wiki/AOT-Exception-Patterns-and-Hacks).
884-
885-
If you encounter the [Ran out of trampolines of type 2](http://developer.xamarin.com/guides/ios/troubleshooting/troubleshooting/) error, set the AOT compilation option `nimt-trampolines=2048`. If you encounter the Ran out of trampolines of type 0 error, set the AOT compilation options `ntrampolines=2048` as well. I recommend setting both when using UniRx.
886-
887910
Windows Store/Phone App (NETFX_CORE)
888911
---
889912
Some interfaces, such as `UniRx.IObservable<T>` and `System.IObservable<T>`, cause conflicts when submitting to the Windows Store App.
890913
Therefore, when using NETFX_CORE, please refrain from using such constructs as `UniRx.IObservable<T>` and refer to the UniRx components by their short name, without adding the namespace. This solves the conflicts.
891914

915+
DLL Separation
916+
---
917+
If you want to pre-build UniRx, you can build own dll. clone project and open `UniRx.sln`, you can see `UniRx.Library` and `UniRx.Library.Unity`. `UniRx.Library` can use both .NET 3.5 normal CLR application and Unity. `UniRx.Library.Unity` is for Unity project, you should define compile symbol like `UniRxLibrary;UNITY;UNITY_5_3_0;UNITY_5_3;UNITY_5;UNITY_IPHONE;`. We can not provides binary because compile symbol is different each other.
918+
919+
If needs `UniRx.Library` for minimal test, it avilable in NuGet.
920+
921+
[Install-Package UniRx](https://www.nuget.org/packages/UniRx)
922+
892923
Reference
893924
---
894925
* [RxJava Wiki](https://github.com/Netflix/RxJava/wiki)

Assets/Plugins/UniRx/ReadMe.txt.meta

+1-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Assets/Plugins/UniRx/Scripts.meta

+1-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Assets/Plugins/UniRx/Scripts/Asynchronous.meta

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Assets/Plugins/UniRx/Scripts/Asynchronous/WebRequestExtensions.cs.meta

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Assets/Plugins/UniRx/Scripts/Disposables.meta

+1-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Assets/Plugins/UniRx/Scripts/Disposables/BooleanDisposable.cs.meta

+1-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Assets/Plugins/UniRx/Scripts/Disposables/CompositeDisposable.cs.meta

+1-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)