Project1

标题: 获取Fiber实例的状态编号,定义alive? [打印本页]

作者: fux2    时间: 2017-12-4 20:54
标题: 获取Fiber实例的状态编号,定义alive?
根据官方文档:http://ruby-doc.org/core-2.2.0/Fiber.html
使用fiber实例的alive?方法需要
You need to require 'fiber' before using this method.

有时候VA里也需要这么个操作,所以就出现了下面的玩意儿
思路也很简单,因为在resume一个status为TERMINATED的fiber时,会抛出dead fiber异常,
也就是说本身Fiber就存在判定自身状态的方法。通过这个提示的位置逆向出储存状态编号的地址,接着根据官方提供的源码逻辑,来定义alive?方法

RUBY 代码复制
  1. class Fiber
  2.  
  3.   Memcopy = Win32API.new('kernel32','RtlMoveMemory','pll','l')
  4.  
  5.   CREATING = 0
  6.   RUNNING = 1
  7.   TERMINATED = 2
  8.  
  9.   def status
  10.     buf = "\0"*4
  11.     Memcopy.call(buf,self.object_id*2+16,4)
  12.     objPtr = buf.unpack("L").first
  13.     return 0 if objPtr == 0
  14.     Memcopy.call(buf,objPtr+480,4)
  15.     return buf.unpack("L").first
  16.   end
  17.  
  18.   def alive?
  19.     return self.status != TERMINATE
  20.   end
  21.  
  22. end




作者: ⑨姐姐    时间: 2017-12-5 08:59
也来回复一下自己写的不用黑科技的#alive,以及带了个::current和::fork

RUBY 代码复制
  1. class Fiber
  2.   @@call_stack = []
  3.  
  4.   attr_accessor :alive
  5.   attr_accessor :children
  6.  
  7.   alias old_initialize initialize
  8.   def initialize(&block)
  9.     old_initialize(&block)
  10.     @alive = true
  11.     @children = []
  12.   end
  13.  
  14.   def self.current
  15.     @@call_stack.last
  16.   end
  17.  
  18.   alias old_resume resume
  19.   def resume
  20.     @@call_stack.push(self)
  21.     @children.each { |child|
  22.       child.resume
  23.     }
  24.     @children.delete_if { |child|
  25.       !child.alive
  26.     }
  27.     begin
  28.       old_resume
  29.     rescue FiberError => e
  30.       @alive = false
  31.     end
  32.     @@call_stack.pop
  33.   end
  34.  
  35.   def self.fork(&block)
  36.     if Fiber.current
  37.       child = Fiber.new(&block)
  38.       Fiber.current.children << child
  39.       child.resume
  40.     end
  41.   end
  42. end


测试代码

作者: chd114    时间: 2017-12-5 14:09
和dead取反的区别是什么呢?
作者: shitake    时间: 2017-12-5 20:39
  1.       @fiber = Fiber.new do
  2.         @callback.call(helper, info)
  3.         @fiber = nil
  4.       end
复制代码


弱鸡如我就用这样的土办法了
作者: guoxiaomi    时间: 2021-5-24 08:58
本帖最后由 guoxiaomi 于 2021-5-26 16:17 编辑

写了几天上论坛一搜Fiber,果然造了轮子……本意是准备写一个桌游模拟器,但是想在游戏主流程结算卡住的时候也能打开菜单或者播放动画等,所以决定使用Fiber。
然后发现坑爹的rgss3居然没有alive?和current方法,跟文档上不一致啊哭……

Fiber_Tree

定义好process后,简单的写一个scene就可以调用了。Fiber有3种唤起模式:start,join,listen。Fiber.yield里抛出一个lambda表达式作为此fiber的苏醒条件。

2021/05/26:修复了几个BUG。黄鸡说得对,这种东西自己实现一遍理解会更深。这些代码就给后来的人做个参考吧。




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