Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Common Event Self Switches VX
#1
Common Event Self Switches VX
Version: 1

Introduction
This script is a similar to that of the built in feature: Self Switches. For those not familiar with Self Switches, Self Switches pretty much pertain to a specific event. Example: Treasure Chests.

Common Event Self Switches allows developers to set certain switches pertaining to a certain Common Event.

Features
  • Set Common Event's self switches via call script.
  • Get Common Event's self switches via call script.

Screenshots
No screencaps.

Demo
No demo.

Script
Code:
=begin
????????????????????????????????????????????????????????????????????????????????
? Common Event Self Switches VX                                                ?
? Version 1.0                                                                  ?
? by PK8                                                                       ?
? 9/16/09                                                                      ?
? http://rmvxp.com                                                             ?
????????????????????????????????????????????????????????????????????????????????
? ? Table of Contents                                                          ?
? ?? Author's Notes                - Line 18?21                                ?
? ?? Introduction & Description    - Line 23?29                                ?
? ?? Features                      - Line 31?33                                ?
? ?? How to Use                    - Line 35?57                                ?
? ?? This aliases the following... - Line 59,60                                ?
? ?? Thanks                        - Line 62?66                                ?
? ?? Changelog                     - Line 68,69                                ?
????????????????????????????????????????????????????????????????????????????????
? ? Author's Notes                                                             ?
? Lowell/Adalwulf mentioned creating a "Personal Variables" system which filled?
? my head in with ideas about variables and switches. One of these ideas being ?
? giving COMMON EVENTS their own self switches.                                ?
????????????????????????????????????????????????????????????????????????????????
? ? Introduction & Description                                                 ?
? This script is a similar to that of the built in feature: Self Switches.     ?
? For those not familiar with Self Switches, Self Switches pretty much pertain ?
? to a specific event. Example: Treasure Chests.                               ?
?                                                                              ?
? Common Event Self Switches allows developers to set certain switches         ?
? pertaining to a certain Common Event.                                        ?
????????????????????????????????????????????????????????????????????????????????
? ? Features                                                                   ?
? ? Set Common Event's self switches via call script. (How to use is below)    ?
? ? Get Common Event's self switches via call script. (How to use is below)    ?
????????????????????????????????????????????????????????????????????????????????
? ? How to Use                                                                 ?
?                                                                              ?
? ? Setting up a Common Event's self switch:                                   ?
?   To set a self switch for a common event, you'll need to call this script:  ?
?     ce_self_switch(ceid, id, bool)                                           ?
?       ceid: Common Event's ID                                                ?
?       id:   Common Event's Self Switch ID. Example: 'A', 'B'                 ?
?       bool: true or false.                                                   ?
?   Example: ce_self_switch(1, 'A', true) sets the first Common Event's switch ?
?            "A" to true.                                                      ?
?                                                                              ?
? ? Getting a Common Event's self switch:                                      ?
?   To get a self switch of a Common Event, you can call this script.          ?
?     ce_self_switch(ceid, id)                                                 ?
?       ceid: Common Event's ID                                                ?
?       id:   Common Event's Self Switch ID. Example: 'A', 'B'                 ?
?   Example: ce_self_switch(1, 'A') gets Common Event's switch "A".            ?
?                                                                              ?
? ? Using Common Event's self switches in evented if conditions.               ?
?   To do this, go to the conditional branch event command, click on the fourth?
?   tab, select Script and type either of these in the input form:             ?
?       ce_self_switch(ceid, id) == true                                       ?
?       ce_self_switch(ceid, id) == false                                      ?
????????????????????????????????????????????????????????????????????????????????
? ? This aliases the following...                                              ?
? initialize - Game_Map                                                        ?
????????????????????????????????????????????????????????????????????????????????
? ? Thanks                                                                     ?
? Lowell: He mentioned creating a personal variables system for his project    ?
?         which made me catch "the scripting bug".                             ?
? Kain Nobel: I'm using Kain Nobel's modifications to the Actor & Party's Self ?
?             switches script as a base.                                       ?
????????????????????????????????????????????????????????????????????????????????
? ? Changelog                                                                  ?
? Version 1.0 - 9/16/09: Initial Release                                       ?
????????????????????????????????????????????????????????????????????????????????
=end

#==============================================================================
# ** Game_Map
#------------------------------------------------------------------------------
#  This class handles maps. It includes scrolling and passage determination
# functions. The instance of this class is referenced by $game_map.
#==============================================================================

class Game_Map
  attr_accessor :ce_self_switches
  #--------------------------------------------------------------------------
  # * Alias Listings
  #--------------------------------------------------------------------------
  alias_method :ceselfswitches_gmmap_initialize, :initialize
  #--------------------------------------------------------------------------
  # * Object Initialization
  #--------------------------------------------------------------------------
  def initialize(*args)
    ceselfswitches_gmmap_initialize(*args)
    @ce_self_switches = Game_Map::CE_SelfSwitches.new
  end
end

#==============================================================================
# ** Game_Map::CE_SelfSwitches
#------------------------------------------------------------------------------
#  This handles switches. It's a wrapper for the built-in class "Array."
# The instance of this class is referenced by $game_map.ce_self_switches.
#==============================================================================

class Game_Map::CE_SelfSwitches
  #--------------------------------------------------------------------------
  # * Object Initialization
  #--------------------------------------------------------------------------
  def initialize
    @data = {}
  end
  #--------------------------------------------------------------------------
  # * Get Self Switch of Common Event
  #     key : key
  #--------------------------------------------------------------------------
  def [](key)
    return @data[key] == true ? true : false
  end
  #--------------------------------------------------------------------------
  # * Set Self Switch of Common Event
  #     key   : key
  #     value : ON (true) / OFF (false)
  #--------------------------------------------------------------------------
  def []=(key, value)
    @data[key] = value
  end
end

#==============================================================================
# ** Game_Interpreter
#------------------------------------------------------------------------------
#  An interpreter for executing event commands. This class is used within the
# Game_Map, Game_Troop, and Game_Event classes.
#==============================================================================

class Game_Interpreter
  #--------------------------------------------------------------------------
  # * Control Common Event Self Switch
  #--------------------------------------------------------------------------
  def ce_self_switch(ceid, id, bool = nil)
    if $data_common_events[ceid].id > 0 and $data_common_events[ceid] != nil
      key = [$data_common_events[ceid].id, id]
      if bool != nil
        $game_map.ce_self_switches[key] = bool
      else
        return $game_map.ce_self_switches[key]
      end
    end
    $game_map.need_refresh = true
    return true
  end
end

Instructions
Instructions on how to use it are in the script.

FAQ
Awaiting question.

Compatibility
Aliases initialize of Game_Map.

Credits and Thanks
Lowell: He mentioned creating a personal variables system for his project which made me catch "the scripting bug".
Kain Nobel: I'm using Kain Nobel's modifications to the Actor & Party's Self switches script as a base.

Author's Notes
Lowell/Adalwulf mentioned creating a "Personal Variables" system which filled my head in with ideas about variables and switches. One of these ideas being giving COMMON EVENTS their own self switches.

Terms and Conditions
Possibly exclusive to RMVXP.
Reply }


Possibly Related Threads…
Thread Author Replies Views Last Post
Thumbs Up  Level Up Common kyonides 2 603 03-22-2024, 09:14 AM
Last Post: kyonides
   Event Spawner Fixes DerVVulfman 8 16,085 01-02-2018, 05:48 AM
Last Post: DerVVulfman
   Event Location Saver 1.1 ixfuru 0 4,345 12-07-2016, 11:36 PM
Last Post: ixfuru
   SDK DVV Add-On: Event Comment Supplemental DerVVulfman 5 11,160 09-25-2016, 09:20 PM
Last Post: DerVVulfman
   Troop : Self-Switches Kain Nobel 0 4,189 06-03-2016, 09:40 AM
Last Post: Kain Nobel
   DoubleX RMMV Popularized ATB Event DoubleX 2 5,500 02-20-2016, 04:52 AM
Last Post: DoubleX
   Event Comment Conditionals ixfuru 3 6,405 08-05-2015, 02:31 AM
Last Post: JayRay
   ELSA (Event Layering Script Advance) JayRay 0 5,669 02-25-2015, 04:15 AM
Last Post: JayRay
   Permanent Event Erase DerVVulfman 2 5,828 04-09-2013, 03:53 AM
Last Post: DerVVulfman
   Event Transparency DerVVulfman 6 11,164 03-09-2013, 06:00 AM
Last Post: DerVVulfman



Users browsing this thread: