赞 | 0 |
VIP | 0 |
好人卡 | 0 |
积分 | 6 |
经验 | 0 |
最后登录 | 2019-3-1 |
在线时间 | 17 小时 |
Lv2.观梦者
- 梦石
- 0
- 星屑
- 559
- 在线时间
- 17 小时
- 注册时间
- 2009-8-21
- 帖子
- 3
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
本帖最后由 ljx281872191 于 2009-9-15 02:13 编辑
玩了这游戏觉得战斗画面效果不错, 就拿来用了- -
可是这脚本的普通攻击都是跳到敌人前面再打的,
如果是拿弓箭的话,那也跳敌人前面砍的话好像就不正常了,
我是脚本新新手,有没朋友帮忙修改下,谢谢了- =begin
- #--------------------------------------------------------------------------
- # ● 人物行走图做战斗图像(附加动画) ver1.02
- #--------------------------------------------------------------------------
- 制作者 らい
- 翻译:忧郁的涟漪
-
-
- 图像文件的规格
-
- ● 巴特勒图像(似乎指的是战斗图像)
-
- 使用步行图片。
-
- ● 武器的图像
-
- 就是武器图标的图像(ICO图)
-
- =end
-
- module Side_view
- #--------------------------------------------------------------------------
- # ● 是否与RATB并用 ☆自动识别(这到是不错~省了~)
- # 在Scene_Battle计算方法是否是方法synthe?
- # 在自动不想认识的时候,请重写。
- #--------------------------------------------------------------------------
- if Scene_Battle.method_defined?("synthe?")
- RTAB = false
- else
- RTAB = false
- end
- #--------------------------------------------------------------------------
- # ● 改正RATB中的位置误差 ☆自动识别
- # 在自动不想认识的时候,请重写。
- #--------------------------------------------------------------------------
- def camera_correctness
- return false if !RTAB
- begin
- return $scene.drive
- rescue
- return false
- end
- end
- #--------------------------------------------------------------------------
- # ● 队伍中的最大人数
- #--------------------------------------------------------------------------
- Party_max = 4
- #--------------------------------------------------------------------------
- # ● 战斗图的扩大率(1.0的时候是保持原有大小)
- #--------------------------------------------------------------------------
- CHAR_ZOOM = 1.0
- #--------------------------------------------------------------------------
- # ● 光标的位置修正(基本不需要改~)
- #--------------------------------------------------------------------------
- ARROW_OX = 0
- ARROW_OY = 64
- #--------------------------------------------------------------------------
- # ● 名状态作为飞行管理的排列(不知道什么意思....)
- #--------------------------------------------------------------------------
- FLY_STATES = ["飞行"]
- #--------------------------------------------------------------------------
- # ● 战斗画面的位置
- #--------------------------------------------------------------------------
- PARTY_X = 420 # 队伍 X 位置
- PARTY_Y = 230 # 队伍 Y 位置120
- FORMATION_X = 30 # 各个角色之间的间隔 X
- FORMATION_Y = 30 # 各个角色之间的间隔 Y48
- #--------------------------------------------------------------------------
- # ● 自定义常数
- #--------------------------------------------------------------------------
- NORMAL = "NORMAL"
- WALK_R = "WALK_R"
- WALK_L = "WALK_L"
- ATTACK = "ATTACK"
- ATTACK_R = "ATTACK_R"
- ATTACK_L = "ATTACK_L"
- MAGIC = "MAGIC"
- ITEM = "ITEM"
- # 动画的设定
- ANIME = {
- # [画像ID,是否循环,アニメスピード,动画速度,不能指向动画,武器放在右手or左手]
- NORMAL => [1,true , 0,false, true ,"" ], # 通常待击
- WALK_R => [2,true , 2,false, false,"" ], # 右移动2
- WALK_L => [1,true , 2,true, false,"" ], # 左移动2
- ATTACK_R => [1,false, 2,true , false,"右手"], # 右手攻击
- ATTACK_L => [1,false, 2,true , false,"左手"], # 左手攻击
- MAGIC => [1,false, 2,false, false,"" ], # 右手攻击
- ITEM => [1,false, 2,false, false,"" ], # 左手攻击
- }
-
- # 债务不履行声明价值的设定(一个字一个字翻译的,不知道啥意思)
- ANIME.default = [1,false,12,false,"",""]
-
- # 在行动设定的时候 右手攻击 or 左手攻击 辨别を(这个不知道什么意思)的ANIME
- # "角色动画变更#ATTACK"在玩了と(还是不知道啥意思..)的时候,辨别ATTACK_R或者ATTACK_L
- DUAL_WEAPONS_ANIME = [ATTACK]
-
- #--------------------------------------------------------------------------
- # ● 摇晃的设定
- #--------------------------------------------------------------------------
- SHAKE_FILE = "摇晃" # 文件名
- SHAKE_POWER = 5 # 强度
- SHAKE_SPEED = 5 # 速度
- SHAKE_DURATION = 5 # 时间
- #--------------------------------------------------------------------------
- # ● 上下反转地的设定
- #--------------------------------------------------------------------------
- UPSIDE_DOWN_FILE = "上下反转" # 文件名
- #--------------------------------------------------------------------------
- # ● 左右反转地的设定
- #--------------------------------------------------------------------------
- REVERSE_FILE = "左右反转" # 文件名
- #--------------------------------------------------------------------------
- # ● 回转地的设定
- #--------------------------------------------------------------------------
- TURNING_FILE = "回转" # 文件名
- TURNING_DIRECTION = 1 # 方向(1.逆时针,-1.顺时针)(|||-_-汗..怎么还有用-1做带入值的...)
- TURNING_SPEED = 35 # 速度
- TURNING_DURATION = 1 # 回转数
- #--------------------------------------------------------------------------
- # ● 移动的设定
- #--------------------------------------------------------------------------
- MOVE_FILE = "移动" # 文件名
- MOVE_RETURN = 1 # 回到原来的位置吗?(光写了个1,也不知道不回到该怎么写?0?)
- MOVE_SPEED = 2 # 速度
- MOVE_COORDINATES = [0,-640] # 原来位置的相对坐标
- #--------------------------------------------------------------------------
- # ● 动画追加的设定
- #--------------------------------------------------------------------------
- ADD_ANIME_FILE = "动画追加" # 文件名
- ADD_ANIME_ID = 0 # 动画的ID
- #--------------------------------------------------------------------------
- # ● 债务不履行声明和RTAB的数据转换
- #--------------------------------------------------------------------------
- def convert_battler
- return RTAB ? @active_actor : @active_battler
- end
- #--------------------------------------------------------------------------
- # ● 债务不履行声明和RTAB的数据转换2
- #--------------------------------------------------------------------------
- def convert_battler2(*arg)
- return RTAB ? arg[0] : @active_battler
- end
- end
- #--------------------------------------------------------------------------
- # ● 行动設定
- #--------------------------------------------------------------------------
- module BattleActions
-
- # 下のものはあくまでも一例なので
- # 独自に作ってください。
- Actions = {
- "通常攻撃" => [
-
- "閃きアニメ",
- "アクターアニメ変更#WALK_L",
- "移動#target,32,0,64,0",
- "行動アニメ",
- "アクターアニメ変更#ATTACK",
- "遠距離アニメ",
- "対象アニメ",
- "アクターアニメ変更#WALK_L",
- "SEの演奏#016-Jump02,80,100",
- "移動#self,0,0,48,32",
- "終了"
- ],
-
- "エネミー攻撃" => [
-
- "閃きアニメ",
- "アクターアニメ変更#WALK_L",
- "移動#self,-36,0,12,0",
- "行動アニメ",
- "アクターアニメ変更#ATTACK",
- "遠距離アニメ",
- "対象アニメ",
- "アクターアニメ変更#WALK_L",
- "移動#self,0,0,12,0",
- "終了"
- ],
-
-
- "術発動" => [
-
- "閃きアニメ",
- "アクターアニメ変更#WALK_L",
- "移動#self,-32,0,4,0",
- "アクターアニメ変更#MAGIC",
- "行動アニメ",
- "ウエイト#15",
- "遠距離アニメ",
- "対象アニメ",
- "アクターアニメ変更#WALK_L",
- "移動#self,0,0,4,2",
- "終了"
- ],
- "アイテム使用" => [
-
- "閃きアニメ",
- "アクターアニメ変更#WALK_L",
- "移動#self,-32,0,4,0",
- "行動アニメ",
- "アクターアニメ変更#ITEM",
- "ウエイト#15",
- "遠距離アニメ",
- "対象アニメ",
- "アクターアニメ変更#WALK_L",
- "移動#self,0,0,4,2",
- "終了"
- ],
-
- "払い抜け" => [
-
- "閃きアニメ",
- "アクターアニメ変更#WALK_L",
- "移動#target_near,50,0,48,30",
- "アクターアニメ固定#ATTACK#3",
- "行動アニメ",
- "遠距離アニメ",
- "残像表示",
- "移動#target_far,-50,0,48,0",
- "対象アニメ",
- "残像消去",
- "アニメ固定解除",
- "アクターアニメ変更#WALK_L",
- "移動#self,0,0,48,1,0",
- "終了"
- ],
- } # ここで終わり 消さないでください
- end
-
- module RPG
- class Weapon
- #--------------------------------------------------------------------------
- # ● アクション設定
- #--------------------------------------------------------------------------
- def battle_actions
- case @id
- when 1 # ブロンズソード
- return BattleActions::Actions["通常攻撃"]
- end
- return BattleActions::Actions["通常攻撃"]
- end
- end
- class Skill
- #--------------------------------------------------------------------------
- # ● アクション設定
- #--------------------------------------------------------------------------
- def battle_actions
- if self.magic?
- return BattleActions::Actions["術発動"]
- else
- return BattleActions::Actions["払い抜け"]
- end
- end
- end
- class Item
- #--------------------------------------------------------------------------
- # ● アクション設定
- #--------------------------------------------------------------------------
- def battle_actions
- return BattleActions::Actions["アイテム使用"]
- end
- end
- end
- class Game_Enemy < Game_Battler
- #--------------------------------------------------------------------------
- # ● アクション設定
- #--------------------------------------------------------------------------
- def battle_actions
- return BattleActions::Actions["エネミー攻撃"]
- end
- end
- =begin
- #--------------------------------------------------------------------------
- # ● 遠距離アニメーション
- #--------------------------------------------------------------------------
- ☆ 説明
-
- 行動者から対象者にアニメを飛ばします。
- 飛ばすアニメを データベース‐アニメーション で作ります。
- [アニメーションID, スピード, 往復するか?,直線(false)or曲線(true)] で指定します。
- ● カスタマイズ方法
-
- case @id
- when 17,18,19,20
- return [101,32,false,false]
- when 21,22,23,24
- return [102,32,false,false]
- end
- return 0
-
- のように描くとID別に指定可能です。
-
-
- ● アニメーションID
-
- 飛ばすアニメーションIDです。短い場合は繰り返しで表示されます。
-
-
- ● スピード
-
- 大きいほうが早い(0だとアニメは移動しません)
-
- 1 = 1フレームで1ドット進むと考えてください。
-
- ● 往復するか?
-
- true とした場合、ブーメランのようにアニメが戻ります。
-
- ● 直線(false)or曲線(true)
-
- true = 対象に向かって曲線で、アニメが飛びます。(修正の余地ありですが・・・)
- false = 対象に向かって直線で、アニメが飛びます。
-
- =end
- module RPG
- class Weapon#★★★★★★★★★★★★★★★★★★★★★
- #--------------------------------------------------------------------------
- # ● 遠距離アニメーション(本来是远距动画的,现在当成给武器的属性吧)
- #--------------------------------------------------------------------------
- def flying_anime
- case @id
- when 7,23,105 #火
- return [224,2,false,false]
- when 39,53,89 #水
- return [231,2,false,false]
- when 5,38,54,88 #土
- return [228,2,false,false]
- when 22,87,117 #风
- return [227,2,false,false]
- when 8,25,57,101#雷
- return [226,2,false,false]
- when 9,37,102 #冰
- return [225,2,false,false]
- when 6,56,85,120 #光
- return [229,2,false,false]
- when 21,55,71,121 #暗
- return [230,2,false,false]
- end
- return [0,0,false,false]
- end
- end
- class Skill
- #--------------------------------------------------------------------------
- # ● 遠距離アニメーション(可以作为远距魔法)
- #--------------------------------------------------------------------------
- def flying_anime
- #case @id
- #when 132 # ブーメランっぽいやつ
- # return [170,10,true,false]
- # end
- return [0,0,false,false]
- end
- end
- class Item
- #--------------------------------------------------------------------------
- # ● 遠距離アニメーション(远距离道具,手榴弹??)
- #--------------------------------------------------------------------------
- def flying_anime
- case @id
- when 23
- return [159,15,false,true]
- when 73
- return [192,15,false,true]
- end
- return [0,0,false,false]
- end
- end
- end
- class Game_Enemy < Game_Battler
- #--------------------------------------------------------------------------
- # ● 遠距離アニメーション
- #--------------------------------------------------------------------------
- def flying_anime
- return [0,0,false,false]
- end
- end
- #==============================================================================
- # ■ Game_Battler
- #==============================================================================
- class Game_Battler
- include Side_view
- #--------------------------------------------------------------------------
- # ● 追加・公開インスタンス変数
- #--------------------------------------------------------------------------
- attr_accessor :height # 画像の高さ
- attr_accessor :real_x # X座標補正
- attr_accessor :real_y # Y座標補正
- attr_accessor :real_zoom # 拡大率
- attr_accessor :wait_count # アニメーション 待ち時間
- attr_accessor :wait_count2 # アニメーション 待ち時間2
- attr_accessor :pattern # アニメーション カウント(キャラ)
- attr_accessor :shake # シェイク開始フラッグ
- attr_accessor :reverse # 左右反転フラッグ
- attr_accessor :shadow # 残像フラッグ
- attr_accessor :flash_flag # 閃きフラッグ
- attr_reader x # X座標補正
- attr_reader y # Y座標補正
- attr_reader :flying_x # 遠距離アニメX座標
- attr_reader :flying_y # 遠距離アニメY座標
- attr_reader :flying_anime # 遠距離アニメ
- attr_reader :animation1_on # 行動アニメ開始フラッグ
- attr_reader :animation2_on # 対象アニメ開始フラッグ
- #--------------------------------------------------------------------------
- # ● デフォルトのアニメーション待ち時間を取得
- #--------------------------------------------------------------------------
- def animation_duration=(animation_duration)
- @_animation_duration = animation_duration
- end
- #--------------------------------------------------------------------------
- # ● バトル開始時のセットアップ
- #--------------------------------------------------------------------------
- def start_battle
- @height = 0
- @real_x = 0
- @real_y = 0
- @real_zoom = 1.0
- @battler_condition = ""
- @action = nil
- @battle_actions = []
- @battler_action = false
- @step = 0
- @anime_on = false
- @wait_count = 0
- @wait_count2 = 0
- @ox = 0
- @oy = 0
- @pattern = 0
- @pattern_log = true
- @pattern_freeze = false
- @condition_freeze = false
- @active = false
- @move_distance = nil
- @move_wait = 0
- @move_coordinates = [0,0,0,0]
- @flying_distance = nil
- @flying_wait = 0
- @flying_x = 0
- @flying_y = 0
- @flash_flag = {}
- self.flying_clear
- end
- #--------------------------------------------------------------------------
- # ● 移動中判定
- #--------------------------------------------------------------------------
- def moving?
- # X座標補正または、Y座標補正が0でなければ、移動中
- return (@ox != 0 or @oy != 0)
- end
- #--------------------------------------------------------------------------
- # ● 移動終了判定
- #--------------------------------------------------------------------------
- def move_end?
- return (@ox == @move_coordinates[0] and @oy == @move_coordinates[1])
- end
- #--------------------------------------------------------------------------
- # ● アクション開始設定
- #--------------------------------------------------------------------------
- def action(flag = true)
- @battler_action = flag
- @animation1_on = false
- @animation2_on = false
- @step = "setup"
- end
- #--------------------------------------------------------------------------
- # ● アクション中判定
- #--------------------------------------------------------------------------
- def action?
- return @battler_action
- end
- #--------------------------------------------------------------------------
- # ● 閃き判定
- #--------------------------------------------------------------------------
- def flash?
- return @flash_flg
- end
- #--------------------------------------------------------------------------
- # ● 戦闘不能判定
- #--------------------------------------------------------------------------
- def anime_dead?
- if $game_temp.in_battle and !RTAB
- if [2,3,4,5].include?($scene.phase4_step)
- return @last_dead
- end
- end
- return @last_dead = self.dead?
- end
- #--------------------------------------------------------------------------
- # ● ピンチ状態判定
- #--------------------------------------------------------------------------
- def crisis?
- if $game_temp.in_battle and !RTAB
- if [2,3,4,5].include?($scene.phase4_step)
- return @last_crisis
- end
- end
- return @last_crisis = (self.hp <= self.maxhp / 4 or badstate?)
- end
- #--------------------------------------------------------------------------
- # ● バッドステート判定
- #--------------------------------------------------------------------------
- def badstate?
- for i in @states
- unless $data_states.nonresistance
- return true
- end
- end
- return false
- end
- #--------------------------------------------------------------------------
- # ● 飛行
- #--------------------------------------------------------------------------
- def fly
- if @fly != nil
- return @fly
- end
- for id in @states
- if FLY_STATES.include?($data_states[id].name)
- return 60
- end
- end
- return 0
- end
- #--------------------------------------------------------------------------
- # ● 遠距離アニメ目標座標の計算
- #--------------------------------------------------------------------------
- def flying_setup
- # 二度目は実行しない
- return if @flying_distance != nil && !camera_correctness
- if RTAB
- targets = @target
- else
- targets = $scene.target_battlers
- end
- # 目的座標を計算
- @f_target_x = 0
- @f_target_y = 0
- for t in targets
- @f_target_x += t.screen_x
- @f_target_y += t.screen_y
- end
- if targets != []
- @f_target_x /= targets.size
- @f_target_y /= targets.size
- else
- @flying_distance = 0
- return
- end
- # 距離の計算
- @flying_distance = (self.screen_x - @f_target_x).abs + (self.screen_y - @f_target_y).abs
- end
- #--------------------------------------------------------------------------
- # ● 遠距離アニメ
- #--------------------------------------------------------------------------
- def flying_animation
- # 戻る
- if @step != "flying" or @flying_distance.nil?
- return [false,true]
- end
- # あらかじめ計算
- self_x = self.screen_x
- self_y = self.screen_y
- @flying_distance = @flying_distance == 0 ? 1 : @flying_distance
- n1 = @flying_wait / @flying_distance.to_f
- if @flying_distance - @flying_wait > @flying_distance / 2
- n2 = 1.0 + 10.0 * @flying_wait / @flying_distance.to_f
- else
- n2 = 1.0 + 10.0 * (@flying_distance - @flying_wait) / @flying_distance.to_f
- end
- if !@flying_anime[4]
- # 直線移動
- x = (self_x + 1.0 * (@f_target_x - self_x) * n1).to_i
- y = (self_y + 1.0 * (@f_target_y - self_y) * n1).to_i
- else
- # 曲線移動
- if !@flying_proceed_end
- x = (self_x + 1.0 * (@f_target_x - self_x) * n1).to_i
- y = (self_y + 1.0 * (@f_target_y - self_y) * n1 - n2**2).to_i
- else
- x = (self_x + 1.0 * (@f_target_x - self_x) * n1).to_i
- y = (self_y + 1.0 * (@f_target_y - self_y) * n1 + n2**2).to_i
- end
- end
- # 座標代入
- @flying_x = x
- @flying_y = y
- # ウエイト
- if !@flying_proceed_end
- # 開始
- @flying_proceed_start = @flying_wait == 0
- @flying_wait += @flying_anime[1]
- @flying_wait = [@flying_wait,@flying_distance].min
- @flying_proceed_end = @flying_wait == @flying_distance
- else
- # 開始
- @flying_return_start = @flying_wait == @flying_distance
- @flying_wait -= @flying_anime[1]
- @flying_wait = [@flying_wait,0].max
- @flying_return_end = @flying_wait == 0
- end
- if @flying_anime[1] == 0
- @flying_end = true
- elsif !@flying_anime[2]
- @flying_end = @flying_proceed_end
- else
- @flying_end = @flying_return_end
- end
- # 値を返す(アニメ開始,アニメ終了)
- return [@flying_proceed_start,@flying_end]
- end
- #--------------------------------------------------------------------------
- # ● 遠距離アニメ初期化
- #--------------------------------------------------------------------------
- def flying_clear
- @flying_proceed_start = false
- @flying_proceed_end = false
- @flying_return_start = false
- @flying_return_end = false
- @flying_end = false
- @flying_anime = [0,0,false]
- end
- #--------------------------------------------------------------------------
- # ● 移動
- #--------------------------------------------------------------------------
- def move
- # 距離の計算
- @move_distance = (@move_coordinates[2] - @move_coordinates[0]).abs +
- (@move_coordinates[3] - @move_coordinates[1]).abs
- if @move_distance > 0
- return if @ox == @move_coordinates[0] and @oy == @move_coordinates[1]
- array = @move_coordinates
- # ジャンプ補正値の計算
- if @move_distance - @move_wait > @move_distance / 2
- jump = (@move_action[4] * @move_wait / @move_distance.to_f)**2
- else
- jump = (@move_action[4] * (@move_distance - @move_wait) / @move_distance.to_f)**2
- end
- jump = @move_action[4] > 0 ? -jump : jump
- @ox = (array[2] + 1.0 * (array[0] - array[2]) * (@move_distance - @move_wait) / @move_distance.to_f).to_i
- @oy = (array[3] + 1.0 * (array[1] - array[3]) * (@move_distance - @move_wait) / @move_distance.to_f + jump).to_i
- # ウエイト
- @move_wait -= @move_action[3]
- @move_wait = [@move_wait,0].max
- end
- end
- #--------------------------------------------------------------------------
- # ● 移動アクションの取得
- #--------------------------------------------------------------------------
- def get_move_action
- string = @action.split(/#/)[1]
- string = string.split(/,/)
- @move_action = [string[0],string[1].to_i,string[2].to_i,string[3].to_i,string[4].to_i,string[5].to_i]
- end
- #--------------------------------------------------------------------------
- # ● アクションの取得
- #--------------------------------------------------------------------------
- def get_step
- if @action.nil?
- @step = "finish"
- return
- end
- string = @action.split(/#/)[0]
- if string =~ "移動"
- @step = "moving_setup"
- elsif string =~ "アクターアニメ実行"
- @step = "action"
- elsif string =~ "遠距離アニメ"
- @step = "flying"
- elsif string =~ "アクターアニメ変更"
- @step = "change"
- elsif string =~ "行動アニメ"
- @step = "animation1"
- elsif string =~ "対象アニメ"
- @step = "animation2"
- elsif string =~ "ウエイト"
- @step = "wait"
- elsif string =~ "左右反転"
- @step = "reverse"
- elsif string =~ "閃きアニメ"
- @step = "flash"
- elsif string =~ "残像表示"
- @step = "shadow_on"
- elsif string =~ "残像消去"
- @step = "shadow_off"
- elsif string =~ "アクターアニメ固定"
- @step = "freeze"
- elsif string =~ "アニメ固定解除"
- @step = "freeze_lifting"
- elsif string =~ "アニメーションの表示"
- @step = "animation_start"
- elsif string =~ "SEの演奏"
- @step = "play_se"
- else
- @step = "finish"
- end
- end
- #--------------------------------------------------------------------------
- # ● フレーム更新 (次のアクションへ)
- #--------------------------------------------------------------------------
- def update_next
- @action = @battle_actions.shift
- @step = get_step
- end
- #--------------------------------------------------------------------------
- # ● フレーム更新 (動作取得)
- #--------------------------------------------------------------------------
- def update_setup
- # アクションの取得
- self.get_actions
- @action = @battle_actions.shift
- @step = get_step
- end
- #--------------------------------------------------------------------------
- # ● フレーム更新 (移動取得)
- #--------------------------------------------------------------------------
- def update_moving_setup
- # 移動アクションの取得
- self.get_move_action
- # 移動目標の設定
- self.move_setup
- @step = "moving"
- end
- #--------------------------------------------------------------------------
- # ● フレーム更新 (移動)
- #--------------------------------------------------------------------------
- def update_moving
- # 移動
- self.move
- self.condition = @battler_condition
- # 移動完了したら次のステップへ
- if move_end?
- @wait_count = 2
- @action = @battle_actions.shift
- @step = get_step
- end
- end
- #--------------------------------------------------------------------------
- # ● フレーム更新 (アニメ実行)
- #--------------------------------------------------------------------------
- def update_action
- con = @action.split(/#/)[1]
- # 右手・左手を分ける
- if DUAL_WEAPONS_ANIME.include?(con)
- if !@first_weapon and @second_weapon
- con = con + "_L"
- else
- con = con + "_R"
- end
- end
- # アニメ変更
- self.condition = con
- # ループか否か
- if !ANIME[@battler_condition][1]
- self.anime_on
- end
- @action = @battle_actions.shift
- @step = get_step
- end
- #--------------------------------------------------------------------------
- # ● フレーム更新 (遠距離アニメ)
- #--------------------------------------------------------------------------
- def update_flying
- # 目標の設定
- self.flying_setup
- # 遠距離アニメ終了
- if @flying_end
- self.flying_clear
- @action = @battle_actions.shift
- @step = get_step
- end
- end
- #--------------------------------------------------------------------------
- # ● フレーム更新 (アニメ変更)
- #--------------------------------------------------------------------------
- def update_change
- con = @action.split(/#/)[1]
- # 右手・左手を分ける
- if DUAL_WEAPONS_ANIME.include?(con)
- if !@first_weapon and @second_weapon
- con = con + "_L"
- else
- con = con + "_R"
- end
- end
- # アニメ変更
- self.condition = con
- # ループか否か
- if !ANIME[@battler_condition][1]
- self.anime_on
- end
- @action = @battle_actions.shift
- @step = get_step
- end
- #--------------------------------------------------------------------------
- # ● フレーム更新 (行動アニメ)
- #--------------------------------------------------------------------------
- def update_animation1
- @animation1_on = true
- # 行動アニメの後に行動を開始する
- if $scene.phase4_step == 3
- id = RTAB ? @anime1 : $scene.animation1_id
- animation = $data_animations[id]
- frame_max = animation != nil ? animation.frame_max : 0
- @wait_count2 = frame_max * 2
- return
- end
- @action = @battle_actions.shift
- @step = get_step
- end
- #--------------------------------------------------------------------------
- # ● フレーム更新 (対象アニメ)
- #--------------------------------------------------------------------------
- def update_animation2
- @animation2_on = true
- # 行動アニメの後に行動を開始する
- if $scene.phase4_step == 4
- id = RTAB ? @anime2 : $scene.animation2_id
- animation = $data_animations[id]
- frame_max = animation != nil ? animation.frame_max : 0
- @wait_count2 = frame_max * 2
- return
- end
- @action = @battle_actions.shift
- @step = get_step
- end
- #--------------------------------------------------------------------------
- # ● フレーム更新 (ウエイト)
- #--------------------------------------------------------------------------
- def update_wait
- @wait_count2 = @action.split(/#/)[1].to_i
- @action = @battle_actions.shift
- @step = get_step
- end
- #--------------------------------------------------------------------------
- # ● フレーム更新 (残像表示)
- #--------------------------------------------------------------------------
- def update_shadow_on
- @shadow = true
- @action = @battle_actions.shift
- @step = get_step
- end
- #--------------------------------------------------------------------------
- # ● フレーム更新 (残像消去)
- #--------------------------------------------------------------------------
- def update_shadow_off
- @shadow = false
- @action = @battle_actions.shift
- @step = get_step
- end
- #--------------------------------------------------------------------------
- # ● フレーム更新 (左右反転)
- #--------------------------------------------------------------------------
- def update_reverse
- @reverse = @reverse ? false : true
- @action = @battle_actions.shift
- @step = get_step
- end
- #--------------------------------------------------------------------------
- # ● フレーム更新 (閃きアニメ)
- #--------------------------------------------------------------------------
- def update_flash
- # 閃きアニメの後に行動を開始する
- if @flash_flag["normal"]
- @wait_count = $scene.flash_duration
- @flash_flag["normal"] = false
- return
- end
- @action = @battle_actions.shift
- @step = get_step
- end
- #--------------------------------------------------------------------------
- # ● フレーム更新 (SEの演奏)
- #--------------------------------------------------------------------------
- def update_play_se
- data = @action.split(/#/)[1]
- data = data.split(/,/)
- # SE を演奏
- Audio.se_play("Audio/SE/" + data[0], data[1].to_i, data[2].to_i)
- @action = @battle_actions.shift
- @step = get_step
- end
- #--------------------------------------------------------------------------
- # ● フレーム更新 (アクターアニメ固定)
- #--------------------------------------------------------------------------
- def update_freeze
- con = @action.split(/#/)[1]
- # 右手・左手を分ける
- if DUAL_WEAPONS_ANIME.include?(con)
- if !@first_weapon and @second_weapon
- con = con + "_L"
- else
- con = con + "_R"
- end
- end
- # アニメ変更
- self.condition = con
- @pattern = @action.split(/#/)[2].to_i
- @pattern_freeze = true
- @condition_freeze = true
- @action = @battle_actions.shift
- @step = get_step
- end
- #--------------------------------------------------------------------------
- # ● フレーム更新 (アクターアニメ固定解除)
- #--------------------------------------------------------------------------
- def update_freeze_lifting
- @pattern_freeze = false
- @condition_freeze = false
- @action = @battle_actions.shift
- @step = get_step
- end
- #--------------------------------------------------------------------------
- # ● フレーム更新 (アニメーションの表示)
- #--------------------------------------------------------------------------
- def update_animation_start
- data = @action.split(/#/)[1]
- data = data.split(/,/)
- target = data[0]
- animation_id = data[1].to_i
- if RTAB
- case target
- when "self"
- @animation.push([animation_id,true])
- when "target"
- for tar in @target
- tar.animation.push([animation_id, true])
- end
- end
- else
- case target
- when "self"
- @animation_id = animation_id
- @animation_hit = true
- when "target"
- for tar in $scene.target_battlers
- tar.animation_id = animation_id
- tar.animation_hit = true
- end
- end
- end
- @action = @battle_actions.shift
- @step = get_step
- end
- #--------------------------------------------------------------------------
- # ● フレーム更新 (動作終了)
- #--------------------------------------------------------------------------
- def update_finish
- # 動作終了
- @battler_action = false
- @step = "setup"
- end
- #--------------------------------------------------------------------------
- # ● バトラーの状態 変更(バトラーグラフィックのタイプ)
- #--------------------------------------------------------------------------
- def condition=(condition)
- return if @condition_freeze
- @battler_condition = condition
- @wait_count = ANIME[condition][2]
- end
- #--------------------------------------------------------------------------
- # ● バトラーの状態(バトラーグラフィックのタイプ)
- #--------------------------------------------------------------------------
- def condition
- return @battler_condition
- end
- #--------------------------------------------------------------------------
- # ● フレーム更新
- #--------------------------------------------------------------------------
- def update
- # ウェイト中の場合
- if @wait_count > 0
- return
- end
- # パターン更新
- self.char_animation
- # ウェイト中の場合
- if @wait_count2 > 0
- return
- end
-
- # 行動アニメーション
- if @battler_action
- method("update_" + @step).call
- return
- end
-
- # データ初期化
- @animation1_on = false
- @animation2_on = false
- @action = nil
- @battle_actions = []
- @move_wait = 0
- @move_distance = nil
- @flying_wait = 0
- @flying_distance = nil
- @flash = false
- # RTAB対応
- # 通常・待機
- return self.condition = NORMAL
- end
- #--------------------------------------------------------------------------
- # ● アクションの取得
- #--------------------------------------------------------------------------
- def get_actions
- skill = $data_skills[self.current_action.skill_id]
- item = $data_items[self.current_action.item_id]
- kind = self.current_action.kind
- # 動作取得
- @battle_actions = []
- # スキル
- if skill != nil && kind == 1
- @battle_actions = skill.battle_actions.dup
- @flying_anime = skill.flying_anime
- # アイテム
- elsif item != nil && kind == 2
- @battle_actions = item.battle_actions.dup
- @flying_anime = item.flying_anime
- # 左手攻撃
- elsif !@first_weapon and @second_weapon and self.is_a?(Game_Actor)
- @battle_actions = self.battle_actions2.dup
- @flying_anime = self.flying_anime2
- # 右手攻撃
- elsif self.current_action.basic == 0 and
- self.is_a?(Game_Actor) and self.current_action.kind == 0
- @battle_actions = self.battle_actions1.dup
- @flying_anime = self.flying_anime1
- # 通常攻撃
- elsif self.current_action.basic == 0 and self.current_action.kind == 0
- @battle_actions = self.battle_actions.dup
- @flying_anime = self.flying_anime
- else
- @battle_actions = ["終了"]
- @flying_anime = [0,0,false,false]
- end
- end
- #--------------------------------------------------------------------------
- # ● ループしないアニメのセット
- #--------------------------------------------------------------------------
- def anime_on
- @pattern = 0
- @pattern_log = true
- return
- end
- #--------------------------------------------------------------------------
- # ● パターン更新
- #--------------------------------------------------------------------------
- def char_animation
- # パタン固定の場合もどる
- return if @pattern_freeze
- # ループしないアニメの場合 1234 で止まる
- if !ANIME[@battler_condition][1] && @pattern == 3
- return
- end
- # アニメさせない場合 1 で止まる
- if ANIME[@battler_condition][4]
- @pattern = 0
- return
- end
- @pattern = (@pattern + 1) % 4
- end
- #--------------------------------------------------------------------------
- # ● アニメタイプ
- #--------------------------------------------------------------------------
- def anime_type
- return ANIME[self.condition] != nil ? ANIME[self.condition][0] : 0
- end
- end
- #==============================================================================
- # ■ Game_Actor
- #==============================================================================
- class Game_Actor < Game_Battler
- include Side_view
- #--------------------------------------------------------------------------
- # ● セットアップ
- #--------------------------------------------------------------------------
- alias side_view_setup setup
- def setup(actor_id)
- side_view_setup(actor_id)
- start_battle
- end
- #--------------------------------------------------------------------------
- # ● 二刀武器のID取得 ※エラー回避用
- #--------------------------------------------------------------------------
- def weapon2_id
- return @weapon2_id != nil ? @weapon2_id : 0
- end
- #--------------------------------------------------------------------------
- # ● X方向 ポジション 取得 (陣形スクリプト拡張用)
- #--------------------------------------------------------------------------
- def position
- return $data_classes[@class_id].position
- end
- #--------------------------------------------------------------------------
- # ● Y方向 ポジション 取得 (陣形スクリプト拡張用)
- #--------------------------------------------------------------------------
- def position2
- return self.index
- end
- #--------------------------------------------------------------------------
- # ● 武器アニメタイプ
- #--------------------------------------------------------------------------
- def weapon_anime_type(type)
- file_name = weapon_anime_type0(type)
- visible = weapon_anime_type1(type)
- z = weapon_anime_type2(type)
- return [file_name,visible,z]
- end
- # 武器アイコン取得
- def weapon_anime_type0(type)
- type = ANIME[type][5]
- return weapon_anime1 if type == "右手"
- return weapon_anime2 if type == "左手"
- return nil
- end
- # 表示・非表示の取得
- def weapon_anime_type1(type)
- return ANIME[type][3]
- end
- # バトラーより上に表示するかどうか
- def weapon_anime_type2(type)
- type = ANIME[type][5]
- return true if type == "左手"
- return false
- end
- #--------------------------------------------------------------------------
- # ● バトル画面 X 座標の取得(カメラ補正無し)
- #--------------------------------------------------------------------------
- def true_x
- return PARTY_X + position * FORMATION_X + @ox
- end
- #--------------------------------------------------------------------------
- # ● バトル画面 Y 座標の取得(カメラ補正無し)
- #--------------------------------------------------------------------------
- def true_y
- # パーティ内の並び順から Y 座標を計算して返す
- if self.index != nil
- y = position2 * FORMATION_Y + PARTY_Y + @oy - @height / 2
- return y
- else
- return 0
- end
- end
- #--------------------------------------------------------------------------
- # ● バトル画面 X 座標の取得
- #--------------------------------------------------------------------------
- def screen_x(true_x = self.true_x)
- return 320 + (true_x - 320) * @real_zoom + @real_x
- end
复制代码 |
|