设为首页收藏本站同能贴吧 切换语言 繁体中文
开启辅助访问 切换到窄版
扫描二维码关注官方公众号
返回列表
+ 发新帖
查看: 83|回复: 0

[转载发布] Plugin to enable creating arbitrary trigger zones

[复制链接]
累计送礼:
0 个
累计收礼:
1 个
  • TA的每日心情
    开心
    2026-7-12 04:10
  • 签到天数: 209 天

    连续签到: 2 天

    [LV.7]常住居民III

    9015

    主题

    864

    回帖

    6万

    积分

    管理员

    Rank: 9Rank: 9Rank: 9

    VIP
    7
    卡币
    58751
    OK点
    16
    推广点
    0
    同能卷
    50
    积分
    68660

    灌水之王

    发表于 2026-7-22 11:20:58 | 显示全部楼层 |阅读模式
    I've created a plugin, which is compatible with both MV and MZ, that enables you to create trigger zones using a single event rather than having to duplicate a bunch of events in order to achieve the same effect, this is useful for things like map transfers, interact-able counters, and cutscene triggers.

    I've implemented it using the Event's note field to smuggle JSON into the plugin to be parsed with a very simple structure:
                    JSON:       
    1. {
    2.     "extentX": 2,
    3.     "extentY": 2,
    4.     "triggerOnce":true
    5. }
    复制代码


    The extents are defined in tiles defining a rectangle that radiates out from the event's position (the event is the center), the way the trigger's area is calculated favors growing up-left first, so a 2x2 event will end with the event being in the bottom-right, while a 4x4 will have the event in the center, this allows you to create trigger volumes in a very predictable way that is easy to calculate, simply count the tiles to either side of the event you wish to use as the center.

    I've released the code under the MIT license so you are free to use it how you wish, even commercially, just make sure to attribute me in some fashion

                    JavaScript:       
    1. /*:
    2. * @target MZ
    3. * @target MV
    4. * @plugindesc Allows events to be defined as a rectangle with extents relative to the event's tile position
    5. * @author Phillip "Antidote" Stephens
    6. *
    7. * @license MIT
    8. * @help AntiTriggerRectEvent.js
    9. *
    10. * This plugin enables the ability to create an arbitrary rectangle from an event's position
    11. * the extents are defined as the total number of tiles surrounding the event.
    12. *
    13. * To define a rectangle simply add this following JSON struct with the extentX/extentY values changed for the desired
    14. * rectangle to the event's notes field
    15. *
    16. * {"extentX":desired_width_in_tiles,"extentY":desired_height_in_tiles,"triggerOnce":desired_behavior}
    17. *
    18. * The following is a working example that defines a 2x2 tile strip starting from the event's x/y position,
    19. * it also only triggers once meaning the event will activate only once
    20. * {"extentX":2,"extentY":2,"triggerOnce":true}
    21. *
    22. * When calculating the rect we favor the building the rect upwards and leftwards,
    23. * so it'll add a tile up then down, and left then right.
    24. *
    25. * As a visual aide this is what the above rectangle would look like:
    26. *
    27. * +----+----+
    28. * |  1 |  2 |
    29. * +----+----+
    30. * |  3 | EV |
    31. * +----+----+
    32. *
    33. */
    34. (() => {
    35. `use strict`;
    36.     const _Game_Event_initialize = Game_Event.prototype.initialize;
    37.     Game_Event.prototype.initialize = function(mapId, eventId) {
    38. _Game_Event_initialize.call(this, mapId, eventId);
    39.         this._triggerExtentY = 0;
    40.         this._triggerExtentY = 0;
    41.         this._triggered = false;
    42.         this._triggerOnce = false;
    43.         const note = $dataMap.events[eventId].note;
    44.         if (note !== "") {
    45. let rect = JSON.parse($dataMap.events[this._eventId].note) || null;
    46.             this._triggerExtentX = rect.extentX || 0;
    47.             this._triggerExtentY = rect.extentY || 0;
    48.             this._triggerOnce = rect.triggerOnce || false;
    49.         }
    50.     }
    51. Game_Event.prototype.pos = function(x, y) {
    52. if (this._triggerExtentX === 0 || this._triggerExtentY === 0) {
    53. return Game_CharacterBase.prototype.pos.call(this, x, y);
    54.         }
    55. /**
    56.          * When calculating the rect we favor the building the rect upwards and leftwards,
    57.          * so it'll add a tile up then down, and left then right
    58.          */
    59.         const halfExtentX1 = Math.max(0, Math.ceil((this.triggerExtentX() / 2) - .5));
    60.         const halfExtentY1 = Math.max(0, Math.ceil((this.triggerExtentY() / 2) - .5));
    61.         const halfExtentX2 = Math.max(0, Math.floor((this.triggerExtentX() / 2) - .5));
    62.         const halfExtentY2 = Math.max(0, Math.floor((this.triggerExtentY() / 2) - .5));
    63.         const startX = Math.max(0, this._x - halfExtentX1);
    64.         const startY = Math.max(0, this._y - halfExtentY1);
    65.         const endX = Math.min($gameMap.width() - 1, this._x + halfExtentX2);
    66.         const endY = Math.min($gameMap.height() - 1, this._y + halfExtentY2);
    67.         //console.log("Trigger Rect startX %i, startY %i, endX %i, endY %i, halfX1 %i, halfY1 %i, halfX2 %i, halfY2 %i", startX, startY, endX, endY, halfExtentX1, halfExtentY1, halfExtentX2, halfExtentY2);
    68.         if (this._triggered && this._triggerOnce) {
    69. return false;
    70.         }
    71. return (x >= startX && y >= startY && x <= endX && y <= endY);
    72.     }
    73. const _Game_Event_start = Game_Event.prototype.start;
    74.     Game_Event.prototype.start = function() {
    75. _Game_Event_start.call(this);
    76.         if (this.isTriggerIn([0, 1, 2])) {
    77. this._triggered = true;
    78.         }
    79.     }
    80. Game_Event.prototype.triggerExtentX = function() {
    81. return this._triggerExtentX;
    82.     }
    83. Game_Event.prototype.triggerExtentY = function() {
    84. return this._triggerExtentY;
    85.     }
    86. })();
    复制代码

    Linux Demo
    Windows Demo


    本贴来自国际rpgmaker官方论坛作者:Antidote174处,因国际论坛即将永久关站,为了存档多年珍贵资料,署名转载到本论坛存档,由于官方帖子为英文原帖,需要中文翻译请点击论坛顶部切换语言为中文就可以将帖子翻译成中文浏览,方便大家随时查看,原文地址:https://forums.rpgmakerweb.com/threads/plugin-to-enable-creating-arbitrary-trigger-zones.173783/
    天天去同能,天天有童年!
    回复 送礼论坛版权

    使用道具 举报

    文明发言,和谐互动
    文明发言,和谐互动
    高级模式
    您需要登录后才可以回帖 登录 | 立即注册

    本版积分规则

    简体中文
    繁體中文
    English(英语)
    日本語(日语)
    Deutsch(德语)
    Русский язык(俄语)
    بالعربية(阿拉伯语)
    Türkçe(土耳其语)
    Português(葡萄牙语)
    ภาษาไทย(泰国语)
    한어(朝鲜语/韩语)
    Français(法语)
    关闭

    幸运抽奖

    社区每日抽奖来袭,快来试试你是欧皇还是非酋~

    立即查看

    聊天机器人
    Loading...

    QQ|Archiver|手机版|小黑屋|同能RPG制作大师 ( 沪ICP备12027754号-3 )

    GMT+8, 2026-8-4 20:29 , Processed in 0.066328 second(s), 55 queries .

    Powered by Discuz! X3.4

    Copyright © 2001-2020, Tencent Cloud.

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