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

Project1

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

[已经解决] 如何更改“一页”中存档的数量

[复制链接]

Lv1.梦旅人

小小的百鬼夜行<

梦石
0
星屑
54
在线时间
579 小时
注册时间
2010-7-29
帖子
2682

贵宾

跳转到指定楼层
1
发表于 2010-8-5 15:34:27 | 只看该作者 |只看大图 回帖奖励 |倒序浏览 |阅读模式

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

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

x
本帖最后由 退屈£无聊 于 2010-8-7 17:54 编辑

如题。。在下的意思是。。。。把原来一页中有4个存档改为3个……
我使用的是无限扩展存档数量的脚本
  1. #==============================================================================
  2. # 本脚本来自www.66rpg.com,转载和使用请保留此信息 #==============================================================================

  3. #==============================================================================
  4. # ■ Scene_File
  5. #------------------------------------------------------------------------------
  6. #  存档画面及读档画面的超级类。
  7. #   脚本优化: SailCat
  8. #==============================================================================

  9. class Scene_File
  10. #--------------------------------------------------------------------------
  11. # ● 常量 (存档页数)
  12. #--------------------------------------------------------------------------
  13. MaxPages = 25
  14. #--------------------------------------------------------------------------
  15. # ● 初始化对像
  16. #     help_text : 帮助窗口显示的字符串
  17. #--------------------------------------------------------------------------
  18. def initialize(help_text)
  19.    @help_text = help_text
  20.    @slots = MaxPages * 4
  21. end
  22. #--------------------------------------------------------------------------
  23. # ● 主处理
  24. #--------------------------------------------------------------------------
  25. def main
  26.    # 生成帮助窗口
  27.    @help_window = Window_Help.new
  28.    @help_window.set_text(@help_text)
  29.    @file_index = $game_temp.last_file_index
  30.    # 生成存档文件窗口
  31.    @savefile_windows = []
  32.    # 选择最后操作的文件
  33.    for i in @file_index / 4 * 4..@file_index / 4 * 4 + 3
  34.      load_window(i)
  35.      @savefile_windows[i].visible = true
  36.    end
  37.    @savefile_windows[@file_index].selected = true
  38.    # 执行过渡
  39.    Graphics.transition
  40.    # 主循环
  41.    loop do
  42.      # 刷新游戏画面
  43.      Graphics.update
  44.      # 刷新输入信息
  45.      Input.update
  46.      # 刷新画面
  47.      update
  48.      # 如果画面被切换的话就中断循环
  49.      if $scene != self
  50.        break
  51.      end
  52.    end
  53.    # 准备过渡
  54.    Graphics.freeze
  55.    # 释放窗口
  56.    @help_window.dispose
  57.    for i in @savefile_windows
  58.      i.dispose
  59.    end
  60. end
  61. #--------------------------------------------------------------------------
  62. # ● 刷新画面
  63. #--------------------------------------------------------------------------
  64. def update
  65.    # 刷新窗口
  66.    @help_window.update
  67.    for i in @savefile_windows
  68.      i.update if i.visible
  69.    end
  70.    # 按下 C 键的情况下
  71.    if Input.trigger?(Input::C)
  72.      # 调用过程 on_decision (定义继承目标)
  73.      on_decision(make_filename(@file_index))
  74.      $game_temp.last_file_index = @file_index
  75.      return
  76.    end
  77.    # 按下 B 键的情况下
  78.    if Input.trigger?(Input::B)
  79.      # 调用过程 on_cancel (定义继承目标)
  80.      on_cancel
  81.      return
  82.    end
  83.    # 按下方向键下的情况下
  84.    if Input.repeat?(Input::DOWN)
  85.      # 演奏光标 SE
  86.      $game_system.se_play($data_system.cursor_se)
  87.      # 光标向下移动
  88.      @savefile_windows[@file_index].selected = false
  89.      @file_index = (@file_index + 1) % @slots
  90.      # 翻到下一页的情况下
  91.      if @file_index % 4 == 0
  92.        for index in @file_index / 4 * 4..@file_index / 4 * 4 + 3
  93.          @savefile_windows[(index + @slots - 4) % @slots].visible = false
  94.          load_window(index)
  95.          @savefile_windows[index].visible = true
  96.        end
  97.      end
  98.      @savefile_windows[@file_index].selected = true
  99.      return
  100.    end
  101.    # 按下方向键上的情况下
  102.    if Input.repeat?(Input::UP)
  103.      # 演奏光标 SE
  104.      $game_system.se_play($data_system.cursor_se)
  105.      # 光标向上移动
  106.      @savefile_windows[@file_index].selected = false
  107.      @file_index = (@file_index + @slots - 1) % @slots
  108.      # 翻到上一页的情况下
  109.      if @file_index % 4 == 3
  110.        for index in @file_index / 4 * 4..@file_index / 4 * 4 + 3
  111.          @savefile_windows[(index + 4) % @slots].visible = false
  112.          load_window(index)
  113.          @savefile_windows[index].visible = true
  114.        end
  115.      end
  116.      @savefile_windows[@file_index].selected = true
  117.      return
  118.    end
  119.    # 按下方向键左或者 L 的情况下
  120.    if Input.repeat?(Input::LEFT) or Input.trigger?(Input::L)
  121.      # 演奏光标 SE
  122.      $game_system.se_play($data_system.cursor_se)
  123.      # 前翻一页
  124.      @savefile_windows[@file_index].selected = false
  125.      @file_index = (@file_index + @slots - 4) % @slots
  126.      for index in @file_index / 4 * 4..@file_index / 4 * 4 + 3
  127.        @savefile_windows[(index + 4) % @slots].visible = false
  128.        load_window(index)
  129.        @savefile_windows[index].visible = true
  130.      end
  131.      @savefile_windows[@file_index].selected = true
  132.      return
  133.    end
  134.    # 按下方向键右或者 R 的情况下
  135.    if Input.repeat?(Input::RIGHT) or Input.trigger?(Input::R)
  136.      # 演奏光标 SE
  137.      $game_system.se_play($data_system.cursor_se)
  138.      # 前翻一页
  139.      @savefile_windows[@file_index].selected = false
  140.      @file_index = (@file_index + 4) % @slots
  141.      for index in @file_index / 4 * 4..@file_index / 4 * 4 + 3
  142.        @savefile_windows[(index + @slots - 4) % @slots].visible = false
  143.        load_window(index)
  144.        @savefile_windows[index].visible = true
  145.      end
  146.      @savefile_windows[@file_index].selected = true
  147.      return
  148.    end
  149. end
  150. #--------------------------------------------------------------------------
  151. # ● 生成文件名
  152. #     file_index : 文件名的索引 (0~n)
  153. #--------------------------------------------------------------------------
  154. def make_filename(file_index)
  155.    return "Save#{file_index + 1}.rxdata"
  156. end
  157. #--------------------------------------------------------------------------
  158. # ● 载入当前页存档
  159. #     避免因存档位过多造成的卡壳现象
  160. #--------------------------------------------------------------------------
  161. def load_window(i)
  162.    if @savefile_windows[i] != nil
  163.      return
  164.    else
  165.      @savefile_windows[i] = Window_SaveFile.new(i, make_filename(i))
  166.    end
  167. end
  168. end

  169. #==============================================================================
  170. # 本脚本来自www.66RPG.com,使用和转载请保留此信息
  171. #==============================================================================
复制代码
其它暂无更改。
不知道怎么更改一页中的存档数量?

某只PHP/HTML小白鼠→退屈の间


Cause I knew you were trouble when you walked in
So shame is on me now
I flow me to place i ve never been
till you put me down oh
Now Im lying on the cold hard ground

Lv1.梦旅人

小小的百鬼夜行<

梦石
0
星屑
54
在线时间
579 小时
注册时间
2010-7-29
帖子
2682

贵宾

2
 楼主| 发表于 2010-8-6 09:27:44 | 只看该作者
3小时后可以自顶……
某只PHP/HTML小白鼠→退屈の间


Cause I knew you were trouble when you walked in
So shame is on me now
I flow me to place i ve never been
till you put me down oh
Now Im lying on the cold hard ground
回复 支持 反对

使用道具 举报

头像被屏蔽

Lv1.梦旅人 (禁止发言)

梦石
0
星屑
50
在线时间
0 小时
注册时间
2010-7-30
帖子
37
3
发表于 2010-8-6 09:32:05 | 只看该作者
提示: 作者被禁止或删除 内容自动屏蔽
签名被屏蔽
回复 支持 反对

使用道具 举报

头像被屏蔽

Lv1.梦旅人 (禁止发言)

梦石
0
星屑
50
在线时间
21 小时
注册时间
2007-7-3
帖子
573
4
发表于 2010-8-6 16:32:08 | 只看该作者
提示: 作者被禁止或删除 内容自动屏蔽
签名被屏蔽
回复 支持 反对

使用道具 举报

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

本版积分规则

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

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

GMT+8, 2024-12-29 06:31

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

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