search
HomeBackend DevelopmentPHP TutorialGame Development Series 1 Enemies in the Game 1_PHP Tutorial

Game Development Series 1: Enemies in the Game (1)
http://www.flashempire.com/school/tutorview.php?id=530
For the current Flash, develop some decent ones The game isn't that weird anymore. The content I cover here is related to game development, but it is all relatively basic knowledge. If you are an expert in game development, you can completely ignore what I describe here. My plan is to do a series of tutorials, and this is one of them.
The game is an interactive work. To put it simply, the user’s behavior will have a certain impact on the progress of the work. When it comes to games, difficulty is always mentioned. The difficulty of the game is: when you want to achieve a certain goal, you will find that it is somewhat difficult to achieve. The harder the difficulty is to overcome, the greater the difficulty. Different types of games have different levels of difficulty, as well as different methods of implementation. For example: Tetris changes the difficulty of the game by changing the speed of the falling blocks, and air combat shooting games achieve different difficulties through different enemy aircraft and different bosses.
In this series, we would like to study with you the movement of enemies in the game, bit by bit. It is best to have some basic knowledge of AS, otherwise you will have a little headache.
1. The most direct tracking
First look at this example:
Assume that the red circle is the player and the green circle is the enemy. Move your mouse and the enemy will follow you.
This is the simplest tracking of enemies. Its principle is: if (player x coordinate enemy x coordinate) { adjust enemy x coordinate to approach player x coordinate} if (player y coordinate enemy y coordinates) {Adjust the enemy's y coordinate to approach the player's y coordinate}
This should be extremely easy to understand. So what should the specific code implementation look like?
We first place two different MovieClips on the stage, one instance is called player, and the other is called enemy.
For convenience, we only use the mouse to move the player, so the code is very simple: player._x = _xmouse-10;player._y = _ymouse-10;updateAfterEvent();
The player can move , let’s solve the problem of coordinate adjustment. Game Development Series 1 Enemies in the Game 1_PHP Tutorial


Looking at the picture above, no matter where the player and the enemy are, as long as they do not overlap, there is always a certain distance between the two characters. We use dx and dy to represent the difference between the x direction and the y direction. According to dx and dy, based on the concept of the enemy being close to the player, we can derive the direction in which the enemy should move.
The enemy should have a certain speed and approach the player based on this speed. So we can first define a variable to represent the enemy's speed: enemySpeed.
Based on the analysis, we can derive the following calculation formula: dx = player._x-enemy._x; dy = player._y-enemy._y; if (Math.abs(dx)>=enemySpeed) { enemy. _x += ((dx>=0) ? enemySpeed ​​: -enemySpeed); } if (Math.abs(dy)>=enemySpeed) { enemy._y += ((dy>=0) ? enemySpeed ​​: -enemySpeed); }
It is observed that we use Math.abs(dx)>=enemySpeed ​​to limit the enemy's movement. In fact, it does not need to be limited, but when the enemy's speed is relatively high, jitter will occur. Because in this case, the difference between the enemy's coordinates and the player's coordinates is small, the enemy may continue to swing during the approach. You can try it with the restrictions removed.
For those who are not familiar with AS, let me explain this sentence: enemy._x += ((dx>=0) ? enemySpeed: -enemySpeed), which is actually equivalent to the following sentence: if (dx >= 0 ){ enemy._x = enemy._x + enemySpeed; } else { enemy._x = enemy._x - enemySpeed; }
This is used to determine the enemy’s movement direction, which is determined based on the positive and negative conditions of dx dy Which direction to move.
Okay, so far, I think everything has been explained clearly. Here is the complete source code of the first frame: var enemySpeed:Number = 2;var dx, dy:Number;/* functions */tracker = function ( ) { player._x = _xmouse-10; player._y = _ymouse-10; dx = player._x-enemy._x; dy = player._y-enemy._y; if (Math.abs(dx)>=enemySpeed) { enemy._x += ((dx>=0) ? enemySpeed ​​: -enemySpeed); } if (Math.abs(dy)>=enemySpeed) { enemy._y += ((dy>=0) ? enemySpeed ​​: - enemySpeed); } updateAfterEvent();};/* run it*/setInterval(tracker, 10);
For AS newbies: The program first defines variables to determine the enemy’s movement speed. This can be changed. Function The tracker is mainly used to handle player movement and enemy movement. updateAfterEvent is set to ensure smoothness, and it is fine without it.
If the tracker function is not triggered, the program will not run. Therefore, we use setInterval to trigger the tracker function every 10 milliseconds. In this way, the program will run normally.
That’s it for this introduction. It’s very simple, isn’t it? Next time we will add some small functions to the current enemy, or limit it.
Please download the source code here.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/531979.htmlTechArticleGame Development Series 1: Enemies in the Game (1) http://www.flashempire.com/school/ tutorview.php?id=530 For the current Flash, it is not surprising to develop some decent games...
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
Steam 未检测到 Windows 11/10 中已安装的游戏,如何修复Steam 未检测到 Windows 11/10 中已安装的游戏,如何修复Jun 27, 2023 pm 11:47 PM

Steam客户端无法识别您计算机上的任何游戏吗?当您从计算机上卸载Steam客户端时,会发生这种情况。但是,当您重新安装Steam应用程序时,它会自动识别已安装文件夹中的游戏。但是,别担心。不,您不必重新下载计算机上的所有游戏。有一些基本和一些高级解决方案可用。修复1–尝试在同一位置安装游戏这是解决这个问题的最简单方法。只需打开Steam应用程序并尝试在同一位置安装游戏即可。步骤1–在您的系统上打开Steam客户端。步骤2–直接进入“库”以查找您拥有的所有游戏。第3步–选择游戏。它将列在“未分类

欢乐追逃游戏即将开始!亚瑟和安琪拉520限定皮肤震撼登场!欢乐追逃游戏即将开始!亚瑟和安琪拉520限定皮肤震撼登场!May 19, 2023 pm 08:23 PM

5月18日消息,为了庆祝即将到来的520节日,《王者荣耀》推出了令人期待的活动和全新限定皮肤。这次的活动将带来一场名为"追逃游戏"的欢乐庆典,而亚瑟和安琪拉将成为主角,以传说品质的520限定皮肤惊艳登场。据ITBEAR科技资讯了解,亚瑟和安琪拉是《王者荣耀》中备受喜爱的英雄角色,他们以各自独特的魅力和技能征服了众多玩家。而这次的520限定皮肤让他们焕发出全新的魅力,给玩家们带来不一样的游戏体验。安琪拉520限定皮肤以马戏团为主题,她身穿充满节日氛围的撞色裙子,伴随着皮皮精灵的

电脑游戏下载到d盘还是c盘电脑游戏下载到d盘还是c盘Mar 16, 2023 pm 03:02 PM

电脑游戏下载到d盘。C盘是系统盘,是专门为安装系统而设置的磁盘空间,里面安装的东西越少越好;C盘安装的东西多,电脑就会很卡。C盘系统运行会产生很多缓存与磁盘碎片,这些都会影响系统的运行及速度;如果再安装游戏或者软件,会更加加速缓存与碎片产生的数量与速度。

用Python写游戏脚本原来这么简单用Python写游戏脚本原来这么简单Apr 13, 2023 am 10:04 AM

前言最近在玩儿公主连结,之前也玩儿过阴阳师这样的游戏,这样的游戏都会有个初始号这样的东西,或者说是可以肝的东西。当然,作为一名程序员,肝这种东西完全可以用写代码的方式帮我们自动完成。游戏脚本其实并不高深,最简单的体验方法就是下载一个Airtest了,直接截几个图片,写几层代码,就可以按照自己的逻辑玩儿游戏了。当然,本篇文章不是要讲Airtest这个怎么用,而是用原始的python+opencv来实现上面的操作。这两天我写了一个公主连结刷初始号的程序,也不能算写游戏脚本的老手,这篇文章主要是分享一

Win11玩游戏卡顿怎么解决Win11玩游戏卡顿怎么解决Jun 29, 2023 pm 01:20 PM

  Win11玩游戏卡顿怎么解决?近期有用户给自己的电脑升级了Win11系统,但是在后续在使用电脑玩游戏时,游戏却出现了卡顿掉帧的情况,这是这怎么回事呢?出现这一情况的原因有很多,下面小编为大家带来了几种方法解决,我们一起来看看吧。  Win11玩游戏卡顿掉帧的解决方法  一、散热  1、有些设备在温度过高时,会通过降频的方法来降低温度。  2、这时候可以先打开系统设置,在左上角搜索电源,点击显示所有结果。  3、然后在下拉列表中打开选择电源计划。  4、再勾选开启高性能模式即可。  5、如果高

win7玩游戏怎么优化可以让游戏更加流畅win7玩游戏怎么优化可以让游戏更加流畅Jul 02, 2023 pm 01:53 PM

  win7玩游戏怎么优化可以让游戏更加流畅?如果你喜欢使用电脑来玩一些比较大型的游戏,那么就可以对你的电脑进行系统的优化。优化之后可以更好的发挥出电脑硬件的性能,获得更高的流畅性,玩游戏时获得更好的游戏体验。win7玩游戏优化可以让游戏更加流畅方法  1、在桌面上找到计算机,右键选中它并点击属性。  2、在系统属性面板中找到高级系统设置。  3、找到性能设置。  4、勾选让windows选择计算机的数值设置。以上就是【win7玩游戏怎么优化可以让游戏更加流畅-win7玩游戏优化可以让游戏更加流

Win7游戏帧数优化方法Win7游戏帧数优化方法Jul 15, 2023 am 08:05 AM

针对游戏游戏玩家来讲,游戏的帧率针对游戏的流畅性、可操作性感受全是十分核心的。客户不仅仅可以根据更新配备来提升游戏帧数,变更显卡设置还可以保证相同的实际效果。下边咱们就一起来看看详细的方式吧。游戏帧数优化技术:1、鼠标右键桌面上空白,开启“NVIDIA操作面板”。2、挑选“配备Surround、PhysX”。3、启用图例部位,随后将下边滚轮拉到特性部位。4、还能够点一下“管理方法3D设定”5、将垂直同步关掉,如下图所示。6、再将三重缓冲关掉。7、通过以上的提升,大家就可以在玩游戏时得到更高的帧率

golang能不能做游戏golang能不能做游戏Jul 10, 2023 pm 01:15 PM

golang能做游戏,但是不适合做游戏。golang适合处理日志、数据打包、虚拟机处理、文件系统、分布式系统、数据库代理等;网络编程方面,golang广泛应用于Web应用、API应用、下载应用等。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),