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

Project1

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

请求达人帮忙整合脚本

 关闭 [复制链接]

Lv2.观梦者

梦石
0
星屑
908
在线时间
212 小时
注册时间
2006-10-8
帖子
293
跳转到指定楼层
1
发表于 2008-3-1 02:42:27 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

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

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

x
厄。。。。
厄。。。。。。
厄。。。。。。。
还是直接伸手好啦~~~{/pz}

关于神思大人的那个战斗真移位~~无知的我半天也没法整合RTAB的战斗系统进去~~哪位大哥行行好~帮帮小弟的忙吧~~帮我把彩虹神剑的或者RTAB整合进去。。我一定坚决做个良好论坛公民回报~~~


相关截图


工程发布贴:
http://rpg.blue/viewthread.php?tid=47215
版务信息:版主帮忙结贴~
版务信息:本贴由楼主自主结贴~

Lv2.观梦者

梦石
0
星屑
908
在线时间
212 小时
注册时间
2006-10-8
帖子
293
2
 楼主| 发表于 2008-3-1 05:01:29 | 只看该作者
{/dk}{/dk}再次恳求啊~~
我正在做一个游戏
不可缺少了RTAB中的即时伤害啊~~

或者只要帮我把那个整合出来就行了~~~
就是在动画中设置闪频真数来直接显示出打击的那个~~~~~~~
回复 支持 反对

使用道具 举报

Lv2.观梦者

梦石
0
星屑
908
在线时间
212 小时
注册时间
2006-10-8
帖子
293
3
 楼主| 发表于 2008-3-1 07:06:33 | 只看该作者
{/dk}对不起啊~我还是必须得顶~每5分钟看一下贴
系统信息:本贴由本区版主认可为正确答案,66RPG感谢您的热情解答~
回复 支持 反对

使用道具 举报

头像被屏蔽

Lv1.梦旅人 (禁止发言)

悔恨的天使

梦石
0
星屑
50
在线时间
0 小时
注册时间
2008-2-26
帖子
726
4
发表于 2008-3-1 07:22:37 | 只看该作者
提示: 作者被禁止或删除 内容自动屏蔽
签名被屏蔽
回复 支持 反对

使用道具 举报

Lv2.观梦者

梦石
0
星屑
908
在线时间
212 小时
注册时间
2006-10-8
帖子
293
5
 楼主| 发表于 2008-3-1 07:25:49 | 只看该作者
{/fd}...................
回复 支持 反对

使用道具 举报

Lv2.观梦者

梦石
0
星屑
908
在线时间
212 小时
注册时间
2006-10-8
帖子
293
6
 楼主| 发表于 2008-3-1 18:26:37 | 只看该作者
哎..没人帮
版主对此帖的评论:『= =请不要连续自顶』,积分『-10』。这些被扣积分的一半会用于对本帖正确答案的悬赏。
回复 支持 反对

使用道具 举报

Lv2.观梦者

梦石
0
星屑
908
在线时间
212 小时
注册时间
2006-10-8
帖子
293
7
 楼主| 发表于 2008-3-1 18:28:25 | 只看该作者
从doranikofu那得到一个彩虹神剑和真移动无冲突的~~~
但是却没有实现按闪烁进行攻击的功能~~

谁帮我改改吧~~~~~~~我五体投地啦~~~~~~




=begin
==============================================================================

彩虹神剑(伤害分段显示)显示总伤害版 v1.0b

==============================================================================

彩虹神剑 by 柳柳
显示总伤害修改 by 叶子

==============================================================================
=end
# 核心的说明:
# damage_pop 不再附带damage()的功能,这个放到animation里面去了

module RPG
#--------------------------------------------------------------------------
# ● 常量设定
#--------------------------------------------------------------------------
# 是否显示总伤害
SHOW_TOTAL_DAMAGE = true
# 角色受攻击时是否跳一下
BATTLER_JUMP = false

class Animation
    def name
      return @name.split(/,/)[0]
    end
   
    def flame
      return @name.split(/,/)[1].to_i
    end
  
  end
  
class Sprite < ::Sprite
   #==========================================
   # 修改说明:
   # @flash_shake用来制作挨打时候跳跃
   # @_damage    用来记录每次打击之后弹出数字
   # @_total_damage 记录总伤害
   # @_total_damage_duration 总伤害持续帧
   #==========================================
   #alias 66RPG_rainbow_initialize : initialize
   def initialize(viewport = nil)
     #66RPG_rainbow_initialize(viewport)
     super(viewport)
     @_whiten_duration = 0
     @_appear_duration = 0
     @_escape_duration = 0
     @_collapse_duration = 0
     @_damage_duration = 0
     @_animation_duration = 0
     @_blink = false
     # 挨打时候跳跃
     @flash_shake = 0
     # 伤害记录数组
     @_damage = []
     # 总伤害数字
     @_total_damage = 0
     # 总伤害持续帧
     @_total_damage_duration = 0
   end
   def damage(value, critical)
     if value.is_a?(Numeric)
       damage_string = value.abs.to_s
     else
       damage_string = value.to_s
     end
     bitmap = Bitmap.new(200, 80)
     bitmap.font.name = "Arial Black"
     bitmap.font.size = 32
      # 伤害值是数值的情况下
      if value.is_a?(Numeric)
        # 分割伤害值字符串
        damage_array = damage_string.scan(/./)
        damage_x = 81 - damage_string.size * 9
        # 伤害值为负的情况下
        if value < 0
          # 调用回复数字表
          rect_y = 36
        else
          # 调用伤害数字表
          rect_y = 0
        end
        # 循环伤害值字符串

       for char in damage_array
         number = char.to_i
          # 显示伤害数字
         if $fff_SPdamage != 2
          # bitmap.blt(damage_x, 32, RPG::Cache.picture("Damage"),
          # Rect.new(number * 18, rect_y, 18, 32))
          # damage_x += 18
           bitmap.blt(damage_x, 36, RPG::Cache.picture("Damage"),
           Rect.new(number * 26, rect_y, 22, 36))
           damage_x += 26
         else
          bitmap.blt(damage_x, 0, RPG::Cache.picture("Damagesp"),
           Rect.new(number * 26, rect_y, 22, 36))
           damage_x += 26
         end# 伤害值不是数值的情况
       end
#       $fff_SPdamage = 0 #清除SP显示
      else
        # 如果伤害值不是 Miss
        unless value == "Miss"
          # 系统默认描画字符串
          bitmap.font.color.set(0, 0, 0)
          bitmap.draw_text(-1, 27, 162, 36, damage_string, 1)
          bitmap.draw_text(+1, 27, 162, 36, damage_string, 1)
          bitmap.draw_text(-1, 29, 162, 36, damage_string, 1)
          bitmap.draw_text(+1, 29, 162, 36, damage_string, 1)
          bitmap.font.color.set(255, 255, 255)
          bitmap.draw_text(0, 28, 162, 36, damage_string, 1)
        # Miss 的情况下
        else
          # 显示未击中图画
          bitmap.blt(36, 28, RPG::Cache.picture("Damage"), Rect.new(130, 72, 130, 36))
        end
      end
      # 会心一击标志打开的情况
      if critical
        # 显示会心一击图画
      bitmap.blt(36, 0, RPG::Cache.picture("Damage"), Rect.new(0, 72, 130, 36))
      $game_system.se_play2("Clip10")#,80,100)
      $game_screen.start_flash(Color.new(255,255,255),10)
      end
     @_damage_sprite = ::Sprite.new(self.viewport)
     @_damage_sprite.bitmap = bitmap
     @_damage_sprite.ox = 80
     @_damage_sprite.oy = 20
     @_damage_sprite.x = self.x
     @_damage_sprite.y = self.y - self.oy / 2
     @_damage_sprite.z = 5000
     @_damage_duration = 40
     #=======================================
     # 修改:推入新的伤害
     #=======================================
     @_damage.push([@_damage_sprite,@_damage_duration-10,0, rand(30) - 15, rand(3)])
     # 总伤害处理
     make_total_damage(value)
   end

   #----动画修正----------------------------------------------------------------------
    def animation_set_sprites(sprites, cell_data, position)
      for i in 0..15
        sprite = sprites
        pattern = cell_data[i, 0]
        if sprite == nil or pattern == nil or pattern == -1
          sprite.visible = false if sprite != nil
          next
        end
        sprite.visible = true
        sprite.src_rect.set(pattern % 5 * 192, pattern / 5 * 192, 192, 192)
        if position == 3
            sprite.x = 320
            sprite.y = 160
            sprite.z = 2000
        else
          sprite.x = self.x - self.ox + self.src_rect.width / 2
          sprite.y = self.y - self.oy + self.src_rect.height / 2
          sprite.y -= self.src_rect.height / 4 if position == 0
          sprite.y += self.src_rect.height / 4 if position == 2
          sprite.z = self.z + 1
        end
        sprite.x += cell_data[i, 1]
        sprite.y += cell_data[i, 2]
         #sprite.z = 2000
         #sprite.z =self.z + 1
        sprite.ox = 96
        sprite.oy = 96
        sprite.zoom_x = cell_data[i, 3] / 100.0
        sprite.zoom_y = cell_data[i, 3] / 100.0
        sprite.angle = cell_data[i, 4]
        sprite.mirror = (cell_data[i, 5] == 1)
        sprite.opacity = cell_data[i, 6] * self.opacity / 255.0
        sprite.blend_type = cell_data[i, 7]
      end
    end
   #--------------------------------------------------------------------------
   # ● 总伤害处理
   #--------------------------------------------------------------------------
   def make_total_damage(value)
#     if value.is_a?(Numeric) and SHOW_TOTAL_DAMAGE and (@_animation.flame == 1)
#       @_total_damage += value
#     else
#       return
#     end
     if value.is_a?(Numeric) and SHOW_TOTAL_DAMAGE
       @_total_damage += value
     else
       return
     end
     bitmap = Bitmap.new(300, 150)
     bitmap.font.name = "Arial Black"
     bitmap.font.size = 48
     bitmap.font.color.set(0, 0, 0)
     bitmap.draw_text(+2, 12+2, 160, 36, @_total_damage.abs.to_s, 1)
     if @_total_damage < 0
       bitmap.font.color.set(80, 255, 00)
     else
       bitmap.font.color.set(255, 140, 0)
     end
     bitmap.draw_text(0, 12, 160, 36, @_total_damage.abs.to_s, 1)
     if @_total_damage_sprite.nil?
       @_total_damage_sprite = ::Sprite.new(self.viewport)
       @_total_damage_sprite.ox = 80
       @_total_damage_sprite.oy = 20
       @_total_damage_sprite.z = 3000
     end
     @_total_damage_sprite.bitmap = bitmap
     @_total_damage_sprite.zoom_x = 1.5
     @_total_damage_sprite.zoom_y = 1.5
     @_total_damage_sprite.x = self.x
     @_total_damage_sprite.y = self.y  - self.oy / 2 - 64
     @_total_damage_sprite.z = 3001
     @_total_damage_duration = 80
   end
   def animation(animation, hit, battler_damage="", battler_critical=false)
     dispose_animation      
     #=======================================
     # 修改:记录伤害和critical
     #=======================================
     @battler_damage = battler_damage
     @battler_critical = battler_critical
     @_animation = animation
     return if @_animation == nil
     @_animation_hit = hit
     @_animation_duration = @_animation.frame_max
     animation_name = @_animation.animation_name
     animation_hue = @_animation.animation_hue
     bitmap = RPG::Cache.animation(animation_name, animation_hue)
     #=======================================
     # 修改:计算总闪光权限值
     #=======================================
     for timing in @_animation.timings
       quanzhong = animation_process_timing(timing, @_animation_hit,true)
       @all_quanzhong += quanzhong
       # 记录最后一次闪光
       @_last_frame = timing.frame if quanzhong != 0
     end      
     if @@_reference_count.include?(bitmap)
       @@_reference_count[bitmap] += 1
     else
       @@_reference_count[bitmap] = 1
     end
     #=======================================
     # 修改:行动方动画不显示伤害
     #=======================================
     if $scene.is_a?(Scene_Battle)
       if $scene.animation1_id == @battler.animation_id
         @battler_damage = ""
       end
     end
     @_animation_sprites = []
     if @_animation.position != 3 or not @@_animations.include?(animation)
       for i in 0..15
         sprite = ::Sprite.new(self.viewport)
         sprite.bitmap = bitmap
         sprite.visible = false
         @_animation_sprites.push(sprite)
       end
       unless @@_animations.include?(animation)
         @@_animations.push(animation)
       end
     end
     update_animation
   end
   #=======================================
   # 修改:更换清除伤害的算法,以防万一
   #       本内容在脚本中没有使用过
   #=======================================
   def dispose_damage
     for damage in @_damage.reverse
       damage[0].bitmap.dispose
       damage[0].dispose
       @_damage.delete(damage)
     end
     @_total_damage = 0
     @_last_frame = -1
     if @_total_damage_sprite != nil
       @_total_damage_duration = 0
       @_total_damage_sprite.bitmap.dispose
       @_total_damage_sprite.dispose
       @_total_damage_sprite = nil
     end
   end
   def dispose_animation
     #=======================================
     # 修改:清除记录的伤害,清除权重记录
     #=======================================
     @battler_damage = nil
     @battler_critical = nil
     @all_quanzhong = 1
     @_total_damage = 0
     @_last_frame = -1
     if @_animation_sprites != nil
       sprite = @_animation_sprites[0]
       if sprite != nil
         @@_reference_count[sprite.bitmap] -= 1
         if @@_reference_count[sprite.bitmap] == 0
           sprite.bitmap.dispose
         end
       end
       for sprite in @_animation_sprites
         sprite.dispose
       end
       @_animation_sprites = nil
       @_animation = nil
     end
   end
   def update
     super
     if @_whiten_duration > 0
       @_whiten_duration -= 1
       self.color.alpha = 128 - (16 - @_whiten_duration) * 10
     end
     if @_appear_duration > 0
       @_appear_duration -= 1
       self.opacity = (16 - @_appear_duration) * 16
     end
     if @_escape_duration > 0
       @_escape_duration -= 1
       self.opacity = 256 - (32 - @_escape_duration) * 10
     end
     if @_collapse_duration > 0
       @_collapse_duration -= 1
       self.opacity = 256 - (48 - @_collapse_duration) * 6
     end
     #=======================================
     # 修改:更新算法,更新弹出
     #=======================================
     if @_damage_duration > 0
       @_damage_duration -= 1
       for damage in @_damage
         damage[0].x = self.x + self.viewport.rect.x -
                       self.ox + self.src_rect.width / 2 +
                       (40 - damage[1]) * damage[3] / 10
         damage[0].y -= damage[4]+damage[1]/10
         damage[0].opacity = damage[1]*20
         damage[1] -= 1
         if damage[1]==0
           damage[0].bitmap.dispose
           damage[0].dispose
           @_damage.delete(damage)
           next
         end
       end
     end
     #=======================================
     # 添加:弹出总伤害
     #=======================================
     if @_total_damage_duration > 0
       @_total_damage_duration -= 1
       @_total_damage_sprite.y -= 1 if @_total_damage_duration % 2 == 0
       if @_total_damage_sprite.zoom_x > 1.0
         @_total_damage_sprite.zoom_x -= 0.05
       end
       if @_total_damage_sprite.zoom_y > 1.0
         @_total_damage_sprite.zoom_y -= 0.05
       end
       @_total_damage_sprite.opacity = 256 - (24 - @_total_damage_duration) * 16
       if @_total_damage_duration <= 0
         @_total_damage = 0
         @_total_damage_duration = 0
         @_total_damage_sprite.bitmap.dispose
         @_total_damage_sprite.dispose
         @_total_damage_sprite = nil
       end
     end
     #=======================================
     if @_animation != nil and (Graphics.frame_count % 2 == 0)
       @_animation_duration -= 1
       update_animation
     end
     if @_loop_animation != nil and (Graphics.frame_count % 2 == 0)
       update_loop_animation
       @_loop_animation_index += 1
       @_loop_animation_index %= @_loop_animation.frame_max
     end
     if @_blink
       @_blink_count = (@_blink_count + 1) % 32
       if @_blink_count < 16
         alpha = (16 - @_blink_count) * 6
       else
         alpha = (@_blink_count - 16) * 6
       end
       self.color.set(255, 255, 255, alpha)
     end
     @@_animations.clear
   end
   def update_animation
     if @_animation_duration > 0
       frame_index = @_animation.frame_max - @_animation_duration
       cell_data = @_animation.frames[frame_index].cell_data
       position = @_animation.position
       animation_set_sprites(@_animation_sprites, cell_data, position)
       #=======================================
       # 修改:弹出伤害,权重计算
       #=======================================
       for timing in @_animation.timings
         if timing.frame == frame_index
           t = 1.0 * animation_process_timing(timing, @_animation_hit)            
           #p t,"当前权重", @all_quanzhong,"总权重"
           if @battler_damage.is_a?(Numeric) and t != 0
             t *= @battler_damage
             t /= @all_quanzhong
             t = @battler_damage  if (@_animation.flame != 1)
             #p t,"当前伤害",@battler_damage,"总伤害"
             t = t.to_i
             # 最后一次闪光的话,伤害修正
             if frame_index == @_last_frame
               @_total_damage = @battler_damage - t
             end
             #p t,@battler_damage,@all_quanzhong
             damage(t,@battler_critical)
           # 防止重复播放miss
           elsif !@battler_damage.is_a?(Numeric) and timing.flash_scope != 0
             damage(@battler_damage,@battler_critical)
           end
         end
       end
     else
       dispose_animation
     end
   end
   #=======================================
   # 修改:敌人跳跃的功能 + 添加返回数值
   #=======================================
    def animation_process_timing(timing, hit,dontflash=false)
      if (timing.condition == 0) or
         (timing.condition == 1 and hit == true) or
         (timing.condition == 2 and hit == false)
        unless dontflash
          if timing.se.name != ""
            se = timing.se
            $game_system.se_play(se)
          end
        end
        case timing.flash_scope
        when 1
          unless dontflash
            self.flash(timing.flash_color, timing.flash_duration * 2)
            if @_total_damage >0
              @flash_shake_switch = true
              @flash_shake = 10
            end
          end
          return timing.flash_color.alpha * timing.flash_duration
        when 2
          unless dontflash
            if self.viewport != nil
              self.viewport.flash(timing.flash_color, timing.flash_duration * 2)
              return timing.flash_color.alpha * timing.flash_duration
            end
          end
        when 3
          unless dontflash
            self.flash(nil, timing.flash_duration * 2)
          end
          return timing.flash_color.alpha * timing.flash_duration
        end
      end      
      return 0
    end   
end
end

#==============================================================================
# ■ Scene_Battle
#------------------------------------------------------------------------------
#  处理战斗画面的类。
#==============================================================================

class Scene_Battle
#--------------------------------------------------------------------------
# ● 定义实例变量
#--------------------------------------------------------------------------
attr_reader   :animation1_id                    # 行动方动画ID
end
回复 支持 反对

使用道具 举报

Lv2.观梦者

梦石
0
星屑
908
在线时间
212 小时
注册时间
2006-10-8
帖子
293
8
 楼主| 发表于 2008-3-1 21:47:27 | 只看该作者
{/ll}{/ll}{/ll}{/ll}{/ll}{/ll}{/ll}
回复 支持 反对

使用道具 举报

Lv1.梦旅人

綾川司の姫様<

梦石
0
星屑
50
在线时间
796 小时
注册时间
2007-12-20
帖子
4520

贵宾第3届短篇游戏大赛R剧及RMTV组亚军

9
发表于 2008-3-1 22:00:58 | 只看该作者
纯表情+自顶6次……

如果我是BZ你现在已经在监狱里休息了。= =

生命即是责任。自己即是世界。
回复 支持 反对

使用道具 举报

头像被屏蔽

Lv1.梦旅人 (禁止发言)

悔恨的天使

梦石
0
星屑
50
在线时间
0 小时
注册时间
2008-2-26
帖子
726
10
发表于 2008-3-1 22:48:04 | 只看该作者
提示: 作者被禁止或删除 内容自动屏蔽
回复 支持 反对

使用道具 举报

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

本版积分规则

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

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

GMT+8, 2024-11-30 01:37

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

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