设为首页收藏本站|繁體中文

Project1

 找回密码
 注册会员
搜索
查看: 1833|回复: 4
打印 上一主题 下一主题

[转载发布] [纯英文转载] Direction Based Line of Sight Events

[复制链接]

Lv4.逐梦者 (版主)

梦石
1
星屑
5791
在线时间
2649 小时
注册时间
2013-8-23
帖子
2315

开拓者

跳转到指定楼层
1
发表于 2017-7-17 01:05:26 | 只看该作者 |只看大图 回帖奖励 |倒序浏览 |阅读模式

加入我们,或者,欢迎回来。

您需要 登录 才可以下载或查看,没有帐号?注册会员

x
本帖最后由 鑫晴 于 2017-7-17 19:58 编辑

外站的一篇文章,大概的意思是教你怎么给事件制作“视野”的功能。
举个例子,pokemon中训练家的视野,看门保安的手电筒视野等。
或者像@流川枫 发布的《LE线形视野脚本 》那样。



作者提供的范例工程:https://pan.baidu.com/s/1pKKrapP



原文链接:Direction Based Line of Sight Events


Direction Based Line of Sight Events

Jul 23, 2012
Introduction

I made this mostly for touch encounter games to help add a little personality to the touch encounters. I also think that this can be utilized for puzzles and stealth missions in games.


This tutorial was made with the default scripts. There may be incompatibility with some scripts, particularly pixel movement scripts in which case you would have to completely rewrite theConditional Branch script calls using the syntax of those scripts. Another that comes to mind would be an 8 directional movement script in which case you may need to take the concepts presented here and expand them to include the additional directions.

You can download the project file here. I recommend you play through the test game to get a feel of the events before you read the tutorial.

Glossary of Terms used in Script Calls


*Note: I am not a scripter and have a limited understanding of RGSS3, so if I got any of the descriptions wrong, I will not be offended if you correct me in the comment section below.

$game_map.events[@event_id] - this is used to get information about the currently running event @event_id is the same as saying this event if you need a specific event on a map just use it's event id number which is displayed in the upper left hand corner when you edit the event.

$game_player - this used to get information about the player

(compared values).abs - is used to get the absolute value between them. Absolute values are always positive.
Some uses:


$game_map.events[@event_id].x - this gets the X coordinate value of the currently running event's position on the map

$game_map.events[@event_id].y - this gets the Y coordinate value of the currently running event's position on the map

$game_player.x - this gets the X coordinate value of the player's position on the map

$game_player.y - this gets the Y coordinate value of the player's position on the map

$game_map.events[@event_id].direction - this gets the value of which direction the currently running event is currently facing.

$game_player.direction - this gets the value of which direction the player is currently facing

Direction Key:

  • 2 is down
  • 8 is up
  • 4 is left
  • 6 is right
&& - when used between to conditions basically means "and". If there are multiple && used then all conditions must be met.

|| - when used, is basically a line break and can be said to be the same as "or". If this is used in a conditional branch script call that means any of the conditions will be enough to satisfy the conditional branch.
The X/ Y Coordinate Plane and Relative Values


In mathematics the X axis is horizontal and the Y axis is vertical and is generally written as (x,y). This is true in RPG Maker as well and you can see this in the bottom right hand corner of the map editor. In RPG Maker coordinate (0,0) is in the upper left hand corner which means as you go right from (0,0) the X value increases and as you go down from (0,0) the Y value increases.

A relative value compares two objects on a coordinate plane and finds the difference between them. This tutorial utilizes this and also uses script calls that use less than and greater than X and/ or Y comparisons to determine where an object is relative to a different object.



I'll use the above image to illustrate some examples:
  • the X value of the spider is less than the X value of Ralph
  • the X value of the scorpion is greater than the X value of Ralph
  • the Y value of the bat is less than the Y value of Ralph
  • the Y value of the hornet is greater than the Y value of Ralph
Part 1: Four Simple Line of Sight Examples


In the first three of these after the conditions are met (the event sees the player), the player is transferred from the room. I did this mostly for testing purposes and because once the player is in range the event will keep going off until the player is out of range, which you should keep in mind when using this. You can replace the Transfer Player and Show Text with whatever, like a Battle Processing command (an example of this is provided in Part 2).

Also all three of these events use a similar set of conditional branches as the one below to display the animation seen in game test mode.






Nothing special and can be erased if you don't want to give the player a visual cue. These are really simple animations I made with an image taken from one of the RTP animations (can't remember which one now), so if you want to use it go ahead.




In all three of these events there are two conditional branches used. The first conditional branch defines the range and the second conditional branch provides the limitations based on the direction the event is facing. The Script Calls for the Conditional Branches can't be seen of course so they are expanded and explained below, but the second conditional branch is the same for all three:



This script call checks which direction the event is facing and if the player is in the relative correct direction from the event, this condition is met. For example if the event is facing right (.direction == 6) and the player's x coordinate is greater than the event's (aka to the right of the event) this condition will be satisfied. If you use a less than/ greater than or equal to sign on the second part of each possible condition the range is changed.

Note that all of these are parallel process events. They are also just script calls, so no variables need to be changed. Remember these are pretty bare bones. You can add a lot of eventing to this to make puzzles rooms, stealth missions, more interesting touch encounters, etc.

1) Triangular Line of Sight Event





The First Conditional Branch's Script Call:



This script call compares the player's x coordinate and the event's x coordinate along with the player's y coordinate and the event's y coordinate on the map and then adds them together to determine how far the player is from the event. It is currently set to 1 which mean this conditional branch is satisfied when the player is within one square of the event. This is separated out so you can easily adjust the range of the event's line of sight.



If used without any other conditions this is what the event's line of sight will be depending on the value that you use. Kind of handy if you have an event that doesn't need to be facing a specific direction to see the player. If set to 2 the event can see all squares marked 1 and 2. If set to 3 the event can see all squares marked 1, 2, and 3.

The Second Conditional Branch Script Call:

With both conditions combined this is what the event's line of sight is (when facing right):




Notice I used a greater than sign and not a greater than or equal to sign if you do this is what the events line of sight ends up being:



This can be used if you want to give the event peripheral vision.
2) Basic Line of Sight Event





This event is similar to the previous one, but the first conditional branch is different.

The First Conditional Branch Script Call:



This script call evaluates whether one of two possible conditions is met:

  • by comparing the event's Y coordinate with the player's Y coordinate and if the absolute value between them is less then the defined range (in this example 3) and if the event's X coordinate is the same as the player's X coordinate
  • by comparing the event's X coordinate with the player's X coordinate and if the absolute value between them is less then the defined range and if the event's Y coordinate is the same as the player's Y coordinate
then the player is within range, here is how it looks:



The Second Conditional Branch Script Call:

Combined, this is what the range ends up looking like, when facing right:




When you use an or equal to sign then this is what the line of sight for facing right is:




3) Wide Line of Sight Event





The First Conditional Branch Script Call:



This is similar to the Basic LoS script call, but the second part of either condition has been changed from the X or Y having the same value to being within 1 which makes the LoS wider. Its not suggested that you make the second parts value higher than the first parts because this makes for some weird line of sight. This is what it looks like without the second conditional branch with its current settings:




The Second Conditional Branch Script Call:

Combined, this is what the range ends up looking like, when facing right:




When you use an or equal to sign then this is what the line of sight for facing right is:





4) Not Touching Event


.SpoilerTarget" style="margin-top: 5px; margin-bottom: 5px; padding-right: 1em; padding-left: 1em; font-family: Tahoma, Roboto, Arial, sans-serif; font-size: 12px; line-height: 2.5em; color: rgb(252, 252, 255); background-color: rgb(20, 20, 20); border-radius: 4px; box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px 0px; outline: none; cursor: pointer; height: 2.5em; max-width: 99%; border-width: initial !important; border-style: none !important; border-color: initial !important;">Spoiler

Just a basic recover party on touch, but with a Self Switch A command.




This script call checks to see if the player is touching the event and when the player isn't the Self Switch A is turned Off, returning it to the yellow magic circle graphic.
Part 2: Complicated Line of Sight Examples
These four examples combine the Simple Line of Sight Examples or use more complicated lines of sight with eventing to provide various effects. Its assumed that you read Part 1 because I won't be explaining concepts from that part again.
1) Chase/ Tag Event

This event varies from the others because it was made to move. This event could be used for kids playing tag with the player for example and other things. Let's look at the parts:




This uses the Wide Line of Sight script calls, and if the player is in range, the event will move towards the player after speeding up. If the player isn't in range the event will return to normal speed and go back to moving randomly. I did it this way so the player could run out of the event's range and the event would stop pursuing.



This utilizes the Triangular Line of Sight script calls with the Range script call set to 1. This is just like the earlier Triangular Line of Sight example.
2) Assassination Event





This is just the Basic Line of Sight example from Part 1.

The basic purpose of this section is to allow the player to hit the C Button (usually Enter, Space Bar, Z) and the player can attack from behind or from the side. I separated these out so you could do different things, but I was being lazy so they both do the same thing.
The first conditional branch is a simple button press conditional branch.
The second conditional branch uses the Triangular Line of Sight Range script call, but this time the Range is actually the player's range and not the event's.
The third conditional branch determines whether the player is behind the event, of course you can't see it:

When the event and the player are facing the same direction and are within one square of each other (because of the second conditional branch), then one is behind the other, which is why the third part of each condition checks that the player is behind the event.
The fourth conditional branch determines whether the player is to the side of the event, here it is:

When the player is facing the event and within one square, if the player is facing a perpendicular direction then this is satisfied.
Of course when all of this is satisfied the Self Switch A is turned on, which triggers page 2 of the event:

This page is all about the enemy dying visually on the screen.

First it shows an animation. I created the animation from the slash and darkness animations, so feel free to use this if you want to.
Then we have a series of conditional branches. These check which direction the player is facing so that the event has the appearance of being knocked back while the animation is playing.

This is just a move route that turns the image on and off to give the blinking effect on the screen. If you use a different animation you might extend or shorten this to go with the animation.

At the end it turns Self Switch B on and A off which brings up the 3rd page which is blank, so the event no longer matters. Turning Self Switch A off in this event makes it easier to turn the event back on with the transfer from the room event.

This is a standard transfer event with a script call added which can be used to turn the event back on as the player leaves the room. The example here is set for map id 1, event id 3, it effectsSelf Switch B, and the false turns the switch off.
Its handy particularly for puzzles/ touch encounters you want to reset when the player leaves the room or if you want, you can use this to create a reset switch in the room as another example.
3) Surprise Battle Event


This event uses line of sight with a particular emphasis on the direction the player and event are facing when the range condition is satisfied. It will show a different Balloon Icon on the player or event depending on whether the event and player are facing each other when the battle is initiated, one initiates the battle on the other from behind, or one initiates the battle from the other's side. The Wait command is used primarily to give the appearance that the player and event are closer together when the battle transition actually occurs, basically its a timing issue that I thought looked better, on screen, by adding a little wait.
This also differs from all the other examples in that it actually uses switches and variables and has components in the database (other than animations), such as Troops, Enemies, and Statestabs.
I'll start by explaining the conditional branches and show the relevant database tabs afterwards.
The Conditional Branches


The main conditional branch is just the triangular line of sight range script call that is the basis of this whole event page. Now the other two are checking whether the player is sneaking up behind the enemy or vice versa. I added comments to these in my event example to help keep things organized. When you have this many nested conditional branches I would highly recommend you do so.

This is a similar to the Assassination Event above, but if you'll notice the sign are reversed in the third part because this is checking if the event is sneaking up on the player. If this condition is met then the switch I used [0101: Surprised] is turned on and the Ballon Icon appears over the player.

This is exactly the same as the script call in the Assassination Event. If this condition is met then the switch I used [0102: Pre-emptive Strike] is turned on and the Ballon Icon appears over the event.

These conditional branches are checking whether the player initiates combat from the side of the event or vice versa.

This is similar to the Assassination Event's script call, but the signs in the third part are reversed because this is checking if the event initiates combat from the player's side and if the conditions are met the Ballon Icon appears over the player. Also if the conditions are met then a random number from 1 to 100 is assigned to Variable [0101: Random Number] and the immediately following conditional branch checks to see if the variable is below the value set (this example is 50). If it is then the Switch [0101: Surprised] is turned on.

This is just like the check in the Assassination Event, which is checking whether the player is initiating battle from the event's side and if the conditions are met the Ballon Icon appears over the event. Also if the conditions are met then a random number from 1 to 100 is assigned to Variable [0101: Random Number] and the immediately following conditional branch checks to see if the variable is below the value set. If it is then the Switch [0102: Pre-emptive Strike] is turned on.


This conditional branch is checking if the player and event are facing each other when battle is initiated. If so the Ballon Icon appears over the player, but you could have it appear over the event or both if you so desired.
All of these turn of Self Switch A which leads us to page 2 of the event.

This is just the Battle Processing and after the battle the event blinks in and out then shuts its self off similar to the Assassination Event.
The Database Changes

So with the conditional branches I turned on switches depending on how the player and event were oriented when battle was initiated. Here is why:

This troop page is triggered by Switch [0101: Surprised] being on. First, it adds the state Surprised (shown further down) to the entire party. Then, using Show Text displays the message "The party is surprised". Finally, it turns off the switch to clear it out.

Similar to the one above, this troop page is instead triggered by Switch [0102: Pre-emptive Strike] being on. First, it adds the state Surprised to the entire enemy troop. Then, using Show Textdisplays the message "The enemy is surprised". Finally, it turns off the switch to clear it out.
Note: You will have to add these to each of the troops that you want affected by this. This gives you a lot of flexibility if you want to utilize this to have different states or forced actions per troop. If you want this to happen with all your troops, I would suggest finding a Base Troop script. There are a lot of different versions, so find the one that suits you.

This is the state Surprised that I created. It has a Restriction of Cannot Move and adds some negative Features. It is set to go away at the end of turn in one to three turns. Of course you are welcome to make the Surprised state however you want.

Now if you played with the Test Game for a bit you may have noticed the Bat enemy is never surprised, that is because one of its Features is State Resist (Surprised). This is one of the advantages of using a state to add surprise because you can make enemies and actors resistant to the Surprise state, which can give you some extra flexibility.
4) Zapper Event


This event uses a the Basic Line of Sight with the Range set to 5. When the player is in range an animation will play to indicate that the player was damaged and the entire party takes a little damage. The damage is set low because the damage will occur each time the parallel process cycles through. The 2nd page is blank with a Condition: Self Switch A On and the crystal graphic. When this page is active the event is essentially off.

This event shows an animation, followed by a wait of 20 frames to give the animation to complete. Then it uses the script call described in the Transfer Event of the Assassin Event above to turn the Self Switch A of the Zapper Range event On, which turns the event off. Next it waits 45 frames to give the player a chance to get past unharmed. Finally it uses the script call again to turn theZapper Range event back on by changing it's Self Switch A Off again. The 2nd part is the same as the first with a different animation.
I hope you found the examples helpful. Feel free to ask any questions you may have.

I've gotten the question a few times so to clarify:  You can use this system/ script (whatever you consider it) in commercial and non-commercial games free of charge as long as you give me credit.  So enjoy.

Last edited by a moderator: Jul 20, 2014







[/fold]

Lv3.寻梦者

梦石
0
星屑
1304
在线时间
962 小时
注册时间
2012-4-30
帖子
1475

开拓者

2
发表于 2017-7-17 14:02:34 | 只看该作者
图片出不来。。看到位置关系没有图怎么行{:2_270:}

点评

OK了  发表于 2017-7-17 15:04
我把图片重新上传一下把  发表于 2017-7-17 14:19
咦,我这里看得到图片  发表于 2017-7-17 14:18

评分

参与人数 1星屑 +66 收起 理由
鑫晴 + 66 现在能看到吗?

查看全部评分

回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册会员

本版积分规则

拿上你的纸笔,建造一个属于你的梦想世界,加入吧。
 注册会员
找回密码

站长信箱:[email protected]|手机版|小黑屋|无图版|Project1游戏制作

GMT+8, 2024-4-20 08:28

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表