How to implement Windows Phone code to communicate with Unity (event mode)

Source: Internet
Author: User

Source Address: http://www.cnblogs.com/petto/p/3909063.html

Some crap

Write an article yesterday to write an article today. Not my idle egg pain, is today a day met several annoying problems, wasted a day to fix. This article will be a useful article, of course, if you want to develop a unity game and publish it on WP. All right. No more nonsense. Enter the text.

There are two ways to implement Windows Phone code to communicate or invoke with unity, in general, by defining an event in unity, registering it in WP code, and then triggering the event in a certain case in unity, executing the method of registering the event in WP code;

Another is the plug-in method, that is, in WP writing DLL plug-in, placed in Unity's ASSETS/PLUGINS/WP8 path, and then directly in unity to invoke the static method in the plug-in.

Today, the first--the way of events.

Things to do in unity

First create a new script in unity, and call it random, like I'm called Eventhanlders.

Then turn on vs to edit it (what?) You don't need vs, you use MonoDevelop? Well, you're willing to make a mess with yourself.

Because the System namespace is not added by default in unity, and we use EventHandler here, first

1 Using System;

Then define an event and name it fucked;

1 publiceventEventHandler Fucked;

Define a property to be used in WP's code in the future.

1 publicstringFuckedOrNot;

Then define two methods, modify the value of the Fuckedornot property, and then trigger the fucked event.

1234567891011121314151617 publicvoidBeFucked()    {        FuckedOrNot = "Fucked";        if(Fucked != null)        {            Fucked(this,EventArgs.Empty);        }    }    publicvoidNotBeFucked()    {        FuckedOrNot = "NotFucked";        if(Fucked != null)        {            Fucked(this, EventArgs.Empty);        }    }

Well, the events, attributes, and trigger methods are all written.

Next we draw two buttons in the Ongui to execute the two methods.

123456789101112 voidOnGUI()    {        if(GUI.Button(newRect(100, 100, 200, 150), "BeFucked"))        {            BeFucked();        }        if(GUI.Button(newRect(100, 300, 200, 150), "NotFucked"))        {            NotBeFucked();        }    }

At this point, the code needed in unity has been written.

Drag the script to the camera below,

Then choose the target publishing platform as WP8, select File->builld Settings in the menu bar, click Windows Phone 8, point to switch Platform

  

Then click Build and select the target folder for the build project:

Then make sure that unity will release us as a WP8 solution. Pretty hanging.

What you need to do in WP

Now open the project you just built. Go to the MainPage.xaml.cs file and find the Unity_loaded method.

Register the Fucked event directly inside.

1234567891011121314 privatevoidUnity_Loaded()        {            SetupGeolocator();            vareventHandlers = (EventHandlers)UnityEngine.Object.FindObjectOfType(typeof(EventHandlers));            eventHandlers.Fucked += eventHandlers_Fucked;        }         voideventHandlers_Fucked(objectsender, EventArgs e)        {            Dispatcher.BeginInvoke(() =>            {                MessageBox.Show((sender asEventHandlers).FuckedOrNot);            });        }

  

It is necessary to note that unity is not executed in the UI main thread of the WP application, so the code that wants to execute the main thread of the UI needs to use the Dispatcher.begininvoke

All right. Run and try it.

Let's Do it

is not very simple.

Here we need to say, Ongui this method in the emulator execution will have some problems, such as just when I wrote this example, in the emulator, I have not clicked button, it will continuously pop up "fucked", or "notfucked" (I rub it what meaning ah, Are you asking me whether it's a day or a few? ), so it is advisable to debug directly in the real machine.

And the simulator in the optimization is not good, will make people feel very card. In fact, even Lumia520, the general Unity 2D, runs without pressure in the real machine.

Summarize

I write this article is not to see, the current unity for WP article is relatively small, Microsoft official and unity are out of the relevant introductory tutorials, but in the actual development process will still find a lot of problems they do not mention. For example, unity on the very popular JSON plug-in can not be used on WP, such as unity on the very popular MD5 algorithm, can not be used on WP, such as unity on the very popular XXX can not be used on WP.

Hey, yo! Finally in the foreign site found some more comprehensive plug-ins, I wipe! 20 American Knives! I just quit my job, okay? I can't afford to write it myself.

Actually today I wrote a plugin for using JSON on WP and using MD5. In the next article to get out, who want to use who. I will also gradually improve the plugin, which day put on git up maybe.

Next I will combine my actual development to write WP and unity communication another way-plug-ins. (It seems that this is more popular, after all, the reusability is very strong).

Okay, no more nonsense. Slept, slept.

Again: Unity is really great. It makes a lot of people's childhood dreams come true, or they're trying to make it happen.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.