Home  >  Article  >  Web Front-end  >  Advanced skills: clever use of elves

Advanced skills: clever use of elves

WBOY
WBOYOriginal
2023-08-31 21:41:05916browse

In all the Crafty tutorials so far, you have been using square or rectangular boxes to understand different concepts such as animation and keyboard or touch events. While this is a great way to quickly learn more about the library, you'll most likely prefer to use the images in your actual game.

In this tutorial you will learn how to load a sprite sheet to use different images in your game. Afterwards, you'll learn how to animate different characters using sprite animation.

Load sprite sheet

For those unfamiliar with sprite sheets, they are image files containing multiple smaller shapes arranged in a grid. Each of these smaller shapes or sprites can be used alone or with other images to animate different objects.

You cannot directly load a sprite sheet in Crafty and start using it. You also have to tell it the width and height of the different tiles or sprites in the sprite sheet. You can also give individual images specific names. For example, a sprite with a small stone could be named "small_stone" for easy reference. It's much easier to remember the tile names than the actual coordinates of the different images.

We will be using the following spritesheets provided by tokka in different demos of this tutorial.

Advanced skills: clever use of elves

It has many images that can be used while the player is walking, jumping, idle or being shot. In this example, most tiles have a width and height of 80 px and 94 px respectively. Some sprite sheets may also have extra padding around individual tiles or the entire sprite sheet. These can be specified using the paddingX, paddingY and paddingAroundBorder properties when loading the sprite sheet.

This is the code we need to load the above sprite sheet in the game:

var game_assets = {
  "sprites": {
    "hero_spritesheet.png": {
      tile: 80,
      tileh: 94,
      map: {
        hero_idle: [0, 0],
        hero_walking: [1, 1],
        hero_jumping: [2, 3],
        hero_sitting: [0, 4]
      }
    }
  }
};

Crafty.load(game_assets);

Use a pair of numbers to reference the tile. The first number determines the sprite's column, and the second number determines its row. These numbers are based on zero. For example, you can use [0, 0] to access the sprite in the first column and first row. Similarly, the sprites in the third column and fourth row can be accessed using [2, 3]. As mentioned before, you can give individual sprites different names for ease of use.

Rendering static sprites

After loading the sprite sheet, you can use the following code to render the image on the screen:

var idle_hero = Crafty.e("2D, Canvas, hero_idle")
  .attr({ x: 10, y: 10 });
The

x and y properties determine the sprite's rendering position. You can also set the width and height of individual sprites using the w and h properties.

Because sprites have 2D components, you can apply all the properties and properties of the 2D components to these images. For example, you can use this.flip("X") to flip our hero horizontally so that it faces another direction. Likewise, you can rotate the sprite using the rotation property, or make it transparent using the alpha property.

var sitting_hero = Crafty.e("2D, Canvas, hero_sitting")
  .attr({ x: 440, y: 250 })
  .flip("X");

Suppose you only need to render part of a given sprite on the canvas. You can do this with the help of the .crop(Number x, Number y, Number w, Number h) method. The first two parameters determine the sprite's x and y offsets. The last two parameters determine the width and height of the clipping sprite. All values ​​should be specified in pixels.

Animation Elf

So far, you have moved different entities by changing the x and y properties. This isn't a problem since most of the time you're just moving the rectangular box. However, moving our protagonist by swiping like this would look very unnatural. Adding animations to objects like coins that players can collect will also make the game more interesting.

All sprite-related animations require you to add the SpriteAnimation component to the entity. This component treats different images in the sprite as animation frames.

Information about the animation is stored in the reel object. The scroll object has five different properties:

  • a id, which is the name of the scroll
  • A frames array containing a list of animation frames in the format [xpos, ypos]
  • A currentFrame attribute, returns the index of the current frame
  • easing Property that determines how the animation should advance
  • duration Property used to set animation duration (in milliseconds)

Elf animation can trigger four different events. these are:

  • StartAnimation:当动画开始播放或从暂停状态恢复时触发此事件。
  • AnimationEnd:动画结束时触发此事件。

  • FrameChange:每次当前卷中的帧发生变化时都会触发此事件。

  • ReelChange:当卷轴本身发生变化时会触发此事件。

所有这些事件都接收 reel 对象作为参数。

除了 reel 对象之外,还有一个 .reel() 方法,用于定义精灵动画。您可以使用 .animate() 方法来播放任何定义的动画。

精灵动画的过程从在画布上创建静态精灵开始。

var walking_hero = Crafty.e('2D, Canvas, hero_walking, SpriteAnimation')
  .attr({
    x: 40,
    y: 20
  });

上例中的 hero_walking 图像是用户在动画之前看到的第一张图像。这些属性用于指定当前实体的位置。创建实体后,您可以使用 .reel() 方法来定义实际的动画。

walking_hero.reel("walking", 1000, [
  [0, 1],
  [1, 1],
  [2, 1],
  [3, 1],
  [4, 1],
  [5, 1]
]);

此方法接受三个参数。第一个参数是正在创建的动画的 Id。第二个参数用于设置动画的长度(以毫秒为单位),第三个参数是包含连续帧的列(x)和行(y)位置的数组。在本例中,该数组包含第二行中所有精灵的位置。

此方法的另一个版本需要五个参数。前两个参数是卷轴 Id 和动画长度。第三个和第四个参数用于设置精灵图上动画的起始 x 和 y 位置。最后一个参数设置动画中连续帧的数量。当设置为负值时,动画将向后播放。

上面的卷轴动画也可以使用以下代码创建:

walking_hero.reel("walking", 1000, 0, 1, 6);

虽然这个版本很简洁,但有一点限制。仅当您想要包含在动画中的所有精灵都位于一行中时,此方法才有用。此外,动画将按照这些图像在精灵表中出现的顺序显示这些图像。

定义动画后,您可以使用 .animate(reel_Id[,loopCount]) 方法来播放它。第一个参数是你要播放的动画,第二个参数决定你要播放这个动画的次数。动画默认播放一次。将 loopCount 设置为 -1 将无限期地播放动画。

在某些情况下,您可能希望根据事件仅播放一次动画。例如,当用户按下按钮使玩家跳跃时,应该播放跳跃动画。您可以在上面的演示中尝试一下。按向上箭头键将使第二个精灵跳跃。这是检测按键的代码:

jumping_hero.bind('KeyDown', function(evt) {
  if (evt.key == Crafty.keys.UP_ARROW) {
    jumping_hero.animate("jumping", 1);
  }
});

您还可以使用 .pauseAnimation().resumeAnimation() 方法中途暂停和恢复动画。

如果单个精灵附加了多个动画,您可以使用 .isPlaying([String reelId]) 方法确定当前是否正在播放特定动画。如果没有提供 Id ,它将检查是否有动画正在播放。

结论

完成本教程后,您应该能够在 Crafty 中加载您自己的精灵表,并使用它们来表示不同的游戏实体而不是各种矩形。您现在还可以根据不同的事件将不同的动画应用于实体。我应该提醒您,我在本教程中使用了 Crafty 版本 0.7.1,并且演示可能无法与该库的其他版本一起使用。

JavaScript 已成为事实上的网络工作语言之一。它并非没有学习曲线,而且还有大量的框架和库可以让您忙碌起来。如果您正在寻找其他资源来学习或在工作中使用,请查看我们在 Envato 市场中提供的资源。

在下一个教程中,您将学习如何在游戏中添加声音。

The above is the detailed content of Advanced skills: clever use of elves. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn