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

Project1

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

[已经过期] 我囧了……真八方移动问题

[复制链接]

Lv2.观梦者

梦石
0
星屑
329
在线时间
890 小时
注册时间
2009-10-12
帖子
1829
跳转到指定楼层
1
发表于 2010-8-30 15:28:21 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

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

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

x
其实我也自己搜索过……真·八方向移动的问题……问题在于用上脚本之后的那个主角就变成了伪·八方向……但是跟班居然还很正常……

更加囧的地方是……某天早晨我稀里糊涂的搞定了这个问题……下午居然把工程删掉了……还好移动硬盘里面有备份……囧!!!!!!

  1. #==============================================================================
  2. # 本脚本来自www.66RPG.com,使用和转载请保留此信息
  3. #==============================================================================
  4. ###########################################################################################################################
  5. ###########################################################################################################################
  6. # 脚本功能:八方向走与多帧移动之图片修正__ver1.1。

  7. # 更新日期:2005年8月6日
  8. # 更新内容:增加斜方向触发,增加斜方向面向角色(1步之内)
  9. # 使用方法:将本脚本插入到main之前。如果你使用了雅土版的八方向走脚本,请确保这个脚本的顺序位置,在雅土八方向走脚本的后面。
  10. # 预先处理:请输入每一步的帧数和总共可用的方向数
  11. $c3_每一步的帧数 = 8
  12. $c3_总共可用的方向数 = 8 #——建议不要修改这个。如果要伪8方向的,就用伪的好了。
  13. # 图片处理与功能说明:
  14. # 1、每一步的帧数:
  15. #    众所周知,RMXP的移动行走图是一个方向共有4帧,很多人都觉得这个帧数有点少。
  16. # 使用这个脚本之后,只要将 $c3_每一步的帧数 这个变量设置一个需要的帧数即可修改
  17. # 单方向移动帧数为相应输入值。修改后,需要用photoshop将所有用到的素材的横排
  18. # 调整为相应帧数,比如输入了8则要将每一行设置8个图像(即每一个行走图有8列)。
  19. # 2、可用方向调整(可用数量:4、8):
  20. #    当为4方向时没有任何变化,还是一个图4行,上左右下4个方向。
  21. #    如果想使用8方向走,将需要八方向行走的行走图在延伸扩大的画布中按照左下、右下、左上、右上继续排布图像。
  22. # 即,行走图图片从上到下的面向排列顺序为:下,左,右,上,左下,右下,左上,右上。
  23. #    至于不需要8方向走的普通的NPC(character),使用photoshop将画布向下扩大一倍即可使用。
  24. #    需要注意的是,如果需要斜方向飞鸟,请不要忘记自制素材。
  25. # 特别提示:   
  26. #     使用本脚本前请先考虑清楚是否要做这种效果。因为使用本脚本后需要用photoshop处理character行走图素材
  27. # 虽然这种处理用photoshop定义动作只需要5分钟即可全部完成,但在制作阶段会感觉不是很爽(具体的用了才知道)
  28. # 作者的建议是,如果你没有足够的制作经验,使用这个脚本得不偿失。请确保自己的能力属于“高手”级别!
  29. # 附赠功能:
  30. #     可以让NPC角色随机8方向走,方法是:NPC角色移动路线为“自定义”,然后自定义里面使用脚本,输入c8即可
  31. #     可以让NPC角色随机4斜角方向走,方法是:NPC角色移动路线为“自定义”,然后自定义里面使用脚本,输入c4即可
  32. #     可以使用真·斜4方向行走,参考脚本53行开始
  33. # 作者:carol3
  34. ###########################################################################################################################
  35. ###########################################################################################################################
  36. class Game_Player < Game_Character
  37.   if $c3_总共可用的方向数 == 8
  38.     def update
  39.       last_moving = moving?
  40.       unless moving? or $game_system.map_interpreter.running? or
  41.              @move_route_forcing or $game_temp.message_window_showing
  42.         # 用井号后面的东西替代前面的,就可以实现斜4方向走
  43.         case Input.dir8
  44.         when 2
  45.           move_down #move_lower_left
  46.         when 4
  47.           move_left #move_upper_left
  48.         when 6
  49.           move_right #move_lower_right
  50.         when 8
  51.           move_up #move_upper_right
  52.         when 1
  53.           move_lower_left
  54.         when 3
  55.           move_lower_right
  56.         when 7
  57.           move_upper_left
  58.         when 9
  59.           move_upper_right
  60.         end
  61.       end
  62.       # 本地变量记忆坐标
  63.       last_real_x = @real_x
  64.       last_real_y = @real_y
  65.       super
  66.       # 角色向下移动、画面上的位置在中央下方的情况下
  67.       if @real_y > last_real_y and @real_y - $game_map.display_y > CENTER_Y
  68.         # 画面向下卷动
  69.         $game_map.scroll_down(@real_y - last_real_y)
  70.       end
  71.       # 角色向左移动、画面上的位置在中央左方的情况下
  72.       if @real_x < last_real_x and @real_x - $game_map.display_x < CENTER_X
  73.         # 画面向左卷动
  74.         $game_map.scroll_left(last_real_x - @real_x)
  75.       end
  76.       # 角色向右移动、画面上的位置在中央右方的情况下
  77.       if @real_x > last_real_x and @real_x - $game_map.display_x > CENTER_X
  78.         # 画面向右卷动
  79.         $game_map.scroll_right(@real_x - last_real_x)
  80.       end
  81.       # 角色向上移动、画面上的位置在中央上方的情况下
  82.       if @real_y < last_real_y and @real_y - $game_map.display_y < CENTER_Y
  83.         # 画面向上卷动
  84.         $game_map.scroll_up(last_real_y - @real_y)
  85.       end
  86.       # 不在移动中的情况下
  87.       unless moving?
  88.         # 上次主角移动中的情况
  89.         if last_moving
  90.           # 与同位置的事件接触就判定为事件启动
  91.           result = check_event_trigger_here([1,2])
  92.           # 没有可以启动的事件的情况下
  93.           if result == false
  94.             # 调试模式为 ON 并且按下 CTRL 键的情况下除外
  95.             unless $DEBUG and Input.press?(Input::CTRL)
  96.               # 遇敌计数下降
  97.               if @encounter_count > 0
  98.                 @encounter_count -= 1
  99.               end
  100.             end
  101.           end
  102.         end
  103.         # 按下 C 键的情况下
  104.         if Input.trigger?(Input::C)
  105.           # 判定为同位置以及正面的事件启动
  106.           check_event_trigger_here([0])
  107.           check_event_trigger_there([0,1,2])
  108.         end
  109.       end
  110.     end
  111.     #--------------------------------------------------------------------------
  112.     # ● 正面事件的启动判定
  113.     #--------------------------------------------------------------------------
  114.     def check_event_trigger_there(triggers)
  115.       result = false
  116.       # 事件执行中的情况下
  117.       if $game_system.map_interpreter.running?
  118.         return result
  119.       end
  120.       # 计算正面坐标
  121.       new_x = @x
  122.       new_y = @y
  123.       case @direction
  124.       when 1
  125.         new_x -= 1
  126.         new_y += 1
  127.       when 2
  128.         new_y += 1
  129.       when 3
  130.         new_x += 1
  131.         new_y += 1
  132.       when 4
  133.         new_x -= 1
  134.       when 6
  135.         new_x += 1
  136.       when 7
  137.         new_x -= 1
  138.         new_y -= 1
  139.       when 8
  140.         new_y -= 1
  141.       when 9
  142.         new_x += 1
  143.         new_y -= 1
  144.       end
  145.       # 全部事件的循环
  146.       for event in $game_map.events.values
  147.         # 事件坐标与目标一致的情况下
  148.         if event.x == new_x and event.y == new_y and
  149.            triggers.include?(event.trigger)
  150.           # 跳跃中以外的情况下、启动判定是正面的事件
  151.           if not event.jumping? and not event.over_trigger?
  152.             event.start
  153.             result = true
  154.           end
  155.         end
  156.       end
  157.       # 找不到符合条件的事件的情况下
  158.       if result == false
  159.         # 正面的元件是计数器的情况下
  160.         if $game_map.counter?(new_x, new_y)
  161.           # 计算 1 元件里侧的坐标
  162.           new_x += (@direction == 6 ? 1 : @direction == 4 ? -1 : 0)
  163.           new_y += (@direction == 2 ? 1 : @direction == 8 ? -1 : 0)
  164.           # 全事件的循环
  165.           for event in $game_map.events.values
  166.             # 事件坐标与目标一致的情况下
  167.             if event.x == new_x and event.y == new_y and
  168.                triggers.include?(event.trigger)
  169.               # 跳跃中以外的情况下、启动判定是正面的事件
  170.               if not event.jumping? and not event.over_trigger?
  171.                 event.start
  172.                 result = true
  173.               end
  174.             end
  175.           end
  176.         end
  177.       end
  178.       return result
  179.     end
  180.     #--------------------------------------------------------------------------
  181.     # ● 向左下移动
  182.     #--------------------------------------------------------------------------
  183.     def move_lower_left
  184.       # 没有固定面向的场合
  185.       unless @direction_fix
  186.         # 朝向是右的情况下适合的面是左面、朝向是上的情况下适合的面是下面
  187.         @direction = 1#(@direction == 6 ? 4 : @direction == 8 ? 2 : @direction)
  188.       end
  189.       # 下→左、左→下 的通道可以通行的情况下
  190.       if (passable?(@x, @y, 2) and passable?(@x, @y + 1, 4)) or
  191.          (passable?(@x, @y, 4) and passable?(@x - 1, @y, 2))
  192.         # 更新坐标
  193.         @x -= 1
  194.         @y += 1
  195.         # 增加步数
  196.         increase_steps
  197.       else
  198.         check_event_trigger_touch(@x-1, @y+1)
  199.       end
  200.     end
  201.     #--------------------------------------------------------------------------
  202.     # ● 向右下移动
  203.     #--------------------------------------------------------------------------
  204.     def move_lower_right
  205.       # 没有固定面向的场合
  206.       unless @direction_fix
  207.         # 朝向是右的情况下适合的面是左面、朝向是上的情况下适合的面是下面
  208.         @direction = 3#(@direction == 4 ? 6 : @direction == 8 ? 2 : @direction)
  209.       end
  210.       # 下→右、右→下 的通道可以通行的情况下
  211.       if (passable?(@x, @y, 2) and passable?(@x, @y + 1, 6)) or
  212.          (passable?(@x, @y, 6) and passable?(@x + 1, @y, 2))
  213.         # 更新坐标
  214.         @x += 1
  215.         @y += 1
  216.         # 增加步数
  217.         increase_steps
  218.       else
  219.         check_event_trigger_touch(@x+1, @y+1)
  220.       end
  221.     end
  222.     #--------------------------------------------------------------------------
  223.     # ● 向左上移动
  224.     #--------------------------------------------------------------------------
  225.     def move_upper_left
  226.       # 没有固定面向的场合
  227.       unless @direction_fix
  228.         # 朝向是右的情况下适合的面是左面、朝向是上的情况下适合的面是下面
  229.         @direction = 7#(@direction == 6 ? 4 : @direction == 2 ? 8 : @direction)
  230.       end
  231.       # 上→左、左→上 的通道可以通行的情况下
  232.       if (passable?(@x, @y, 8) and passable?(@x, @y - 1, 4)) or
  233.          (passable?(@x, @y, 4) and passable?(@x - 1, @y, 8))
  234.         # 更新坐标
  235.         @x -= 1
  236.         @y -= 1
  237.         # 增加步数
  238.         increase_steps
  239.       else
  240.         check_event_trigger_touch(@x-1, @y-1)
  241.       end
  242.     end
  243.     #--------------------------------------------------------------------------
  244.     # ● 向右上移动
  245.     #--------------------------------------------------------------------------
  246.     def move_upper_right
  247.       # 没有固定面向的场合
  248.       unless @direction_fix
  249.         # 朝向是右的情况下适合的面是左面、朝向是上的情况下适合的面是下面
  250.         @direction = 9#(@direction == 4 ? 6 : @direction == 2 ? 8 : @direction)
  251.       end
  252.       # 上→右、右→上 的通道可以通行的情况下
  253.       if (passable?(@x, @y, 8) and passable?(@x, @y - 1, 6)) or
  254.          (passable?(@x, @y, 6) and passable?(@x + 1, @y, 8))
  255.         # 更新坐标
  256.         @x += 1
  257.         @y -= 1
  258.         # 增加步数
  259.         increase_steps
  260.       else
  261.         check_event_trigger_touch(@x+1, @y-1)
  262.       end
  263.     end
  264.     #--------------------------------------------------------------------------
  265.     # ● 雅土左下移動
  266.     #--------------------------------------------------------------------------
  267.     def move_lower_left_p
  268.       unless @direction_fix
  269.         @direction = 1
  270.       end
  271.       distance = (2 ** @move_speed) / Math.sqrt(2)
  272.       turn_left unless down1(@x, @y, distance)
  273.       turn_down if @event
  274.       turn_down unless left1(@x, @y, distance) unless @event
  275.       turn_left if @event
  276.     end
  277.     #--------------------------------------------------------------------------
  278.     # ● 雅土右下移動
  279.     #--------------------------------------------------------------------------
  280.     def move_lower_right_p
  281.       unless @direction_fix
  282.         @direction = 3
  283.       end
  284.       distance = (2 ** @move_speed) / Math.sqrt(2)
  285.       turn_right unless down1(@x, @y, distance)
  286.       turn_down if @event
  287.       turn_down unless right1(@x, @y, distance) unless @event
  288.       turn_right if @event
  289.     end
  290.     #--------------------------------------------------------------------------
  291.     # ● 雅土左上移動
  292.     #--------------------------------------------------------------------------
  293.     def move_upper_left_p
  294.       unless @direction_fix
  295.         @direction = 7
  296.       end
  297.       distance = (2 ** @move_speed) / Math.sqrt(2)
  298.       turn_left unless up1(@x, @y, distance)
  299.       turn_up if @event
  300.       turn_up unless left1(@x, @y, distance) unless @event
  301.       turn_left if @event
  302.     end
  303.     #--------------------------------------------------------------------------
  304.     # ● 雅土右上移動
  305.     #--------------------------------------------------------------------------
  306.     def move_upper_right_p
  307.       unless @direction_fix
  308.         @direction = 9
  309.       end
  310.       distance = (2 ** @move_speed) / Math.sqrt(2)
  311.       turn_right unless up1(@x, @y, distance)
  312.       turn_up if @event
  313.       turn_up unless right1(@x, @y, distance) unless @event
  314.       turn_right if @event
  315.     end
  316.   end
  317. end

  318. class Sprite_Character < RPG::Sprite
  319.   def update
  320.     super
  321.     # 元件 ID、文件名、色相与现在的情况存在差异的情况下
  322.     if @tile_id != @character.tile_id or
  323.        @character_name != @character.character_name or
  324.        @character_hue != @character.character_hue
  325.       # 记忆元件 ID 与文件名、色相
  326.       @tile_id = @character.tile_id
  327.       @character_name = @character.character_name
  328.       @character_hue = @character.character_hue
  329.       # 元件 ID 为有效值的情况下
  330.       if @tile_id >= 384
  331.         self.bitmap = RPG::Cache.tile($game_map.tileset_name,
  332.           @tile_id, @character.character_hue)
  333.         self.src_rect.set(0, 0, 32, 32)
  334.         self.ox = 16
  335.         self.oy = 32
  336.       # 元件 ID 为无效值的情况下
  337.       else
  338.         self.bitmap = RPG::Cache.character(@character.character_name,
  339.           @character.character_hue)
  340.         @cw = bitmap.width / $c3_每一步的帧数
  341.         if $c3_总共可用的方向数==4
  342.           @ch = bitmap.height / 4
  343.         else
  344.           @ch = bitmap.height / 8
  345.         end
  346.         self.ox = @cw / 2
  347.         self.oy = @ch
  348.       end
  349.     end
  350.     # 设置可视状态
  351.     self.visible = (not @character.transparent)
  352.     # 图形是角色的情况下
  353.     if @tile_id == 0
  354.       # 设置传送目标的矩形
  355.       sx = @character.pattern * @cw
  356.       if $c3_总共可用的方向数==8
  357.         case @character.direction
  358.         when 2
  359.           sy = 0 * @ch
  360.         when 4
  361.           sy = 1 * @ch
  362.         when 6
  363.           sy = 2 * @ch
  364.         when 8
  365.           sy = 3 * @ch
  366.         when 1
  367.           sy = 4 * @ch
  368.         when 3
  369.           sy = 5 * @ch
  370.         when 7
  371.           sy = 6 * @ch
  372.         when 9
  373.           sy = 7 * @ch
  374.         end
  375.       else
  376.         sy = (@character.direction - 2) / 2 * @ch
  377.       end
  378.       self.src_rect.set(sx, sy, @cw, @ch)
  379.     end
  380.     # 设置脚本的坐标
  381.     self.x = @character.screen_x
  382.     self.y = @character.screen_y
  383.     self.z = @character.screen_z(@ch)
  384.     # 设置不透明度、合成方式、茂密
  385.     self.opacity = @character.opacity
  386.     self.blend_type = @character.blend_type
  387.     self.bush_depth = @character.bush_depth
  388.     # 动画
  389.     if @character.animation_id != 0
  390.       animation = $data_animations[@character.animation_id]
  391.       animation(animation, true)
  392.       @character.animation_id = 0
  393.     end
  394.   end
  395. end
  396. class Game_Character
  397.   def c8
  398.     # 随机 0~5 的分支
  399.     case rand(10)
  400.     when 0..3  # 随机
  401.       move_random
  402.     when 4  # 前进一步
  403.       move_forward
  404.     when 5  # 暂时停止
  405.       @stop_count = 0
  406.     when 6..9  #另外4方向随机
  407.       c4
  408.     end
  409.   end
  410.   def c4
  411.     case rand(5)
  412.     when 0
  413.       move_upper_left
  414.     when 1
  415.       move_upper_right
  416.     when 2
  417.       move_lower_left
  418.     when 3
  419.       move_lower_right
  420.     when 4
  421.       @stop_count = 0
  422.     end
  423.   end
  424.       
  425.   def update
  426.     # 跳跃中、移动中、停止中的分支
  427.     if jumping?
  428.       update_jump
  429.     elsif moving?
  430.       update_move
  431.     else
  432.       update_stop
  433.     end
  434.     # 动画计数超过最大值的情况下
  435.     # ※最大值等于基本值减去移动速度 * 1 的值
  436.     if @anime_count > 16*4/$c3_每一步的帧数 - @move_speed * 1
  437.       # 停止动画为 OFF 并且在停止中的情况下
  438.       if not @step_anime and @stop_count > 0
  439.         # 还原为原来的图形
  440.         @pattern = @original_pattern
  441.       # 停止动画为 ON 并且在移动中的情况下
  442.       else
  443.         # 更新图形
  444.         @pattern = (@pattern + 1) % $c3_每一步的帧数
  445.       end
  446.       # 清除动画计数
  447.       @anime_count = 0
  448.     end
  449.     # 等待中的情况下
  450.     if @wait_count > 0
  451.       # 减少等待计数
  452.       @wait_count -= 1
  453.       return
  454.     end
  455.     # 强制移动路线的场合
  456.     if @move_route_forcing
  457.       # 自定义移动
  458.       move_type_custom
  459.       return
  460.     end
  461.     # 事件执行待机中并且为锁定状态的情况下
  462.     if @starting or lock?
  463.       # 不做规则移动
  464.       return
  465.     end
  466.     # 如果停止计数超过了一定的值(由移动频度算出)
  467.     if @stop_count > (40 - @move_frequency * 2) * (6 - @move_frequency)
  468.       # 移动类型分支
  469.       case @move_type
  470.       when 1  # 随机
  471.         move_type_random
  472.       when 2  # 接近
  473.         move_type_toward_player
  474.       when 3  # 自定义
  475.         move_type_custom
  476.       end
  477.     end
  478.   end
  479. end
  480. class Window_Base < Window
  481.   def draw_actor_graphic(actor, x, y)
  482.     bitmap = RPG::Cache.character(actor.character_name, actor.character_hue)
  483.     cw = bitmap.width / $c3_每一步的帧数
  484.     ch = bitmap.height / $c3_总共可用的方向数
  485.     src_rect = Rect.new(0, 0, cw, ch)
  486.     self.contents.blt(x - cw / 2, y - ch, bitmap, src_rect)
  487.   end
  488. end
  489. class Game_Character
  490.   #--------------------------------------------------------------------------
  491.   # ● 面向主角的方向
  492.   #--------------------------------------------------------------------------
  493.   def turn_toward_player
  494.     # 求得与主角的坐标差
  495.     sx = @x - $game_player.x
  496.     sy = @y - $game_player.y
  497.     # 坐标相等的场合下
  498.     if sx == 0 and sy == 0
  499.       return
  500.     end
  501.     # 横侧距离长的情况下
  502.     if sx.abs > sy.abs
  503.       # 将左右方向变更为朝向主角的方向
  504.       sx > 0 ? turn_left : turn_right
  505.     # 竖侧距离长的情况下
  506.     else
  507.       # 将上下方向变更为朝向主角的方向
  508.       sy > 0 ? turn_up : turn_down
  509.     end
  510.     if sx == -1 and sy == -1
  511.       @direction = 3
  512.       @stop_count = 0
  513.     elsif sx == -1 and sy == 1
  514.       @direction = 9
  515.       @stop_count = 0
  516.     elsif sx == 1 and sy == -1
  517.       @direction = 1
  518.       @stop_count = 0
  519.     elsif sx == 1 and sy == 1
  520.       @direction = 7
  521.       @stop_count = 0
  522.     end
  523.   end
  524. end
  525. #==============================================================================
  526. # 本脚本来自www.66RPG.com,使用和转载请保留此信息
  527. #==============================================================================
复制代码
至于人物跟随的脚本……我就是要找这个!【我实在是火星了。】

Lv2.观梦者

梦石
0
星屑
329
在线时间
890 小时
注册时间
2009-10-12
帖子
1829
2
 楼主| 发表于 2010-8-31 11:55:25 | 只看该作者
我看起来得顶一下……囧
回复 支持 反对

使用道具 举报

Lv5.捕梦者 (管理员)

老黄鸡

梦石
0
星屑
42404
在线时间
7602 小时
注册时间
2009-7-6
帖子
13506

开拓者贵宾

3
发表于 2010-8-31 12:33:14 | 只看该作者
本帖最后由 fux2 于 2010-8-31 12:35 编辑

回复 日月星辰 的帖子

你到底想问什么。
人物跟随脚本在此

  1. module Train_Actor




  2. #是否使用停止跟随的方法,也就是说,这里false改为
  3. #true的时候,如果TRANSPARENT_SWITCHES_INDEX
  4. #开关打开,跟随的人物就消失了(其实只是变成透明而已)
  5. TRANSPARENT_SWITCH = true
  6. TRANSPARENT_SWITCHES_INDEX = 198
  7. #举例:第一个为true,第二个为20,则打开20号开关,后面的人都没了。





  8. #跟随人数的最大数目,可以更改为2、3什么的。
  9. TRAIN_ACTOR_SIZE_MAX = 4





  10. # 定数
  11. #Input::DOWN = 2
  12. #Input::LEFT = 4
  13. #Input::RIGHT = 6
  14. #Input::UP = 6
  15. DOWN_LEFT = 1
  16. DOWN_RIGHT = 3
  17. UP_LEFT = 7
  18. UP_RIGHT = 9
  19. JUMP = 5

  20. class Game_Party_Actor < Game_Character
  21. def initialize
  22. super()
  23. @through = true
  24. end
  25. def setup(actor)
  26. # キャラクターのファイル名と色相を設定
  27. if actor != nil
  28. @character_name = actor.character_name
  29. @character_hue = actor.character_hue
  30. else
  31. @character_name = ""
  32. @character_hue = 0
  33. end
  34. # 不透明度と合成方法を初期化
  35. @opacity = 255
  36. @blend_type = 0
  37. end
  38. def screen_z(height = 0)
  39. if $game_player.x == @x and $game_player.y == @y
  40. return $game_player.screen_z(height) - 1
  41. end
  42. super(height)
  43. end
  44. #--------------------------------------------------------------------------
  45. # ● 下に移動
  46. # turn_enabled : その場での向き変更を許可するフラグ
  47. #--------------------------------------------------------------------------
  48. def move_down(turn_enabled = true)
  49. # 下を向く
  50. if turn_enabled
  51. turn_down
  52. end
  53. # 通行可能な場合
  54. if passable?(@x, @y, Input::DOWN)
  55. # 下を向く
  56. turn_down
  57. # 座標を更新
  58. @y += 1
  59. end
  60. end
  61. #--------------------------------------------------------------------------
  62. # ● 左に移動
  63. # turn_enabled : その場での向き変更を許可するフラグ
  64. #--------------------------------------------------------------------------
  65. def move_left(turn_enabled = true)
  66. # 左を向く
  67. if turn_enabled
  68. turn_left
  69. end
  70. # 通行可能な場合
  71. if passable?(@x, @y, Input::LEFT)
  72. # 左を向く
  73. turn_left
  74. # 座標を更新
  75. @x -= 1
  76. end
  77. end
  78. #--------------------------------------------------------------------------
  79. # ● 右に移動
  80. # turn_enabled : その場での向き変更を許可するフラグ
  81. #--------------------------------------------------------------------------
  82. def move_right(turn_enabled = true)
  83. # 右を向く
  84. if turn_enabled
  85. turn_right
  86. end
  87. # 通行可能な場合
  88. if passable?(@x, @y, Input::RIGHT)
  89. # 右を向く
  90. turn_right
  91. # 座標を更新
  92. @x += 1
  93. end
  94. end
  95. #--------------------------------------------------------------------------
  96. # ● 上に移動
  97. # turn_enabled : その場での向き変更を許可するフラグ
  98. #--------------------------------------------------------------------------
  99. def move_up(turn_enabled = true)
  100. # 上を向く
  101. if turn_enabled
  102. turn_up
  103. end
  104. # 通行可能な場合
  105. if passable?(@x, @y, Input::UP)
  106. # 上を向く
  107. turn_up
  108. # 座標を更新
  109. @y -= 1
  110. end
  111. end
  112. #--------------------------------------------------------------------------
  113. # ● 左下に移動
  114. #--------------------------------------------------------------------------
  115. def move_lower_left
  116. # 向き固定でない場合
  117. unless @direction_fix
  118. # 右向きだった場合は左を、上向きだった場合は下を向く
  119. @direction = (@direction == Input::RIGHT ? Input::LEFT : @direction == Input::UP ? Input::DOWN : @direction)
  120. end
  121. # 下→左、左→下 のどちらかのコースが通行可能な場合
  122. if (passable?(@x, @y, Input::DOWN) and passable?(@x, @y + 1, Input::LEFT)) or
  123. (passable?(@x, @y, Input::LEFT) and passable?(@x - 1, @y, Input::DOWN))
  124. # 座標を更新
  125. @x -= 1
  126. @y += 1
  127. end
  128. end
  129. #--------------------------------------------------------------------------
  130. # ● 右下に移動
  131. #--------------------------------------------------------------------------
  132. def move_lower_right
  133. # 向き固定でない場合
  134. unless @direction_fix
  135. # 左向きだった場合は右を、上向きだった場合は下を向く
  136. @direction = (@direction == Input::LEFT ? Input::RIGHT : @direction == Input::UP ? Input::DOWN : @direction)
  137. end
  138. # 下→右、右→下 のどちらかのコースが通行可能な場合
  139. if (passable?(@x, @y, Input::DOWN) and passable?(@x, @y + 1, Input::RIGHT)) or
  140. (passable?(@x, @y, Input::RIGHT) and passable?(@x + 1, @y, Input::DOWN))
  141. # 座標を更新
  142. @x += 1
  143. @y += 1
  144. end
  145. end
  146. #--------------------------------------------------------------------------
  147. # ● 左上に移動
  148. #--------------------------------------------------------------------------
  149. def move_upper_left
  150. # 向き固定でない場合
  151. unless @direction_fix
  152. # 右向きだった場合は左を、下向きだった場合は上を向く
  153. @direction = (@direction == Input::RIGHT ? Input::LEFT : @direction == Input::DOWN ? Input::UP : @direction)
  154. end
  155. # 上→左、左→上 のどちらかのコースが通行可能な場合
  156. if (passable?(@x, @y, Input::UP) and passable?(@x, @y - 1, Input::LEFT)) or
  157. (passable?(@x, @y, Input::LEFT) and passable?(@x - 1, @y, Input::UP))
  158. # 座標を更新
  159. @x -= 1
  160. @y -= 1
  161. end
  162. end
  163. #--------------------------------------------------------------------------
  164. # ● 右上に移動
  165. #--------------------------------------------------------------------------
  166. def move_upper_right
  167. # 向き固定でない場合
  168. unless @direction_fix
  169. # 左向きだった場合は右を、下向きだった場合は上を向く
  170. @direction = (@direction == Input::LEFT ? Input::RIGHT : @direction == Input::DOWN ? Input::UP : @direction)
  171. end
  172. # 上→右、右→上 のどちらかのコースが通行可能な場合
  173. if (passable?(@x, @y, Input::UP) and passable?(@x, @y - 1, Input::RIGHT)) or
  174. (passable?(@x, @y, Input::RIGHT) and passable?(@x + 1, @y, Input::UP))
  175. # 座標を更新
  176. @x += 1
  177. @y -= 1
  178. end
  179. end
  180. attr_writer :move_speed
  181. attr_writer :step_anime
  182. end
  183. module Spriteset_Map_Module
  184. def setup_actor_character_sprites?
  185. return @setup_actor_character_sprites_flag != nil
  186. end
  187. def setup_actor_character_sprites(characters)
  188. if !setup_actor_character_sprites?
  189. index_game_player = 0
  190. @character_sprites.each_index do |i|
  191. if @character_sprites[i].character.instance_of?(Game_Player)
  192. index_game_player = i
  193. break
  194. end
  195. end
  196. for character in characters.reverse
  197. @character_sprites.unshift(
  198. Sprite_Character.new(@viewport1, character)
  199. )
  200. end
  201. @setup_actor_character_sprites_flag = true
  202. end
  203. end
  204. end
  205. module Scene_Map_Module
  206. def setup_actor_character_sprites(characters)
  207. @spriteset.setup_actor_character_sprites(characters)
  208. end
  209. end
  210. module Game_Party_Module
  211. def set_transparent_actors(transparent)
  212. @transparent = transparent
  213. end
  214. def setup_actor_character_sprites
  215. if @characters == nil
  216. @characters = []
  217. for i in 1 ... TRAIN_ACTOR_SIZE_MAX
  218. @characters.push(Game_Party_Actor.new)
  219. end
  220. end
  221. for i in 1 ... TRAIN_ACTOR_SIZE_MAX
  222. @characters[i - 1].setup(actors[i])
  223. end
  224. if $scene.class.method_defined?('setup_actor_character_sprites')
  225. $scene.setup_actor_character_sprites(@characters)
  226. end
  227. end
  228. def update_party_actors
  229. setup_actor_character_sprites
  230. transparent = $game_player.transparent
  231. if transparent == false
  232. if TRANSPARENT_SWITCH
  233. transparent = $game_switches[TRANSPARENT_SWITCHES_INDEX]
  234. end
  235. end
  236. for character in @characters
  237. character.transparent = transparent
  238. character.move_speed = $game_player.move_speed
  239. character.step_anime = $game_player.step_anime
  240. character.update
  241. end
  242. end
  243. def moveto_party_actors( x, y )
  244. setup_actor_character_sprites
  245. for character in @characters
  246. character.moveto( x, y )
  247. end
  248. if @move_list == nil
  249. @move_list = []
  250. end
  251. move_list_setup
  252. end
  253. def move_party_actors
  254. if @move_list == nil
  255. @move_list = []
  256. move_list_setup
  257. end
  258. @move_list.each_index do |i|
  259. if @characters[i] != nil
  260. case @move_list[i].type
  261. when Input::DOWN
  262. @characters[i].move_down(@move_list[i].args[0])
  263. when Input::LEFT
  264. @characters[i].move_left(@move_list[i].args[0])
  265. when Input::RIGHT
  266. @characters[i].move_right(@move_list[i].args[0])
  267. when Input::UP
  268. @characters[i].move_up(@move_list[i].args[0])
  269. when DOWN_LEFT
  270. @characters[i].move_lower_left
  271. when DOWN_RIGHT
  272. @characters[i].move_lower_right
  273. when UP_LEFT
  274. @characters[i].move_upper_left
  275. when UP_RIGHT
  276. @characters[i].move_upper_right
  277. when JUMP
  278. @characters[i].jump(@move_list[i].args[0],@move_list[i].args[1])
  279. end
  280. end
  281. end
  282. end
  283. class Move_List_Element
  284. def initialize(type,args)
  285. @type = type
  286. @args = args
  287. end
  288. def type() return @type end
  289. def args() return @args end
  290. end
  291. def move_list_setup
  292. for i in 0 .. TRAIN_ACTOR_SIZE_MAX
  293. @move_list[i] = nil
  294. end
  295. end
  296. def add_move_list(type,*args)
  297. @move_list.unshift(Move_List_Element.new(type,args)).pop
  298. end
  299. def move_down_party_actors(turn_enabled = true)
  300. move_party_actors
  301. add_move_list(Input::DOWN,turn_enabled)
  302. end
  303. def move_left_party_actors(turn_enabled = true)
  304. move_party_actors
  305. add_move_list(Input::LEFT,turn_enabled)
  306. end
  307. def move_right_party_actors(turn_enabled = true)
  308. move_party_actors
  309. add_move_list(Input::RIGHT,turn_enabled)
  310. end
  311. def move_up_party_actors(turn_enabled = true)
  312. move_party_actors
  313. add_move_list(Input::UP,turn_enabled)
  314. end
  315. def move_lower_left_party_actors
  316. move_party_actors
  317. add_move_list(DOWN_LEFT)
  318. end
  319. def move_lower_right_party_actors
  320. move_party_actors
  321. add_move_list(DOWN_RIGHT)
  322. end
  323. def move_upper_left_party_actors
  324. move_party_actors
  325. add_move_list(UP_LEFT)
  326. end
  327. def move_upper_right_party_actors
  328. move_party_actors
  329. add_move_list(UP_RIGHT)
  330. end
  331. def jump_party_actors(x_plus, y_plus)
  332. move_party_actors
  333. add_move_list(JUMP,x_plus, y_plus)
  334. end
  335. end
  336. module Game_Player_Module
  337. def update
  338. $game_party.update_party_actors
  339. super
  340. end
  341. def moveto( x, y )
  342. $game_party.moveto_party_actors( x, y )
  343. super( x, y )
  344. end
  345. def move_down(turn_enabled = true)
  346. if passable?(@x, @y, Input::DOWN)
  347. $game_party.move_down_party_actors(turn_enabled)
  348. end
  349. super(turn_enabled)
  350. end
  351. def move_left(turn_enabled = true)
  352. if passable?(@x, @y, Input::LEFT)
  353. $game_party.move_left_party_actors(turn_enabled)
  354. end
  355. super(turn_enabled)
  356. end
  357. def move_right(turn_enabled = true)
  358. if passable?(@x, @y, Input::RIGHT)
  359. $game_party.move_right_party_actors(turn_enabled)
  360. end
  361. super(turn_enabled)
  362. end
  363. def move_up(turn_enabled = true)
  364. if passable?(@x, @y, Input::UP)
  365. $game_party.move_up_party_actors(turn_enabled)
  366. end
  367. super(turn_enabled)
  368. end
  369. def move_lower_left
  370. # 下→左、左→下 のどちらかのコースが通行可能な場合
  371. if (passable?(@x, @y, Input::DOWN) and passable?(@x, @y + 1, Input::LEFT)) or
  372. (passable?(@x, @y, Input::LEFT) and passable?(@x - 1, @y, Input::DOWN))
  373. $game_party.move_lower_left_party_actors
  374. end
  375. super
  376. end
  377. def move_lower_right
  378. # 下→右、右→下 のどちらかのコースが通行可能な場合
  379. if (passable?(@x, @y, Input::DOWN) and passable?(@x, @y + 1, Input::RIGHT)) or
  380. (passable?(@x, @y, Input::RIGHT) and passable?(@x + 1, @y, Input::DOWN))
  381. $game_party.move_lower_right_party_actors
  382. end
  383. super
  384. end
  385. def move_upper_left
  386. # 上→左、左→上 のどちらかのコースが通行可能な場合
  387. if (passable?(@x, @y, Input::UP) and passable?(@x, @y - 1, Input::LEFT)) or
  388. (passable?(@x, @y, Input::LEFT) and passable?(@x - 1, @y, Input::UP))
  389. $game_party.move_upper_left_party_actors
  390. end
  391. super
  392. end
  393. def move_upper_right
  394. # 上→右、右→上 のどちらかのコースが通行可能な場合
  395. if (passable?(@x, @y, Input::UP) and passable?(@x, @y - 1, Input::RIGHT)) or
  396. (passable?(@x, @y, Input::RIGHT) and passable?(@x + 1, @y, Input::UP))
  397. $game_party.move_upper_right_party_actors
  398. end
  399. super
  400. end
  401. def jump(x_plus, y_plus)
  402. # 新しい座標を計算
  403. new_x = @x + x_plus
  404. new_y = @y + y_plus
  405. # 加算値が (0,0) の場合か、ジャンプ先が通行可能な場合
  406. if (x_plus == 0 and y_plus == 0) or passable?(new_x, new_y, 0)
  407. $game_party.jump_party_actors(x_plus, y_plus)
  408. end
  409. super(x_plus, y_plus)
  410. end
  411. attr_reader :move_speed
  412. attr_reader :step_anime
  413. end
  414. end # module Train_Actor
  415. class Game_Party
  416. include Train_Actor::Game_Party_Module
  417. end
  418. class Game_Player
  419. include Train_Actor::Game_Player_Module
  420. end
  421. class Spriteset_Map
  422. include Train_Actor::Spriteset_Map_Module
  423. end
  424. class Scene_Map
  425. include Train_Actor::Scene_Map_Module
  426. end
复制代码
回复 支持 反对

使用道具 举报

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

本版积分规则

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

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

GMT+8, 2024-11-24 01:27

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

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