Exemple #1
0
        private static NextBlockInfo GetNextBlockInfo(this ProcessHandle handle)
        {
            Point rawPlayer    = handle.GetPlayer();
            bool  rawDirection = handle.GetDirection();

            Point player = new Point(rawPlayer.X / 32, (rawPlayer.Y - 2 + 31) / 32);

            int firstSearchedX = player.X + (rawDirection ? 1 : -1);
            int increment      = rawDirection ? 1 : -1;

            NextBlockInfo res        = null;
            int           NextBlockX = -1;

            for (int i = firstSearchedX; i >= 0 && i < 100; i += increment)
            {
                short fore = handle.GetBlock(i, player.Y);
                short back = handle.GetBackground(i, player.Y);
                if (fore != 0 || back != 0)
                {
                    res = new NextBlockInfo()
                    {
                        Background = back,
                        Foreground = fore
                    };
                    NextBlockX = i;
                    break;
                }
            }

            if (NextBlockX == -1)
            {
                return(null);
            }

            res.Distance = ((rawPlayer.X - 6) - (NextBlockX * 32)) * (rawDirection ? -1 : 1) - 32;
            return(res);
        }
Exemple #2
0
        // Return value: whether to attempt breaking again.
        public static bool Start()
        {
            App.Status = "Initializing...";

            // Retrieve ProcessHandle.
            var ps = Process.GetProcessesByName("Growtopia");

            if (ps.Length == 0)
            {
                App.Status = "Growtopia isn't open.";
                return(false);
            }
            else if (ps.Length > 1)
            {
                App.Status = "More than one Growtopia detected.";
                return(false);
            }
            Process       process = ps.Single();
            ProcessHandle handle  = process.GetHandle();

            // Prepare local variables.
            MovementManager movementManager = new MovementManager();
            PunchManager    punchManager    = new PunchManager();

            bool direction = false;

            if (!UserSettings.Current.DebugMode && (!handle.GetNextBlockInfo()?.IsBlock() ?? true))
            {
                App.Status = "No blocks found.";
                return(false);
            }

            /* var sw = Stopwatch.StartNew(); */

            // Breaking.
            Discord.Update(DiscordStatus.Breaking, rows);
            App.Status = "Breaking...";
            bool NextRowCondition = false;

            while (Active)
            {
                /* App.Status = ((double)sw.ElapsedTicks * 1000 / Stopwatch.Frequency).ToString(); */
                /* sw.Restart(); */

                // Getting distance.
                var info = handle.GetNextBlockInfo();
                int distance;
                if (!UserSettings.Current.DebugMode)
                {
                    if (!info?.IsBlock() ?? true)
                    {
                        if (info?.IsDoor() ?? false)
                        {
                            NextRowCondition = true;
                        }
                        break;
                    }
                    distance = info.Distance;
                }
                else
                {
                    distance = info?.Distance ?? -128;
                }

                direction = handle.GetDirection();

                // Simulating punch.
                if (!UserSettings.Current.DebugMode && UserSettings.Current.Punch)
                {
                    bool?punch = punchManager.Update();
                    if (punch != null)
                    {
                        handle.SendKey(Keys.Space, punch.Value);
                    }
                }

                // Simulating movement.
                // Determining movement based on time/distance.
                if (!UserSettings.Current.DebugMode)
                {
                    bool?down = movementManager.Update(Move(distance, direction));
                    if (down != null)
                    {
                        handle.SendKey(direction ? Keys.D : Keys.A, down.Value);
                    }
                }

                if (info == null)
                {
                    App.Status = "No blocks found.";
                }
                else
                {
                    App.Status = "FG: " + info.Foreground + ", BG: " + info.Background + ", distance: " + info.Distance + ".";
                }
            }

            // Cancelling input if there's any.
            handle.SendKey(direction ? Keys.D : Keys.A, false);
            handle.SendKey(Keys.Space, false);

            if (Active == true)
            {
                rows++;
                if (!UserSettings.Current.DebugMode && UserSettings.Current.Continue && NextRowCondition)
                {
                    App.Status = "Executing custom script...";
                    Discord.Update(DiscordStatus.Advancing, rows);
                    handle.ExecuteScript(direction);
                    if (!Active)
                    {
                        App.Status = "Finished: manual request.";
                        return(false);
                    }
                }
                else
                {
                    App.Status = "Finished: out of blocks.";
                }
                return(UserSettings.Current.Continue && !UserSettings.Current.DebugMode);
            }
            else
            {
                App.Status = "Finished: manual request.";
                return(false);
            }
        }
Exemple #3
0
 public static void SendKey(this ProcessHandle handle, Keys key, bool down) =>
 SendMessage(handle.WindowHandle, down ? WM_KEYDOWN : WM_KEYUP, (uint)key, 0);
Exemple #4
0
 public static void HoldKey(this ProcessHandle handle, Keys key, int duration)
 {
     handle.SendKey(key, true);
     Thread.Sleep(duration);
     handle.SendKey(key, false);
 }
Exemple #5
0
 public static bool GetDirection(this ProcessHandle handle)
 {
     byte[] raw = handle.GetBytes(0x4EEEF8, 1, 0xCC8, 0x188, 0x131);
     return(raw[0] == 0);
 }