Index: /lang/ruby/nario/nario/life/nario.rb
===================================================================
--- /lang/ruby/nario/nario/life/nario.rb (revision 20294)
+++ /lang/ruby/nario/nario/life/nario.rb (revision 20368)
@@ -155,4 +155,8 @@
       @y = w.y + w.h + 5
     end
+
+    def state
+      "x=#{@x} y=#{@y} dash_speed=#{@dash_speed} jump?#{@is_jumpping} fly?#{@is_fly} goal?#{@is_goal}"
+    end
   end
 end
Index: /lang/ruby/nario/nario/life.rb
===================================================================
--- /lang/ruby/nario/nario/life.rb (revision 20294)
+++ /lang/ruby/nario/nario/life.rb (revision 20368)
@@ -74,4 +74,8 @@
     end
 
+    def state
+      "x->#{@x} y->#{@y}"
+    end
+
     def head_range
       {:x_range => (@x+@w/6)..(@x+@w-@w/6), :y_range => @y..(@y+@h/6), :event => ("collide_#{extract_class_name(self)}_head".to_sym)}
@@ -106,5 +110,4 @@
     alias collide_pipe_left collide_floor_left
     alias collide_pipe_right collide_floor_right
-
 
     private
Index: /lang/ruby/nario/nario/scene/flowworld.rb
===================================================================
--- /lang/ruby/nario/nario/scene/flowworld.rb (revision 20294)
+++ /lang/ruby/nario/nario/scene/flowworld.rb (revision 20368)
@@ -17,5 +17,5 @@
     def render(screen)
       @renders.each{|re| re.each{|o| o.put_screen(screen) if o.x < SCREEN_WIDTH } }
-      puts "player: x -> #{@player.x} y -> #{@player.y}" if $DEBUG_PLAYER_WATCH_MODE
+      puts "player: #{@player.state}" if $DEBUG_PLAYER_WATCH_MODE
       @player.put_screen(screen)
     end
