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

Project1

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

[寻找脚本]配合45度战斗,循环动画在角色行动时消失。

 关闭 [复制链接]

Lv1.梦旅人

Dancer-

梦石
0
星屑
105
在线时间
78 小时
注册时间
2006-5-15
帖子
3306
跳转到指定楼层
1
发表于 2007-7-14 23:43:48 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

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

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

x
过去见过的脚本...我想到主站上去找..结果这几天机器+网通RP,上6R都困难。
那位有时间希望把原脚本直接粘贴上来..谢谢。
版务信息:本贴由楼主自主结贴~
一个机缘巧合后,被改变了人生的第八年。
养着两只猫,可是我对猫过敏。
为了那终将到来的一天。

Lv1.梦旅人

Dancer-

梦石
0
星屑
105
在线时间
78 小时
注册时间
2006-5-15
帖子
3306
2
 楼主| 发表于 2007-7-14 23:43:48 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

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

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

x
过去见过的脚本...我想到主站上去找..结果这几天机器+网通RP,上6R都困难。
那位有时间希望把原脚本直接粘贴上来..谢谢。
版务信息:本贴由楼主自主结贴~
一个机缘巧合后,被改变了人生的第八年。
养着两只猫,可是我对猫过敏。
为了那终将到来的一天。

Lv2.观梦者

梦石
0
星屑
451
在线时间
127 小时
注册时间
2006-11-2
帖子
1200
3
发表于 2007-7-14 23:59:17 | 只看该作者
  1. module RPG
  2. class Sprite < ::Sprite
  3.   def animation_set_sprites(sprites, cell_data, position, invisible = false)
  4.     if invisible
  5.       for i in 0..15
  6.         sprites[i].visible = false
  7.       end
  8.       return
  9.     end
  10.     for i in 0..15
  11.       sprite = sprites[i]
  12.       pattern = cell_data[i, 0]
  13.       if sprite == nil or pattern == nil or pattern == -1
  14.         sprite.visible = false if sprite != nil
  15.         next
  16.       end
  17.       sprite.visible = true
  18.       sprite.src_rect.set(pattern % 5 * 192, pattern / 5 * 192, 192, 192)
  19.       if position == 3
  20.         if self.viewport != nil
  21.           sprite.x = self.viewport.rect.width / 2
  22.           sprite.y = self.viewport.rect.height - 160
  23.         else
  24.           sprite.x = 320
  25.           sprite.y = 240
  26.         end
  27.       else
  28.         sprite.x = self.x - self.ox + self.src_rect.width / 2
  29.         sprite.y = self.y - self.oy + self.src_rect.height / 2
  30.         sprite.y -= self.src_rect.height / 4 if position == 0
  31.         sprite.y += self.src_rect.height / 4 if position == 2
  32.       end
  33.       sprite.x += cell_data[i, 1]
  34.       sprite.y += cell_data[i, 2]
  35.       sprite.z = 2000
  36.       sprite.ox = 96
  37.       sprite.oy = 96
  38.       sprite.zoom_x = cell_data[i, 3] / 100.0
  39.       sprite.zoom_y = cell_data[i, 3] / 100.0
  40.       sprite.angle = cell_data[i, 4]
  41.       sprite.mirror = (cell_data[i, 5] == 1)
  42.       sprite.opacity = cell_data[i, 6] * self.opacity / 255.0
  43.       sprite.blend_type = cell_data[i, 7]
  44.     end
  45.   end
  46.   def update_loop_animation
  47.     if @_animation_duration > 0
  48.       frame_index = @_loop_animation_index
  49.       cell_data = @_loop_animation.frames[frame_index].cell_data
  50.       position = @_loop_animation.position
  51.       animation_set_sprites(@_loop_animation_sprites, cell_data, position,true)
  52.     else
  53.       frame_index = @_loop_animation_index
  54.       cell_data = @_loop_animation.frames[frame_index].cell_data
  55.       position = @_loop_animation.position
  56.       animation_set_sprites(@_loop_animation_sprites, cell_data, position)
  57.       for timing in @_loop_animation.timings
  58.         if timing.frame == frame_index
  59.           animation_process_timing(timing, true)
  60.         end
  61.       end
  62.     end
  63.   end
  64. end
  65. end

复制代码

系统信息:本贴由楼主认可为正确答案,66RPG感谢您的热情解答~
和记忆一起封存着的ID...
回复 支持 反对

使用道具 举报

Lv2.观梦者

湛蓝的深海子<

梦石
0
星屑
610
在线时间
190 小时
注册时间
2006-12-5
帖子
1105

贵宾

4
发表于 2007-7-15 00:01:56 | 只看该作者
“Main”上插入这个脚本。
  1. module RPG
  2.   class Sprite < ::Sprite
  3.     @@_animations = []
  4.     @@_reference_count = {}
  5.     def initialize(viewport = nil)
  6.       super(viewport)
  7.       @_whiten_duration = 0
  8.       @_appear_duration = 0
  9.       @_escape_duration = 0
  10.       @_collapse_duration = 0
  11.       @_damage_duration = 0
  12.       @_animation_duration = 0
  13.       @_blink = false
  14.     end
  15.     def dispose
  16.       dispose_damage
  17.       dispose_animation
  18.       dispose_loop_animation
  19.       super
  20.     end
  21.     def whiten
  22.       self.blend_type = 0
  23.       self.color.set(255, 255, 255, 128)
  24.       self.opacity = 255
  25.       @_whiten_duration = 16
  26.       @_appear_duration = 0
  27.       @_escape_duration = 0
  28.       @_collapse_duration = 0
  29.     end
  30.     def appear
  31.       self.blend_type = 0
  32.       self.color.set(0, 0, 0, 0)
  33.       self.opacity = 0
  34.       @_appear_duration = 16
  35.       @_whiten_duration = 0
  36.       @_escape_duration = 0
  37.       @_collapse_duration = 0
  38.     end
  39.     def escape
  40.       self.blend_type = 0
  41.       self.color.set(0, 0, 0, 0)
  42.       self.opacity = 255
  43.       @_escape_duration = 32
  44.       @_whiten_duration = 0
  45.       @_appear_duration = 0
  46.       @_collapse_duration = 0
  47.     end
  48.     def collapse
  49.       self.blend_type = 1
  50.       self.color.set(255, 64, 64, 255)
  51.       self.opacity = 255
  52.       @_collapse_duration = 48
  53.       @_whiten_duration = 0
  54.       @_appear_duration = 0
  55.       @_escape_duration = 0
  56.     end
  57.     def damage(value, critical)
  58.       dispose_damage
  59.       if value.is_a?(Numeric)
  60.         damage_string = value.abs.to_s
  61.       else
  62.         damage_string = value.to_s
  63.       end
  64.       bitmap = Bitmap.new(160, 48)
  65.       bitmap.font.name = "Arial Black"
  66.       bitmap.font.size = 32
  67.       bitmap.font.color.set(0, 0, 0)
  68.       bitmap.draw_text(-1, 12-1, 160, 36, damage_string, 1)
  69.       bitmap.draw_text(+1, 12-1, 160, 36, damage_string, 1)
  70.       bitmap.draw_text(-1, 12+1, 160, 36, damage_string, 1)
  71.       bitmap.draw_text(+1, 12+1, 160, 36, damage_string, 1)
  72.       if value.is_a?(Numeric) and value < 0
  73.         bitmap.font.color.set(176, 255, 144)
  74.       else
  75.         bitmap.font.color.set(255, 255, 255)
  76.       end
  77.       bitmap.draw_text(0, 12, 160, 36, damage_string, 1)
  78.       if critical
  79.         bitmap.font.size = 20
  80.         bitmap.font.color.set(0, 0, 0)
  81.         bitmap.draw_text(-1, -1, 160, 20, "CRITICAL", 1)
  82.         bitmap.draw_text(+1, -1, 160, 20, "CRITICAL", 1)
  83.         bitmap.draw_text(-1, +1, 160, 20, "CRITICAL", 1)
  84.         bitmap.draw_text(+1, +1, 160, 20, "CRITICAL", 1)
  85.         bitmap.font.color.set(255, 255, 255)
  86.         bitmap.draw_text(0, 0, 160, 20, "CRITICAL", 1)
  87.       end
  88.       @_damage_sprite = ::Sprite.new(self.viewport)
  89.       @_damage_sprite.bitmap = bitmap
  90.       @_damage_sprite.ox = 80
  91.       @_damage_sprite.oy = 20
  92.       @_damage_sprite.x = self.x
  93.       @_damage_sprite.y = self.y - self.oy / 2
  94.       @_damage_sprite.z = 3000
  95.       @_damage_duration = 40
  96.     end
  97.     def animation(animation, hit)
  98.       dispose_animation
  99.       @_animation = animation
  100.       return if @_animation == nil
  101.       @_animation_hit = hit
  102.       @_animation_duration = @_animation.frame_max
  103.       animation_name = @_animation.animation_name
  104.       animation_hue = @_animation.animation_hue
  105.       bitmap = RPG::Cache.animation(animation_name, animation_hue)
  106.       if @@_reference_count.include?(bitmap)
  107.         @@_reference_count[bitmap] += 1
  108.       else
  109.         @@_reference_count[bitmap] = 1
  110.       end
  111.       @_animation_sprites = []
  112.       if @_animation.position != 3 or not @@_animations.include?(animation)
  113.         for i in 0..15
  114.           sprite = ::Sprite.new(self.viewport)
  115.           sprite.bitmap = bitmap
  116.           sprite.visible = false
  117.           @_animation_sprites.push(sprite)
  118.         end
  119.         unless @@_animations.include?(animation)
  120.           @@_animations.push(animation)
  121.         end
  122.       end
  123.       update_animation
  124.     end
  125.     def loop_animation(animation)
  126.       return if animation == @_loop_animation
  127.       dispose_loop_animation
  128.       @_loop_animation = animation
  129.       return if @_loop_animation == nil
  130.       @_loop_animation_index = 0
  131.       animation_name = @_loop_animation.animation_name
  132.       animation_hue = @_loop_animation.animation_hue
  133.       bitmap = RPG::Cache.animation(animation_name, animation_hue)
  134.       if @@_reference_count.include?(bitmap)
  135.         @@_reference_count[bitmap] += 1
  136.       else
  137.         @@_reference_count[bitmap] = 1
  138.       end
  139.       @_loop_animation_sprites = []
  140.       for i in 0..15
  141.         sprite = ::Sprite.new(self.viewport)
  142.         sprite.bitmap = bitmap
  143.         sprite.visible = false
  144.         @_loop_animation_sprites.push(sprite)
  145.       end
  146.       update_loop_animation
  147.     end
  148.     def dispose_damage
  149.       if @_damage_sprite != nil
  150.         @_damage_sprite.bitmap.dispose
  151.         @_damage_sprite.dispose
  152.         @_damage_sprite = nil
  153.         @_damage_duration = 0
  154.       end
  155.     end
  156.     def dispose_animation
  157.       if @_animation_sprites != nil
  158.         sprite = @_animation_sprites[0]
  159.         if sprite != nil
  160.           @@_reference_count[sprite.bitmap] -= 1
  161.           if @@_reference_count[sprite.bitmap] == 0
  162.             sprite.bitmap.dispose
  163.           end
  164.         end
  165.         for sprite in @_animation_sprites
  166.           sprite.dispose
  167.         end
  168.         @_animation_sprites = nil
  169.         @_animation = nil
  170.       end
  171.     end
  172.     def dispose_loop_animation
  173.       if @_loop_animation_sprites != nil
  174.         sprite = @_loop_animation_sprites[0]
  175.         if sprite != nil
  176.           @@_reference_count[sprite.bitmap] -= 1
  177.           if @@_reference_count[sprite.bitmap] == 0
  178.             sprite.bitmap.dispose
  179.           end
  180.         end
  181.         for sprite in @_loop_animation_sprites
  182.           sprite.dispose
  183.         end
  184.         @_loop_animation_sprites = nil
  185.         @_loop_animation = nil
  186.       end
  187.     end
  188.     def blink_on
  189.       unless @_blink
  190.         @_blink = true
  191.         @_blink_count = 0
  192.       end
  193.     end
  194.     def blink_off
  195.       if @_blink
  196.         @_blink = false
  197.         self.color.set(0, 0, 0, 0)
  198.       end
  199.     end
  200.     def blink?
  201.       @_blink
  202.     end
  203.     def effect?
  204.       @_whiten_duration > 0 or
  205.       @_appear_duration > 0 or
  206.       @_escape_duration > 0 or
  207.       @_collapse_duration > 0 or
  208.       @_damage_duration > 0 or
  209.       @_animation_duration > 0
  210.     end
  211.     def update
  212.       super
  213.       if @_whiten_duration > 0
  214.         @_whiten_duration -= 1
  215.         self.color.alpha = 128 - (16 - @_whiten_duration) * 10
  216.       end
  217.       if @_appear_duration > 0
  218.         @_appear_duration -= 1
  219.         self.opacity = (16 - @_appear_duration) * 16
  220.       end
  221.       if @_escape_duration > 0
  222.         @_escape_duration -= 1
  223.         self.opacity = 256 - (32 - @_escape_duration) * 10
  224.       end
  225.       if @_collapse_duration > 0
  226.         @_collapse_duration -= 1
  227.         self.opacity = 256 - (48 - @_collapse_duration) * 6
  228.       end
  229.       if @_damage_duration > 0
  230.         @_damage_duration -= 1
  231.         case @_damage_duration
  232.         when 38..39
  233.           @_damage_sprite.y -= 4
  234.         when 36..37
  235.           @_damage_sprite.y -= 2
  236.         when 34..35
  237.           @_damage_sprite.y += 2
  238.         when 28..33
  239.           @_damage_sprite.y += 4
  240.         end
  241.         @_damage_sprite.opacity = 256 - (12 - @_damage_duration) * 32
  242.         if @_damage_duration == 0
  243.           dispose_damage
  244.         end
  245.       end
  246.       if @_animation != nil and (Graphics.frame_count % 2 == 0)
  247.         @_animation_duration -= 1
  248.         update_animation
  249.       end
  250.       if @_loop_animation != nil and (Graphics.frame_count % 2 == 0)
  251.         update_loop_animation
  252.         @_loop_animation_index += 1
  253.         @_loop_animation_index %= @_loop_animation.frame_max
  254.       end
  255.       if @_blink
  256.         @_blink_count = (@_blink_count + 1) % 32
  257.         if @_blink_count < 16
  258.           alpha = (16 - @_blink_count) * 6
  259.         else
  260.           alpha = (@_blink_count - 16) * 6
  261.         end
  262.         self.color.set(255, 255, 255, alpha)
  263.       end
  264.       @@_animations.clear
  265.     end
  266.     def update_animation
  267.       if @_animation_duration > 0
  268.         frame_index = @_animation.frame_max - @_animation_duration
  269.         cell_data = @_animation.frames[frame_index].cell_data
  270.         position = @_animation.position
  271.         animation_set_sprites(@_animation_sprites, cell_data, position)
  272.         for timing in @_animation.timings
  273.           if timing.frame == frame_index
  274.             animation_process_timing(timing, @_animation_hit)
  275.           end
  276.         end
  277.       else
  278.         dispose_animation
  279.       end
  280.     end
  281.   ###########################################################################
  282.     def update_loop_animation
  283.       if @_animation_duration > 0
  284.         frame_index = @_loop_animation_index
  285.         cell_data = @_loop_animation.frames[frame_index].cell_data
  286.         position = @_loop_animation.position
  287.         animation_set_sprites(@_loop_animation_sprites, cell_data, position, rpwt = true)
  288.       else
  289.         frame_index = @_loop_animation_index
  290.         cell_data = @_loop_animation.frames[frame_index].cell_data
  291.         position = @_loop_animation.position
  292.         animation_set_sprites(@_loop_animation_sprites, cell_data, position, rpwt = false)
  293.         for timing in @_loop_animation.timings
  294.           if timing.frame == frame_index
  295.             animation_process_timing(timing, true)
  296.           end
  297.         end
  298.       end
  299.     end
  300.     def animation_set_sprites(sprites, cell_data, position, rpwt = false)
  301.       if rpwt != false
  302.         for i in 0..15
  303.           sprites[i].visible = false
  304.         end
  305.         return
  306.       end
  307.   ###########################################################################
  308.       for i in 0..15
  309.         sprite = sprites[i]
  310.         pattern = cell_data[i, 0]
  311.         if sprite == nil or pattern == nil or pattern == -1
  312.           sprite.visible = false if sprite != nil
  313.           next
  314.         end
  315.         sprite.visible = true
  316.         sprite.src_rect.set(pattern % 5 * 192, pattern / 5 * 192, 192, 192)
  317.         if position == 3
  318.           if self.viewport != nil
  319.             sprite.x = self.viewport.rect.width / 2
  320.             sprite.y = self.viewport.rect.height - 160
  321.           else
  322.             sprite.x = 320
  323.             sprite.y = 240
  324.           end
  325.         else
  326.           sprite.x = self.x - self.ox + self.src_rect.width / 2
  327.           sprite.y = self.y - self.oy + self.src_rect.height / 2
  328.           sprite.y -= self.src_rect.height / 4 if position == 0
  329.           sprite.y += self.src_rect.height / 4 if position == 2
  330.         end
  331.         sprite.x += cell_data[i, 1]
  332.         sprite.y += cell_data[i, 2]
  333.         sprite.z = 2000
  334.         sprite.ox = 96
  335.         sprite.oy = 96
  336.         sprite.zoom_x = cell_data[i, 3] / 100.0
  337.         sprite.zoom_y = cell_data[i, 3] / 100.0
  338.         sprite.angle = cell_data[i, 4]
  339.         sprite.mirror = (cell_data[i, 5] == 1)
  340.         sprite.opacity = cell_data[i, 6] * self.opacity / 255.0
  341.         sprite.blend_type = cell_data[i, 7]
  342.       end
  343.     end
  344.     def animation_process_timing(timing, hit)
  345.       if (timing.condition == 0) or
  346.          (timing.condition == 1 and hit == true) or
  347.          (timing.condition == 2 and hit == false)
  348.         if timing.se.name != ""
  349.           se = timing.se
  350.           Audio.se_play("Audio/SE/" + se.name, se.volume, se.pitch)
  351.         end
  352.         case timing.flash_scope
  353.         when 1
  354.           self.flash(timing.flash_color, timing.flash_duration * 2)
  355.         when 2
  356.           if self.viewport != nil
  357.             self.viewport.flash(timing.flash_color, timing.flash_duration * 2)
  358.           end
  359.         when 3
  360.           self.flash(nil, timing.flash_duration * 2)
  361.         end
  362.       end
  363.     end
  364.     def x=(x)
  365.       sx = x - self.x
  366.       if sx != 0
  367.         if @_animation_sprites != nil
  368.           for i in 0..15
  369.             @_animation_sprites[i].x += sx
  370.           end
  371.         end
  372.         if @_loop_animation_sprites != nil
  373.           for i in 0..15
  374.             @_loop_animation_sprites[i].x += sx
  375.           end
  376.         end
  377.       end
  378.       super
  379.     end
  380.     def y=(y)
  381.       sy = y - self.y
  382.       if sy != 0
  383.         if @_animation_sprites != nil
  384.           for i in 0..15
  385.             @_animation_sprites[i].y += sy
  386.           end
  387.         end
  388.         if @_loop_animation_sprites != nil
  389.           for i in 0..15
  390.             @_loop_animation_sprites[i].y += sy
  391.           end
  392.         end
  393.       end
  394.       super
  395.     end
  396.   end
  397. end
复制代码



慢了一步……
回复 支持 反对

使用道具 举报

Lv1.梦旅人

Dancer-

梦石
0
星屑
105
在线时间
78 小时
注册时间
2006-5-15
帖子
3306
5
 楼主| 发表于 2007-7-15 00:02:16 | 只看该作者
可能需要修改一下..呃..谢谢k了。
一个机缘巧合后,被改变了人生的第八年。
养着两只猫,可是我对猫过敏。
为了那终将到来的一天。
回复 支持 反对

使用道具 举报

Lv1.梦旅人

Dancer-

梦石
0
星屑
105
在线时间
78 小时
注册时间
2006-5-15
帖子
3306
6
 楼主| 发表于 2007-7-15 00:03:08 | 只看该作者
zero的哪个不行啊..
我游戏里面battle4已经改得面目全非了...
先试试看..一会回来...认可答案..
一个机缘巧合后,被改变了人生的第八年。
养着两只猫,可是我对猫过敏。
为了那终将到来的一天。
回复 支持 反对

使用道具 举报

Lv2.观梦者

湛蓝的深海子<

梦石
0
星屑
610
在线时间
190 小时
注册时间
2006-12-5
帖子
1105

贵宾

7
发表于 2007-7-15 00:03:56 | 只看该作者
以下引用小真·爱舞于2007-7-14 16:03:08的发言:

zero的哪个不行啊..
我游戏里面battle4已经改得面目全非了...
先试试看..一会回来...认可答案..

{/gg}
刚才放错了……
回复 支持 反对

使用道具 举报

Lv1.梦旅人

Dancer-

梦石
0
星屑
105
在线时间
78 小时
注册时间
2006-5-15
帖子
3306
8
 楼主| 发表于 2007-7-15 00:05:12 | 只看该作者
Orz,果然需要修改..瑕疵好大...
认可完毕。
一个机缘巧合后,被改变了人生的第八年。
养着两只猫,可是我对猫过敏。
为了那终将到来的一天。
回复 支持 反对

使用道具 举报

Lv2.观梦者

梦石
0
星屑
451
在线时间
127 小时
注册时间
2006-11-2
帖子
1200
9
发表于 2007-7-15 00:11:02 | 只看该作者
先试验过了才发的脚本 应该没问题。{/hx}
和记忆一起封存着的ID...
回复 支持 反对

使用道具 举报

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

本版积分规则

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

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

GMT+8, 2024-11-14 13:35

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

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