Project1

标题: Vocab::new_game这个指的是什么? [打印本页]

作者: 九靈    时间: 2014-8-9 20:45
标题: Vocab::new_game这个指的是什么?
RUBY 代码复制
  1. #--------------------------------------------------------------------------
  2.   # ● 生成指令列表
  3.   #--------------------------------------------------------------------------
  4.   def make_command_list
  5.     add_command(Vocab::new_game, :new_game)
  6.     add_command(Vocab::continue, :continue, continue_enabled)
  7.     add_command(Vocab::shutdown, :shutdown)
  8.   end



Vocab::new_game
这好像是调用Vocab里的new_game方法的样子...
然而Vocab里
RUBY 代码复制
  1. def self.new_game;    command(18);  end   # 开始游戏



却有个command(18)
呃...这个command(18)在哪定义的?
我怎么找不到...
我猜command(18)的值是"开始游戏"吧...
作者: taroxd    时间: 2014-8-9 20:48
  1.   def self.command(command_id)
  2.     $data_system.terms.commands[command_id]
  3.   end
复制代码
不就在上面么




欢迎光临 Project1 (https://rpg.blue/) Powered by Discuz! X3.1