RMRK is retiring.
Registration is disabled. The site will remain online, but eventually become a read-only archive. More information.

RMRK.net has nothing to do with Blockchains, Cryptocurrency or NFTs. We have been around since the early 2000s, but there is a new group using the RMRK name that deals with those things. We have nothing to do with them.
NFTs are a scam, and if somebody is trying to persuade you to buy or invest in crypto/blockchain/NFT content, please turn them down and save your money. See this video for more information.
DoubleX RMMV Reverse Input

0 Members and 1 Guest are viewing this topic.

***
Scripter
Rep:
Level 36
Changelog
Code: [Select]
*      v1.00c(GMT 1200 30-1-2016):                                           
 *      1. Fixed reading meta from null equip bug                             
 *      2. Fixed only reading state notetags bug                             
 *      3. Changed from using klass to using prototypes                       
 *      v1.00b(GMT 1300 24-1-2016):                                           
 *      1. Fixed undefined lines in DataManager.loadReverseInputNotes bug     
 *      v1.00a(GMT 1300 30-12-2015):                                         
 *      1. 1st version of this plugin finished                               

Authors
DoubleX

Credits
DoubleX(Optional)

Purpose
Lets users set some actors reversing the assigned window inputs

Games using this script
None so far

Notetags
Code: [Select]
*    # Actor/Class/Equip/State Notetags:                                     
 *      State notetags take the highest priority, followed by weapon, armor, 
 *      class and actor                                                       
 *      1. <reverse input: proto, downUp, rightLeft, pagedownPageup, okCancel>
 *         - This notetag only works for windows assigned to 1 actor at a time
 *           The below prototypes in default RMMV setting meet the condition:
 *           Window_SkillType.prototype                                       
 *           Window_SkillList.prototype                                       
 *           Window_EquipSlot.prototype                                       
 *           Window_EquipItem.prototype                                       
 *           Window_Status.prototype                                         
 *           Window_ActorCommand.prototype                                   
 *         - This notetag will work for windows belonging to proto or having 
 *           proto in its prototype chain                                     
 *           Both the Window_ and .prototype part doesn't need to be included
 *           in proto                                                         
 *           For example: Status stands for Window_Status.prototype           
 *           proto only accepts prototypes starting with Window_             
 *         - The inputs corresponding to down and up selection commands will 
 *           be reversed if downUp is t                                       
 *         - The inputs corresponding to right and left selection commands   
 *           will be reversed if rightLeft is t                               
 *         - The inputs corresponding to pagedown and pageup selection       
 *           commands will be reversed if pagedownPageup is t                 
 *         - The inputs corresponding to ok and cancel selection commands will
 *           be reversed if okCancel is t                                     
 *         - Only the working notetag with the highest priority will be used 

Plugin Calls
Code: [Select]
*    # Actor/Class/Equip/State manipulations                                 
 *      1. meta.reverseInput                                                 
 *         - Returns the reverse input flags in the form of {                 
 *              proto: proto,                                               
 *               downUp: b,                                                   
 *               rightLeft: b,                                               
 *               pagedownPageup: b,                                           
 *               okCancel: b                                                 
 *           } with proto and b being the window prototype and booleans       
 *      2. meta.reverseInput = {                                             
 *              proto: proto,                                               
 *               downUp: b,                                                   
 *               rightLeft: b,                                               
 *               pagedownPageup: b,                                           
 *               okCancel: b                                                 
 *           }                                                               
 *         - Sets the reverse input flags in the form of {                   
 *              proto: proto,                                               
 *               downUp: b,                                                   
 *               rightLeft: b,                                               
 *               pagedownPageup: b,                                           
 *               okCancel: b                                                 
 *           } with proto and b being the window prototype and booleans       
 *         - All meta.reverseInput changes can be saved if                   
 *           DoubleX RMMV Dynamic Data is used                               

Prerequisites
Abilities:
1. Some Javascript coding proficiency to fully utilize this plugin

Terms Of Use
You shall keep this plugin's Plugin Info part's contents intact
You shalln't claim that this plugin's written by anyone other than DoubleX or his aliases
None of the above applies to DoubleX or his/her aliases
« Last Edit: January 30, 2016, 11:23:16 AM by DoubleX »

***
Scripter
Rep:
Level 36
Updates
Code: [Select]
*      v1.00c(GMT 1200 30-1-2016):                                           
 *      1. Fixed reading meta from null equip bug                             
 *      2. Fixed only reading state notetags bug                             
 *      3. Changed from using klass to using prototypes                       
 *      v1.00b(GMT 1300 24-1-2016):                                           
 *      1. Fixed undefined lines in DataManager.loadReverseInputNotes bug