Создание игрового снаряда Flash Actionscript 3.0

#flash #actionscript-3

#flash #actionscript-3

Вопрос:

——— ИСПРАВЛЕНА ПЕРВОНАЧАЛЬНАЯ ПРОБЛЕМА, НО у меня ЕСТЬ НОВАЯ ПРОЛЕМА — ПОЖАЛУЙСТА, СМОТРИТЕ НИЖЕ —————————

В моей игре с боковой прокруткой я пытаюсь создать дротики, которыми игрок стреляет. Конечно, я хочу, чтобы дротики начинались там, где находится игрок, а затем дротики двигались в своих направлениях.

Однако у меня проблема. В моей игре я использую функцию прокрутки, которая помещает игрока прямо в середину экрана. Вот эта функция:

         // This function scrolls the MovieClip Containers on the screen
    private function scrollScreen(event:Event):void {

        // Here we offset the elements' 'x' and 'y' coordinates by 
        // the distance between the Player and the centre of the stage
            // Environment Container
            envContainer.x  = (stage.stageWidth * 0.5) - player.x;
            // Background Container
                // Background moves more slowly along the 'x' axis to simulate distance
            bgContainer.x  = ((stage.stageWidth * 0.5) - player.x) * 1/20;
            // Position the Player at the centre of the game screen ('x' axis)
            player.x = stage.stageWidth * 0.5;

        // Here we offset the elements' 'y' coordinates
            // Environment Container
            envContainer.y  = (stage.stageHeight * 0.5) - player.y;
            // Background Container
            bgContainer.y  = (stage.stageHeight * 0.5) - player.y;
            // Position the Player at the centre of the game screen ('y' axis)
            player.y = stage.stageHeight * 0.5;             
   } // End of 'scrollScreen()' function    
  

Насколько я могу судить, прокрутка в ‘envContainer’ и ‘bgContainer’ не имеет никакого отношения к проблеме, о которой я говорю. Меня беспокоит только позиционирование игрока.

Теперь вот функция, которую я использую для создания дротиков:

     // This function creates a dart
    private function createDart():void {

        if (playerDartContainer.numChildren <= 4) {

            trace("DART!");

            playerDart = new PlayerDart();

            playerDart.x = player.x;
            playerDart.y = player.y;

            trace("PD x: "   playerDart.x);
            trace("Player x: "   player.x);
            trace("PD y: "   playerDart.y);
            trace("Player y: "   player.y);

            // Set the new dart's direction to equal that of the player
            // Player's facing right
            if (player.scaleX == 1) {
                // So dart faces right, too
                playerDart.scaleX = 1;
            } 
            // Player's facing left
            else if (player.scaleX == -1) {
                // So dart faces left, too
                playerDart.scaleX = -1;
            }

            playerDartContainer.addChild(playerDart);

            trace("Num children: "   playerDartContainer.numChildren);
        }
    }
  

Что происходит, так это то, что дротики всегда добавляются на сцену в точке (350, 350) — точной точке, в которой находится игрок (относительно экрана, что составляет 700 * 700). Итак, я знаю, что проблема связана с координатами, которыми, по мнению программы, должны быть объекты Player и Dart. Я просто не знаю, как это исправить. Я рассмотрел метод ‘globalToLocal()’, но я не понимаю, как его использовать в этом случае.

Как мне создать дротик в правильном положении относительно игрока?

Я был бы признателен за любую помощь. Спасибо!

—————————————— РЕДАКТИРОВАТЬ И ОБНОВЛЯТЬ—————————

EDIT AND UPDATE: I got the darts to be created in the right place (near the player — see comments below) and a ‘movePlayerDarts()’ function moves them. But I actually have a new problem. When the player moves after firing a dart, the dart follows him! If the player jumps, the dart rises up. If the player moves to the left, the dart moves slightly to the left.

Obviously, there is some code somewhere which is telling the darts to follow the player. I do not see how, unless the ‘playerDartContainer’ has something to do with that. But the container is always at position (0,0) and it does not move.

Also, as a test I traced a dart’s ‘y’ coordinate within the constantly-running ‘movePlayerDarts()’ function. As you can see, that function constantly moves the dart down the y axis by increasing its y-coordinate value. But when I jump, the ‘y’ coordinate being traced is never reduced, even though the dart clearly looks like it’s rising!

If anybody has any suggestions, I’d appreciate them!

Here is the code I use to create the darts:

         // This function creates a dart
    public function createDart():void {

        if (playerDartContainer.numChildren <= 4) {
            // Play dart shooting sound
            sndDartShootIns.play();

            // Create a new 'PlayerDart' object
            playerDart = new PlayerDart();

            // Set the new dart's initial position and direction depending on the player's direction
            // Player's facing right
            if (player.scaleX == 1) {
                // Create dart in front of player's dart gun
                playerDart.x = player.x   12;
                playerDart.y = player.y - 85;
                // Dart faces right, too
                playerDart.scaleX = 1;
            } 
            // Player's facing left
            else if (player.scaleX == -1) {
                // Create dart in front of player's dart gun
                playerDart.x = player.x - 12;
                playerDart.y = player.y - 85;
                // Dart faces left, too
                playerDart.scaleX = -1;
            }
            playerDartContainer.addChild(playerDart);
        }
    } // End of 'createDart()' function
  

Этот код является обработчиком фрейма ввода для игрока в дартс:

         // In every frame, call 'movePlayerDarts()' to move the darts within the 'playerDartContainer'
    public function playerDartEnterFrameHandler(event:Event):void {
        // Only move the Player's darts if their container has at least one dart within
        if (playerDartContainer.numChildren > 0) {
            movePlayerDarts();
        }
    }                       
  

И, наконец, это код, который фактически перемещает все дротики игрока:

             // Move all of the Player's darts
    public function movePlayerDarts():void {
            for (var pdIns:int = 0; pdIns < playerDartContainer.numChildren; pdIns  ) {
                // Set the Player Dart 'instance' variable to equal the current PlayerDart
                playerDartIns = PlayerDart(playerDartContainer.getChildAt(pdIns));

                // Move the current dart in the direction it was shot. The dart's 'x-scale' 
                    // factor is multiplied by its speed (5) to move the dart in its correct
                    // direction. If the 'x-scale' factor is -1, the dart is pointing left (as
                    // seen in the 'createDart()' function. (-1 * 5 = -5), so the dart will go
                    // to left at a rate of 5. The opposite is true for the right-ward facing
                    // darts
                playerDartIns.x  = playerDartIns.scaleX * 1;

                // Make gravity work on the dart
                playerDartIns.y  = 0.7;
                //playerDartIns.y  = 1;

                // What if the dart hits the ground?
                if (HitTest.intersects(playerDartIns, floor, this)) {
                    playerDartContainer.removeChild(playerDartIns);
                }

                //trace("Dart x: "   playerDartIns.x);
                trace("Dart y: "   playerDartIns.y);
            }
    }
  

Ответ №1:

playerDartContainer должен быть создан на том же уровне, что и ваш экземпляр player. Если он не обновляет свое положение относительно игрока, то созданные и добавленные к нему дротики будут отображаться везде, где они есть.

Первое решение — установить положение playerDartContainer таким, чтобы оно было playerDartContainer.x = player.x и playerDartContainer.y = player.y везде, где вы обновляете свою позицию игрока. Измените создание ваших дротиков, чтобы они отображались на 0,0.

Второе решение состоит в том, чтобы установить позицию равной 0,0 (которая всегда находится в верхнем левом углу вашего экрана), а игровые карты смещены так, чтобы они совпадали с позицией игрока внутри контейнера Playerdart. Поскольку ваш игрок никогда по-настоящему не двигается, то и playerDartContainer не должен этого делать, и поэтому ваши дротики будут появляться в том же относительном пространстве, что и игрок.

Комментарии:

1. Спасибо, Доминик. Однако у меня все еще возникают проблемы. Я помещаю следующий код в функцию scrollScreen(), которая центрирует игрока на экране: playerDartContainer.x = player.x; playerDartContainer.y = player.y; А затем в функции ‘createDart()’ я попытался расположить дротик как в координатах (0,0), так и в координатах ‘playerDartContainer’. Но дротики по-прежнему не появляются перед игроком; их координаты относятся к сцене, а не к контейнеру или игроку.

2. Привет, Кристиан. Попробуйте установить для playerDartContainer.x и y значения (0,0). Затем установите дротики в координатах player.x. Если вы установите его в координаты playerDartContainer (в которых он находится и устанавливается равным позиции player.x), это будет то же самое, что установить его в координаты игрока. Так что это избыточно, а также неясно. Проследите позиции контейнера Playerdart. Вы также могли бы, если ни то, ни другое не работает, попробовать установить для дротика значение stage.x * 0.5 и stage. y * 0.5.

3. Привет, Доминик. Хорошо, у меня получилось! 😀 Какое-то время это не работало, но потом я вспомнил, что добавил ‘playerDartContainer’ в ‘envContainer’, который хранит все и прокручивается с помощью ‘scrollScreen().’ Так что в конце концов я установил playerDartContainer.x = 0; и playerDartContainer.y = 0; создал новые дротики рядом с координатами игрока playerDart.x = player.x 12 и удалил ‘playerDartContainer’ из ‘envContainer.’ Большое спасибо за твою помощь, Доминик!

4. Зажигай! Да, убедитесь, что все ваши экземпляры «контейнера» находятся где-то относительно этой стадии другие движущиеся экземпляры.