Exemple #1
0
        /// <summary>
        /// Adding dying animation for each Invader object.
        /// </summary>
        private static void addDyingAnimation()
        {
            /// Dying animation for enemies
            SpinAnimation     spinAnimationForEnemies   = new SpinAnimation("Spin", sr_dyingTimeForEnemies, sr_dyingSpinsForEnemies, sr_commonOrigin);
            ShrinkAnimation   shrinkAnimationForEnemies = new ShrinkAnimation("Shrink", sr_dyingTimeForEnemies);
            AnimationsLibrary enemyDyingAnimation       = new AnimationsLibrary("Enemy Dying", sr_dyingTimeForEnemies);

            enemyDyingAnimation.AddAnimation(spinAnimationForEnemies, shrinkAnimationForEnemies);
            s_animationsManager.AddAnimationToManager(enemyDyingAnimation);
            /// Attacked animation for spaceships
            bool              v_FinalVisibility           = true;
            BlinkAnimation    blinkAnimationForSpaceships = new BlinkAnimation("Blink", sr_attackedTimeForSpaceships, sr_attackedBlinksForSpaceships, v_FinalVisibility);
            AnimationsLibrary spaceshipAttackedAnimation  = new AnimationsLibrary("Spaceship Attacked", sr_attackedTimeForSpaceships);

            spaceshipAttackedAnimation.AddAnimation(blinkAnimationForSpaceships);
            s_animationsManager.AddAnimationToManager(spaceshipAttackedAnimation);
            /// Dying animation for spaceships
            SpinAnimation     spinAnimationForSpaceships   = new SpinAnimation("Spin", sr_dyingTimeForSpaceships, sr_dyingSpinsForSpaceships, sr_commonOrigin);
            FadeOutAnimation  fadeOutAnimationForSpaceship = new FadeOutAnimation("Fade Out", sr_dyingTimeForSpaceships);
            AnimationsLibrary spaceshipDyingAnimation      = new AnimationsLibrary("Spaceship Dying", sr_dyingTimeForSpaceships);

            spaceshipDyingAnimation.AddAnimation(spinAnimationForSpaceships, fadeOutAnimationForSpaceship);
            s_animationsManager.AddAnimationToManager(spaceshipDyingAnimation);
            /// Attacked animation for motherships
            ShrinkAnimation   shrinkAnimationForMotherships = new ShrinkAnimation("Shrink", sr_attackedTimeForMotherships);
            BlinkAnimation    blinkAnimationForMotherships  = new BlinkAnimation("Blink", sr_attackedTimeForMotherships, sr_attackedBlinksForMotherships);
            FadeOutAnimation  fadeOutAnimationForMothership = new FadeOutAnimation("Fade Out", sr_attackedTimeForMotherships);
            AnimationsLibrary mothershipDyingAnimation      = new AnimationsLibrary("Mothership Attacked", sr_attackedTimeForMotherships);

            mothershipDyingAnimation.AddAnimation(shrinkAnimationForMotherships, blinkAnimationForMotherships, fadeOutAnimationForMothership);
            s_animationsManager.AddAnimationToManager(mothershipDyingAnimation);
        }
Exemple #2
0
 private void End()
 {
     CountBackground.Background     = new SolidColorBrush(ColorConverter.FromHex("#ffA3D89E"));
     ProcessingRingImage.Visibility = Visibility.Collapsed;
     RotatingLine.Visibility        = Visibility.Collapsed;
     IdleImage.Visibility           = Visibility.Visible;
     StatusText.Text = "saving completed - you may safely close the browser";
     SpinAnimation.Stop();
     _isRunning = false;
 }
Exemple #3
0
 private void Start()
 {
     CountBackground.Background     = new SolidColorBrush(ColorConverter.FromHex("#FFe64c65"));
     ProcessingRingImage.Visibility = Visibility.Visible;
     RotatingLine.Visibility        = Visibility.Visible;
     IdleImage.Visibility           = Visibility.Collapsed;
     StatusText.Text = "actions saving - please do not close the browser";
     SpinAnimation.Begin();
     _isRunning = true;
 }
Exemple #4
0
        public static bool ProcessInput(string number, out string message, out int difference)
        {
            SpinAnimation.Start(spinWait: 250);
            var validNumber = int.TryParse(number, out var parseResult);

            difference = 0;
            if (!validNumber)
            {
                message = "Input is not a number";
                return(false);
            }

            validNumber = parseResult < 5 && parseResult > 0;
            if (!validNumber)
            {
                message = "Input is greater than, equal to or less than 5";
                return(false);
            }
            difference = 5 - parseResult;
            message    = $"The difference between {number} and 5 is {(5 - parseResult).ToString()}";
            SpinAnimation.Stop();
            return(true);
        }
        static void Main(string[] args)
        {
// you want to use windows forms instead. This is just a random input method and also the easiest one, at least for me

            string pat    = Environment.GetFolderPath(Environment.SpecialFolder.Desktop);
            string patpsa = pat + @"\whatever.txt";

            if (!File.Exists(patpsa))
            {
                Console.WriteLine("\a\n \t **I CAN'T FIND THE PAGES YOU WANT TO SEE!!**\n\n\n Don't panic just do this:\n\n 1) Put all google account urls into a text (.txt) file separated by a tab \n(no new line please!).\n\n 2) Then save the file on your Desktop with the name watever.txt\n\n d) Just run me again.\n\n\n\n P.S.: Finger crossing, knocks on wood, or even prayers are perfectly fine but\n won't help much \n");
                Console.ReadKey();
            }
            else
            {
                Console.Write("\n\t Working...\t"); //this just prints a message on the Desktop

                // Spinner: http://www.c-sharpcorner.com/uploadfile/cbragg/console-application-waitbusy-spin-animation/
                SpinAnimation.Start(50);
                string[] gpages = File.ReadAllLines(patpsa);
                foreach (string page in gpages)
                {
                    //simple regex
                    string[] pages = page.Split('\t');
                    foreach (string pag in pages)
                    {
                        string[] pieces = pag.Split('/');
                        var      pageid = pieces[3]; //add something to check if this is an integral

                        UriBuilder NewUrl = new UriBuilder("https", "www.googleapis.com/plus/v1/people/" + pageid);
                        string     key    = " "; //put your Google app key here
                        string     url    = NewUrl + "activities/public?key=" + key;

                        System.Threading.Thread.Sleep(6000);

                        System.Net.WebClient wc = new System.Net.WebClient();
                        var    request          = wc.DownloadData(url);
                        var    stuff            = Encoding.UTF8.GetString(request);
                        string patjson          = Environment.GetFolderPath(Environment.SpecialFolder.Desktop);
                        string pathj            = patjson + @"\googleJSON.txt";

                        if (!File.Exists(pathj))
                        {
                            using (StreamWriter sw = File.CreateText(pathj))
                            {
                                //this just writes the whole thing

                                sw.WriteLine(stuff);
                            }
                        }
                        JavaScriptSerializer ser  = new JavaScriptSerializer();
                        itemList             data = new JavaScriptSerializer().Deserialize <itemList>(stuff);
                        foreach (var obj in data.items)
                        {
                            //let's set some variables shall we
                            var crapsid      = obj.id;
                            var kindacrap    = obj.kind;
                            var published    = obj.published;
                            var updated      = obj.updated;
                            var crapsurl     = obj.url;
                            var actorname    = obj.actor.displayName;
                            var actorid      = obj.actor.id;
                            var actorprofile = obj.actor.url;
                            var objecttype   = obj.Object.objectType;
                            var objcontent   = obj.Object.content;
                            var reshares     = obj.Object.resharers.totalItems;
                            var plusoners    = obj.Object.plusoners.totalItems;
                            var replies      = obj.Object.replies.totalItems;
                            var fubar        = obj.provider.title;
                            Console.WriteLine("OBJECT ID" + crapsid);
                            Console.ReadKey();
                            UriBuilder commentsurl = new UriBuilder("https", "www.googleapis.com/plus/v1/activities/" + crapsid + "/comments");


                            string urls2 = commentsurl + "public?key=" + key;
                            Console.WriteLine("fetching this url for comments" + urls2);
                            System.Threading.Thread.Sleep(6000);

                            System.Net.WebClient client = new System.Net.WebClient();
                            var bohica = client.DownloadData(urls2);
                            var wtf    = Encoding.UTF8.GetString(bohica);


                            if (wt != null) //checking if it has something

                            {
                                string patjson2 = Environment.GetFolderPath(Environment.SpecialFolder.Desktop);
                                string pathjc   = patjson2 + @"\googleJSONcomments.txt";

                                if (!File.Exists(pathjc))
                                {
                                    using (StreamWriter sw = File.CreateText(pathjc))
                                    {
                                        //thought you would like to see a sample JSON in a file to study it so this will do it
                                        sw.WriteLine(wt);
                                    }
                                }
                                else //close if 2 open else
                                {
                                    using (StreamWriter sw = File.AppendText(pathjc))
                                    {
                                        sw.Write("\n\n NEW OBJECT\n" + wt);
                                    }
                                } //close else
                            }     //close if 1

                            //now we do it for resharers
                            System.Threading.Thread.Sleep(6000);
                            UriBuilder resharesurl = new UriBuilder("https", "www.googleapis.com/plus/v1/activities/" + crapsid + "/people/resharers");

                            string urls3 = resharesurl + "public?key=" + key;
                            Console.WriteLine("fetching this url for reshares" + urls3);
                            System.Threading.Thread.Sleep(6000);

                            System.Net.WebClient whatever = new System.Net.WebClient();
                            var snafu = whatever.DownloadData(urls3);
                            var wfu   = Encoding.UTF8.GetString(snafu);
                            if (wfu != null)
                            {
                                Console.WriteLine("RESHARERS" + wfu);

                                string patjson3 = Environment.GetFolderPath(Environment.SpecialFolder.Desktop);
                                string pathjr   = patjson3 + @"\googleJSONresharers.txt";

                                if (!File.Exists(pathjr))
                                {
                                    using (StreamWriter sw = File.CreateText(pathjr))
                                    {
                                        //thought you would like to see a sample JSON in a file to study it so this will do it
                                        sw.WriteLine(wfu);
                                    }
                                }
                                else
                                {
                                    using (StreamWriter sw = File.AppendText(pathjr))
                                    {
                                        sw.Write("\n\n NEW OBJECT\n" + wfu); // for debug
                                    }
                                }
                            }
                            //& finally the plusoners (likers) for each post
                            System.Threading.Thread.Sleep(6000);
                            UriBuilder plusesurl = new UriBuilder("https", "www.googleapis.com/plus/v1/activities/" + crapsid + "/people/resharers");

                            string urls4 = resharesurl + "public?key=" + key;
                            Console.WriteLine("fetching this url for plusones " + urls4);
                            System.Threading.Thread.Sleep(6000);

                            System.Net.WebClient whatever02 = new System.Net.WebClient();
                            var bar = whatever02.DownloadData(urls4);
                            var fu  = Encoding.UTF8.GetString(bar);
                            if (fu != null)
                            {
                                Console.WriteLine("PLUSONERS" + fu);

                                string patjson3 = Environment.GetFolderPath(Environment.SpecialFolder.Desktop);
                                string pathjr3  = patjson3 + @"\googleJSONplusoners.txt";

                                if (!File.Exists(pathjr3))
                                {
                                    using (StreamWriter sw = File.CreateText(pathjr3))
                                    {
                                        //thought you would like to see a sample JSON in a file to sudy it so this will do it
                                        sw.WriteLine(fu);
                                    }
                                }
                                else
                                {
                                    using (StreamWriter sw = File.AppendText(pathjr3))
                                    {
                                        sw.Write("\n\n NEW OBJECT\n" + fu); //debug
                                    }
                                }
                            }

                            //let's decide a path and file name
                            string pat1 = Environment.GetFolderPath(Environment.SpecialFolder.Desktop);
                            string path = pat1 + @"\google.txt";
                            // if the file doesn't exist, we create one and insert the data we just grabbed only once
                            if (!File.Exists(path))
                            {
                                using (StreamWriter sw = File.CreateText(path))
                                {
                                    /*
                                     *      just an example of what you can do
                                     *      sw.Write(obj.title + "\t" + obj.kind + "\t" + obj.published + "\t" + obj.updated + "\t" + obj.id + "\t" + obj.url + "\t" + obj.actor.displayName + "\t" + obj.actor.id + "\t" + obj.actor.url + "\t" + obj.Object.objectType + "\t" + obj.Object.content + "\t" + obj.Object.resharers.totalItems + "\t" + obj.Object.plusoners.totalItems + "\t" + obj.Object.replies.totalItems + "\t" + obj.provider.title);
                                     */
                                }
                            }
                            else
                            {
                                /* if instead there's already a file with that name and path, we have to do something more complex. The following hopefully opens the file,
                                 * reads the lines contained in it one by one, and compares the id of each of the posts we've just grabbed form Google+. This is just an example and has no purpose */

                                if (File.ReadLines(path).Any(line => line.Contains(obj.id)))
                                {
                                    //if the post id string is already in the file, we're about to append a duplicate. We don't want duplicates so let's skip that item
                                    break;
                                }
                                else
                                {
                                    //if there are no duplicates, we add data to what we already had (without overwriting) with AppendText. This is just an example and has no specific purpose
                                    using (StreamWriter sw = File.AppendText(path))
                                    {
                                        /*
                                         *  just an example of what you can do with the data
                                         *  sw.Write(obj.title + "\t" + obj.kind + "\t" + obj.published + "\t" + obj.updated + "\t" + obj.id + "\t" + obj.url + "\t" + obj.actor.displayName + "\t" + obj.actor.id + "\t" + obj.actor.url + "\t" + obj.Object.objectType + "\t" + obj.Object.content + "\t" + obj.Object.resharers.totalItems + "\t" + obj.Object.plusoners.totalItems + "\t" + obj.Object.replies.totalItems + "\t" + obj.provider.title);
                                         * //or use the variables I set to print data into some user interface
                                         */
                                    }
                                }
                            }
                        }
                    }
                }

                // Spinner: http://www.c-sharpcorner.com/uploadfile/cbragg/console-application-waitbusy-spin-animation/
                SpinAnimation.Stop();

                // now we open the file and print the data on the screen
                try
                {
                    string patt    = Environment.GetFolderPath(Environment.SpecialFolder.Desktop);
                    string pattpsa = patt + @"\google.txt";

                    using (StreamReader sr = new StreamReader(pattpsa))
                    {
                        String line = sr.ReadToEnd();
                        Console.WriteLine(line);
                    }
                }
                catch (Exception e)
                {
                    Console.WriteLine("Was trying to read the file we just created/updated but couldn't:");
                    Console.WriteLine(e.Message);
                }



                Console.ReadKey();
            }
        }
Exemple #6
0
    //private PlayerMovementController pMovement;

    void Start()
    {
        SpinOut   = GameObject.Find("SpinOutController").GetComponent <SpinAnimation>();
        GameState = GameObject.Find("GameState").GetComponent <GameState> ();
        //pMovement = GameObject.Find("PlayerMovement").GetComponent<PlayerMovementController> ();
    }