<div dir="ltr">







<p class="">Hi all,</p>
<p class="">A little while ago, I released a version of MobMuPlat for iOS with native Pd patch rendering. </p>
<p class=""><a href="https://itunes.apple.com/us/app/mobmuplat/id597679399?mt=8">https://itunes.apple.com/us/app/mobmuplat/id597679399?mt=8</a></p>
<p class="">Now, I'd like to announce that feature has come to Android as well!</p>
<p class=""><a href="https://play.google.com/store/apps/details?id=com.iglesiaintermedia.mobmuplat">https://play.google.com/store/apps/details?id=com.iglesiaintermedia.mobmuplat</a></p>
<p class="">Please let me know of bugs, incongruities, and other issues via the github issue tracker</p>
<p class=""><a href="https://github.com/monkeyswarm/MobMuPlat/issues">https://github.com/monkeyswarm/MobMuPlat/issues</a></p>
<p class="">or via direct email contact.</p>
<p class=""><br></p>
<p class="">(Implementation details below, just for the curious)</p>
<p class="">I was previously asked in another list thread about the implementation, regarding how I was not needing to attach send and receive to GUI objects. I'd like to further explain here.</p>
<p class="">For the initial iOS release, I had created abstractions for each GUI object, and was processing the raw Pd file as text to insert those abstractions into the patch. However, this approach was becoming unwieldy as I attempted to reverse engineer all the behavior of a GUI object into an abstraction that didn't contain the GUI object itself.</p>
<p class="">So for subsequent releases, I no longer use any abstractions. I've switch to manually inserting all the necessary send/receive objects directly into the Pd text file. This allows the GUI object to remain in the patch. All messages flowing _to_ the GUI object are sent to the app display layer, and all messages flowing from the app display layer (in response to user interaction), is sent back into the GUI object in the patch. I hope to illustrate this below.</p>
<p class="">Here's an initial patch state.</p><p class=""><img src="cid:ii_15328edb80bcc27e" alt="Inline image 1" width="242" height="142"><br></p>
<p class="">And here's what gets generated internally. "0-gui-rec" is the handle that the app display widget is sending/receiving on.</p>
<p class=""><img src="cid:ii_15328ede3e7bf4ef" alt="Inline image 2" width="446" height="137"><br></p><p class="">Note that there is _no_ pass-through at the app display layer, e.g. something going to [s 0-gui-rec] will _not_ trigger an output in [r 0-gui-send].</p><p class="">There's still some complications, though. Atom widgets (e.g. float number boxes) remove their inlet/outlet if it has a send/receive name. This complicates my ability to connect to/from it. So in this case, I modify the float box to not have internal send/receive names, which restores the inlet/outlet, and then manually generate send/receive objects to mimic the intended behavior.</p>
<p class="">Here's an initial state.</p>
<p class=""><img src="cid:ii_15328ee27652bc32" alt="Inline image 3" width="337" height="49"><br></p>
<p class="">And the post-processing state.</p>
<p class=""><img src="cid:ii_15328ee402413bf5" alt="Inline image 4" width="370" height="108"><br></p>
<p class="">Hope that shines some light on it!</p>
<p class="">Best, Dan</p>
<p class=""><a href="http://www.danieliglesia.com">www.danieliglesia.com</a></p><p class=""><a href="http://www.mobmuplat.com">www.mobmuplat.com</a></p></div>