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

Project1

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

[原创发布] 战斗中换人,口袋口袋依旧是口袋

[复制链接]

Lv4.逐梦者

梦石
0
星屑
7946
在线时间
1182 小时
注册时间
2007-7-29
帖子
2055
跳转到指定楼层
1
发表于 2010-12-14 21:38:25 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

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

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

x
本帖最后由 enghao_lim 于 2011-7-16 23:50 编辑

以前曾经写了一个,貌似那个贴已经失踪到不懂哪里去了,所以今天重写了一个。而且之前写那个还可以玩围攻,这个是模仿口袋的战斗换人,功能就是那样,没得介绍,插入脚本后即可用。

脚本已经更新,请使用以下脚本,范例的脚本已经旧了。

范例:
战斗中换人.rar (189.08 KB, 下载次数: 4878)
  1. module LimBattlePlug

  2. # 队伍最大人数
  3. MaxPartySize = 8

  4. # 出战人数
  5. MaxBattlerSize = 1

  6. # 换人语句
  7. WordChangeBattler = "换人"

  8. # 换人时播放的动画
  9. AnimationChangeBattler = 26

  10. end

  11. class Game_BattleAction
  12.   attr_accessor :change_to_battler
  13.   # 初始化
  14.   alias lbp_initialize initialize
  15.   def initialize
  16.     lbp_initialize
  17.     @change_to_battler = 0
  18.   end
  19.   # 欲更换角色编号
  20.   def set_change_battler
  21.     @kind = 3
  22.   end
  23.   # 判断行动是否为更换角色
  24.   def is_change_battler?
  25.     return (@kind == 3)
  26.   end
  27. end

  28. class Game_Party
  29.   include LimBattlePlug
  30.   attr_reader :actors2
  31.   alias lpb_initialize initialize
  32.   def initialize
  33.     lpb_initialize
  34.     @actors2 = []
  35.   end
  36.   # 角色加入
  37.   def add_actor(actor_id)
  38.     actor = $game_actors[actor_id]
  39.     if @actors.size < MaxPartySize and not @actors.include?(actor)
  40.       @actors.push(actor)
  41.       $game_player.refresh
  42.     end
  43.   end
  44.   # 设置战斗的角色
  45.   def set_actor_to_battle
  46.     @actors2 = []
  47.     @actors.each do |actor|
  48.       @actors2.push(actor)
  49.     end
  50.     @actors = []
  51.     dead_actor = []
  52.     @actors2.each do |actor|
  53.       if !actor.dead?
  54.         @actors.push(actor)
  55.       else
  56.         dead_actor.push(actor)
  57.       end
  58.       break if @actors.size == MaxBattlerSize
  59.     end
  60.     if @actors.size < MaxBattlerSize
  61.       for actor in dead_actor
  62.         @actors.push(actor)
  63.         break if @actors.size == MaxBattlerSize
  64.       end
  65.     end
  66.   end
  67.   # 还原战斗的角色
  68.   def set_actor_to_normal
  69.     @actors = []
  70.     @actors2.each do |actor|
  71.       @actors.push(actor)
  72.     end
  73.   end
  74.   # 获取角色id数组
  75.   def get_actors_id
  76.     id = []
  77.     @actors.each{|actor|id.push(actor.id)}
  78.     return id
  79.   end
  80.   # 获取角色id数组
  81.   def get_actors2_id
  82.     id = []
  83.     @actors2.each{|actor|id.push(actor.id)}
  84.     return id
  85.   end
  86.   # 兑换角色
  87.   def change_actor(index,id)
  88.     @actors[index] = $game_actors[id]
  89.   end
  90.   # 全灭判定
  91.   def all_dead?
  92.     # 同伴人数为 0 的情况下
  93.     if $game_party.actors.size == 0
  94.       return false
  95.     end
  96.     # 同伴中无人 HP 在 0 以上
  97.     for actor in @actors2
  98.       if actor.hp > 0
  99.         return false
  100.       end
  101.     end
  102.     for actor in @actors
  103.       if actor.hp > 0
  104.         return false
  105.       end
  106.     end
  107.     # 全灭
  108.     return true
  109.   end
  110.   # 其他角色
  111.   def other_actors
  112.     actors = []
  113.     @actors2.each{|actor|actors.push(actor) if [email protected]?(actor)}
  114.     return actors
  115.   end
  116.   # 角色位置互换
  117.   def change_actor_pos(id1,id2)
  118.     actor_id = []
  119.     @actors.each do |actor|
  120.       actor_id.push(actor.id)
  121.     end
  122.     return if !actor_id.include?(id1) and !actor_id.include?(id2)
  123.     id1_index = id2_index = -1
  124.     (0...actor_id.size).each do |i|
  125.       if actor_id[i] == id1
  126.         id1_index = i
  127.       elsif actor_id[i] == id2
  128.         id2_index = i
  129.       end
  130.     end
  131.     temp_actor = @actors[id1_index]
  132.     @actors[id1_index] = @actors[id2_index]
  133.     @actors[id2_index] = temp_actor
  134.   end
  135. end

  136. class Window_Actor < Window_Selectable
  137.   # 初始化
  138.   def initialize
  139.     super(0,64,640,256)
  140.     self.back_opacity = 160
  141.     refresh
  142.     self.index = -1
  143.     self.active = false
  144.   end
  145.   # 刷新
  146.   def refresh
  147.     @item_max = $game_party.actors2.size
  148.     @data = []
  149.     $game_party.actors.each do |actor|
  150.       @data.push(actor)
  151.     end
  152.     $game_party.actors2.each do |actor|
  153.       @data.push(actor) if [email protected]?(actor)
  154.     end
  155.     if self.contents != nil
  156.       self.contents.clear
  157.       self.contents = nil
  158.     end
  159.     self.contents = Bitmap.new(608,@data.size*32)
  160.     x = 4
  161.     y = 0
  162.     @data.each do |actor|
  163.       bitmap = RPG::Cache.character(actor.character_name,actor.character_hue)
  164.       rect = Rect.new(0,0,bitmap.width/4,31)
  165.       self.contents.blt(x+16-bitmap.width/8,y,bitmap,rect)
  166.       draw_actor_name(actor,x+36,y)
  167.       draw_actor_state(actor,156,y)
  168.       draw_actor_hp(actor,x+256,y,96)
  169.       draw_actor_sp(actor,x+376,y,96)
  170.       if $game_party.actors.include?(actor)
  171.         self.contents.font.color = text_color(6)
  172.         cword = "出战"
  173.       else
  174.         self.contents.font.color = text_color(0)
  175.         cword = "待战"
  176.       end
  177.       self.contents.draw_text(x+496,y,60,32,cword)
  178.       y += 32
  179.     end
  180.   end
  181.   # 获取当前角色编号
  182.   def actor_id
  183.     return @data[self.index].id
  184.   end
  185.   # 刷新帮助
  186.   def update_help
  187.     @help_window.set_text(@data[self.index] == nil ?\
  188.                           "" : @data[self.index].name)
  189.   end
  190. end

  191. class Scene_Battle
  192.   include LimBattlePlug
  193.   # 初始化
  194.   def initialize
  195.     $game_party.set_actor_to_battle
  196.   end
  197.   # 主处理
  198.   def main
  199.     # 初始化战斗用的各种暂时数据
  200.     $game_temp.in_battle = true
  201.     $game_temp.battle_turn = 0
  202.     $game_temp.battle_event_flags.clear
  203.     $game_temp.battle_abort = false
  204.     $game_temp.battle_main_phase = false
  205.     $game_temp.battleback_name = $game_map.battleback_name
  206.     $game_temp.forcing_battler = nil
  207.     # 初始化战斗用事件解释器
  208.     $game_system.battle_interpreter.setup(nil, 0)
  209.     # 准备队伍
  210.     @troop_id = $game_temp.battle_troop_id
  211.     $game_troop.setup(@troop_id)
  212.     # 生成角色命令窗口
  213.     s1 = $data_system.words.attack
  214.     s2 = $data_system.words.skill
  215.     s3 = $data_system.words.guard
  216.     s4 = $data_system.words.item
  217.     s5 = WordChangeBattler
  218.     @actor_command_window = Window_Command.new(160, [s1, s2, s3, s4,s5])
  219.     @actor_command_window.y = 128
  220.     @actor_command_window.back_opacity = 160
  221.     @actor_command_window.active = false
  222.     @actor_command_window.visible = false
  223.     # 生成其它窗口
  224.     @party_command_window = Window_PartyCommand.new
  225.     @help_window = Window_Help.new
  226.     @help_window.back_opacity = 160
  227.     @help_window.visible = false
  228.     @status_window = Window_BattleStatus.new
  229.     @message_window = Window_Message.new
  230.     # 生成活动块
  231.     @spriteset = Spriteset_Battle.new
  232.     # 初始化等待计数
  233.     @wait_count = 0
  234.     # 执行过渡
  235.     if $data_system.battle_transition == ""
  236.       Graphics.transition(20)
  237.     else
  238.       Graphics.transition(40, "Graphics/Transitions/" +
  239.         $data_system.battle_transition)
  240.     end
  241.     # 开始自由战斗回合
  242.     start_phase1
  243.     # 主循环
  244.     loop do
  245.       # 刷新游戏画面
  246.       Graphics.update
  247.       # 刷新输入信息
  248.       Input.update
  249.       # 刷新画面
  250.       update
  251.       # 如果画面切换的话就中断循环
  252.       if $scene != self
  253.         break
  254.       end
  255.     end
  256.     # 刷新地图
  257.     $game_map.refresh
  258.     # 准备过渡
  259.     Graphics.freeze
  260.     # 释放窗口
  261.     @actor_command_window.dispose
  262.     @party_command_window.dispose
  263.     @help_window.dispose
  264.     @status_window.dispose
  265.     @message_window.dispose
  266.     if @skill_window != nil
  267.       @skill_window.dispose
  268.     end
  269.     if @item_window != nil
  270.       @item_window.dispose
  271.     end
  272.     if @actor_window != nil
  273.       @actor_window.dispose
  274.     end
  275.     if @result_window != nil
  276.       @result_window.dispose
  277.     end
  278.     # 释放活动块
  279.     @spriteset.dispose
  280.     # 标题画面切换中的情况
  281.     if $scene.is_a?(Scene_Title)
  282.       # 淡入淡出画面
  283.       Graphics.transition
  284.       Graphics.freeze
  285.     end
  286.     # 战斗测试或者游戏结束以外的画面切换中的情况
  287.     if $BTEST and not $scene.is_a?(Scene_Gameover)
  288.       $scene = nil
  289.     end
  290.   end
  291.   # 战斗结束
  292.   alias lpb_battle_end battle_end
  293.   def battle_end(n)
  294.     lpb_battle_end(n)
  295.     $game_party.set_actor_to_normal
  296.   end
  297.   # 开始回合3
  298.   alias lbp_start_phase3 start_phase3
  299.   def start_phase3
  300.     @changed_battler_id = []
  301.     lbp_start_phase3
  302.   end
  303.   # 刷新角色命令回合画面
  304.   def update_phase3
  305.     # 敌人光标有效的情况下
  306.     if @enemy_arrow != nil
  307.       update_phase3_enemy_select
  308.     # 角色光标有效的情况下
  309.     elsif @actor_arrow != nil
  310.       update_phase3_actor_select
  311.     # 特技窗口有效的情况下
  312.     elsif @skill_window != nil
  313.       update_phase3_skill_select
  314.     # 物品窗口有效的情况下
  315.     elsif @item_window != nil
  316.       update_phase3_item_select
  317.     elsif @actor_window != nil
  318.       update_phase3_battler_select
  319.     # 角色指令窗口有效的情况下
  320.     elsif @actor_command_window.active
  321.       update_phase3_basic_command
  322.     end
  323.   end
  324.   # 角色基本命令
  325.   def update_phase3_basic_command
  326.     # 按下 B 键的情况下
  327.     if Input.trigger?(Input::B)
  328.       # 演奏取消 SE
  329.       $game_system.se_play($data_system.cancel_se)
  330.       # 转向前一个角色的指令输入
  331.       phase3_prior_actor
  332.       return
  333.     end
  334.     # 按下 C 键的情况下
  335.     if Input.trigger?(Input::C)
  336.       # 角色指令窗口光标位置分之
  337.       case @actor_command_window.index
  338.       when 0  # 攻击
  339.         # 演奏确定 SE
  340.         $game_system.se_play($data_system.decision_se)
  341.         # 设置行动
  342.         @active_battler.current_action.kind = 0
  343.         @active_battler.current_action.basic = 0
  344.         # 开始选择敌人
  345.         start_enemy_select
  346.       when 1  # 特技
  347.         # 演奏确定 SE
  348.         $game_system.se_play($data_system.decision_se)
  349.         # 设置行动
  350.         @active_battler.current_action.kind = 1
  351.         # 开始选择特技
  352.         start_skill_select
  353.       when 2  # 防御
  354.         # 演奏确定 SE
  355.         $game_system.se_play($data_system.decision_se)
  356.         # 设置行动
  357.         @active_battler.current_action.kind = 0
  358.         @active_battler.current_action.basic = 1
  359.         # 转向下一位角色的指令输入
  360.         phase3_next_actor
  361.       when 3  # 物品
  362.         # 演奏确定 SE
  363.         $game_system.se_play($data_system.decision_se)
  364.         # 设置行动
  365.         @active_battler.current_action.kind = 2
  366.         # 开始选择物品
  367.         start_item_select
  368.       when 4 # 换人
  369.         $game_system.se_play($data_system.decision_se)
  370.         @active_battler.current_action.set_change_battler
  371.         start_battler_select
  372.       end
  373.       return
  374.     end
  375.   end
  376.   # 开始角色选择
  377.   def start_battler_select
  378.     @actor_window = Window_Actor.new
  379.     @actor_window.active = true
  380.     @actor_window.index = 0
  381.     @actor_window.help_window = @help_window
  382.     @actor_command_window.active = false
  383.     @actor_command_window.visible = false
  384.   end
  385.   # 结束角色选择
  386.   def end_battler_select
  387.     @actor_window.dispose
  388.     @actor_window = nil
  389.     @help_window.visible = false
  390.     @actor_command_window.active = true
  391.     @actor_command_window.visible = true
  392.   end
  393.   # 刷新角色选择
  394.   def update_phase3_battler_select
  395.     @actor_window.visible = true
  396.     @actor_window.update
  397.     if Input.trigger?(Input::B)
  398.       $game_system.se_play($data_system.cancel_se)
  399.       end_battler_select
  400.       return
  401.     end
  402.     if Input.trigger?(Input::C)
  403.       actor_id = @actor_window.actor_id
  404.       if $game_party.get_actors_id.include?(actor_id) or
  405.          $game_actors[actor_id].dead? or
  406.          @changed_battler_id.include?(actor_id)
  407.         $game_system.se_play($data_system.buzzer_se)
  408.         return
  409.       end
  410.       $game_system.se_play($data_system.decision_se)
  411.       @active_battler.current_action.change_to_battler = actor_id
  412.       @changed_battler_id.push(actor_id)
  413.       end_battler_select
  414.       phase3_next_actor
  415.       return
  416.     end
  417.   end
  418.   # 行动方动画
  419.   def update_phase4_step3
  420.     if @active_battler.current_action.is_change_battler?
  421.       @animation1_id = AnimationChangeBattler
  422.       @target_battlers = []
  423.     end
  424.     # 行动方动画 (ID 为 0 的情况下是白色闪烁)
  425.     if @animation1_id == 0
  426.       @active_battler.white_flash = true
  427.     else
  428.       @active_battler.animation_id = @animation1_id
  429.       @active_battler.animation_hit = true
  430.     end
  431.     # 移至步骤 4
  432.     @phase4_step = 4
  433.   end
  434.   # 对象方动画
  435.   def update_phase4_step4
  436.     if @active_battler.current_action.is_change_battler?
  437.       actor1_id = @active_battler.current_action.change_to_battler
  438.       actor2_id = @active_battler.id
  439.       (0...$game_party.actors.size).each do |i|
  440.         if $game_party.actors[i].id == actor2_id
  441.           $game_party.change_actor(i,actor1_id)
  442.           @active_battler = $game_actors[actor1_id]
  443.           @status_window.refresh
  444.         end
  445.       end
  446.     end
  447.     # 对像方动画
  448.     for target in @target_battlers
  449.       target.animation_id = @animation2_id
  450.       target.animation_hit = (target.damage != "Miss")
  451.     end
  452.     # 限制动画长度、最低 8 帧
  453.     @wait_count = 8
  454.     # 移至步骤 5
  455.     @phase4_step = 5
  456.   end
  457.   # 公共事件
  458.   def update_phase4_step6
  459.     @target_battlers.each do |target|
  460.       if target.is_a?(Game_Actor) and target.dead? and
  461.          !$game_party.other_actors.all?{|actor|actor.dead?}
  462.         @actor_window = Window_Actor.new
  463.         @actor_window.index = 0
  464.         @actor_window.active = true
  465.         @actor_window.help_window = @help_window
  466.         actor_id = -1
  467.         loop do
  468.           Graphics.update
  469.           Input.update
  470.           @actor_window.update
  471.           if Input.trigger?(Input::C)
  472.             actor = $game_actors[@actor_window.actor_id]
  473.             if actor.dead? or
  474.                (@changed_battler_id.include?(actor.id) and
  475.                 target.current_action.change_to_battler != actor.id) or
  476.                $game_party.actors.include?(actor)
  477.               $game_system.se_play($data_system.buzzer_se)
  478.             else
  479.               actor_id = actor.id
  480.             end
  481.           end
  482.           break if actor_id >= 0
  483.         end
  484.         @actor_window.visible = false
  485.         @actor_window.dispose
  486.         @actor_window = nil
  487.         @help_window.visible = false
  488.         (0...$game_party.actors.size).each do |i|
  489.           if $game_party.actors[i].id == target.id
  490.             $game_party.change_actor(i,actor_id)
  491.             @status_window.refresh
  492.           end
  493.         end
  494.       end
  495.     end
  496.     # 清除强制行动对像的战斗者
  497.     $game_temp.forcing_battler = nil
  498.     # 公共事件 ID 有效的情况下
  499.     if @common_event_id > 0
  500.       # 设置事件
  501.       common_event = $data_common_events[@common_event_id]
  502.       $game_system.battle_interpreter.setup(common_event.list, 0)
  503.     end
  504.     # 移至步骤 1
  505.     @phase4_step = 1
  506.   end
  507. end

  508. class Window_MenuStatus
  509.   def refresh
  510.     self.contents.clear
  511.     @item_max = $game_party.actors.size
  512.     for i in 0...$game_party.actors.size
  513.       x = 4
  514.       y = i * 32
  515.       actor = $game_party.actors[i]
  516.       bitmap = RPG::Cache.character(actor.character_name,actor.character_hue)
  517.       rect = Rect.new(0,0,bitmap.width/4,31)
  518.       self.contents.blt(x+16-bitmap.width/8,y,bitmap,rect)
  519.       draw_actor_name(actor, x+36, y)
  520.       draw_actor_state(actor, x + 136,y)
  521.       draw_actor_hp(actor, x + 236, y,96)
  522.       draw_actor_sp(actor, x + 336, y,96)
  523.     end
  524.   end
  525.   def update_cursor_rect
  526.     super
  527.   end
  528. end
复制代码

评分

参与人数 4星屑 +1008 收起 理由
夕阳武士 + 200
px.凤翔九天 + 6 口袋的东西一定要加分。
stevenrock + 2 给分不多,仅表诚意
fux2 + 800 喵呜顶lim哥~

查看全部评分

Lv2.观梦者

铃铃塔的守护者

梦石
0
星屑
626
在线时间
961 小时
注册时间
2010-10-24
帖子
2768

贵宾

2
发表于 2010-12-14 22:19:14 | 只看该作者
没仔细看,但是大致看一下觉得很诱人啊...话说为啥不顺手在群组里发一份呢?谢了。

点评

其实你转吧……我有点懒……  发表于 2010-12-16 02:05

魔法麻将独立游戏制作中,欢迎热情的测试员与UI设计师合作开发~
回复 支持 反对

使用道具 举报

Lv5.捕梦者 (管理员)

老黄鸡

梦石
0
星屑
39665
在线时间
7484 小时
注册时间
2009-7-6
帖子
13483

开拓者贵宾

3
发表于 2010-12-15 13:41:26 | 只看该作者
拿回去试试~~~~
回复 支持 反对

使用道具 举报

Lv1.梦旅人

梦石
0
星屑
211
在线时间
905 小时
注册时间
2010-9-6
帖子
3229
4
发表于 2010-12-15 22:00:08 | 只看该作者
:D
真好用!和我使用的脚本都不冲突!感谢LZ!
回复 支持 反对

使用道具 举报

Lv1.梦旅人

梦石
0
星屑
49
在线时间
261 小时
注册时间
2010-9-17
帖子
737
5
发表于 2010-12-15 22:07:10 | 只看该作者
真的可以用?

点评

总感觉你有点废话  发表于 2010-12-18 17:44
回复 支持 反对

使用道具 举报

Lv1.梦旅人

梦石
0
星屑
290
在线时间
10 小时
注册时间
2010-12-10
帖子
1
6
发表于 2010-12-16 20:19:15 | 只看该作者
好东西拿回去学习学习
回复 支持 反对

使用道具 举报

Lv2.观梦者

虚構歪曲

梦石
0
星屑
309
在线时间
1194 小时
注册时间
2010-12-18
帖子
3928

贵宾

7
发表于 2010-12-18 15:12:20 | 只看该作者
好东西膜拜学习之
回复 支持 反对

使用道具 举报

Lv2.观梦者

梦石
0
星屑
301
在线时间
573 小时
注册时间
2005-10-27
帖子
1164
8
发表于 2011-4-19 14:09:32 | 只看该作者
我想请教怎么像口袋一样给战斗中登场过的人都分点经验值……

点评

嗯,其实这脚本不包含此功能,可以添加,要是更新了PM你。  发表于 2011-4-28 03:26
认真地猥琐,猥琐地认真
回复 支持 反对

使用道具 举报

Lv1.梦旅人

梦石
0
星屑
50
在线时间
40 小时
注册时间
2011-4-30
帖子
62
9
发表于 2011-4-30 13:33:25 | 只看该作者
:handshake

试试看看.
回复 支持 反对

使用道具 举报

Lv3.寻梦者

梦石
0
星屑
1239
在线时间
668 小时
注册时间
2009-11-11
帖子
2787
10
发表于 2011-4-30 15:02:49 | 只看该作者
哇,一出手就是如此神物,支持啊~~~~~~

嘿。嘿。嘿
回复 支持 反对

使用道具 举报

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

本版积分规则

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

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

GMT+8, 2024-4-26 11:45

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

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