Refactoring of class process in faustexp.ml.
authorWANG <wang@wang-OptiPlex-780.(none)>
Mon, 5 Aug 2013 16:23:43 +0000 (18:23 +0200)
committerWANG <wang@wang-OptiPlex-780.(none)>
Mon, 5 Aug 2013 16:23:43 +0000 (18:23 +0200)
interpretor/faustexp.ml
interpretor/types.ml

index 684eb75..8ad37aa 100644 (file)
@@ -6,12 +6,14 @@
 *)
 
 open Types;;
 *)
 
 open Types;;
+open Basic;;
 open Value;;
 open Signal;;
 open Beam;;
 
 exception NotYetDone;;
 exception Dimension_error of string;;
 open Value;;
 open Signal;;
 open Beam;;
 
 exception NotYetDone;;
 exception Dimension_error of string;;
+exception Process_error of string;;
 
 class dimension : int * int -> dimension_type = 
   fun (init : int * int) -> 
 
 class dimension : int * int -> dimension_type = 
   fun (init : int * int) -> 
@@ -91,17 +93,51 @@ class process : faust_exp -> process_type =
 class proc_const : faust_exp -> process_type = 
   fun (exp_init : faust_exp) ->
     object (self)
 class proc_const : faust_exp -> process_type = 
   fun (exp_init : faust_exp) ->
     object (self)
-      val exp = exp_init
-      val dim = 
-      method evaluate = fun b1 ->
-       
+      val _exp = exp_init
+      val _dim = new dimension (0,1)
+      val _delay = 0
+      val _const = 
+       match exp_init with
+       | Const b -> b
+       | _ -> raise (Process_error "const process constructor.")
+
+      method exp = _exp
+      method dim = _dim
+      method delay = _delay
+      method const = _const
+
+      method eval : beam_type -> beam_type = 
+       fun (input : beam_type) ->
+         if input = [||] then
+           new beam [| new signal 0 (fun t -> new value self#const)|]
+         else
+           raise (Process_error "proc_const accepts no input.")
       end;;
 
 
       end;;
 
 
-class exp_ident = 
-  object
-      inherit expression
-
+class exp_ident : faust_exp -> process_type = 
+  fun (exp_init : faust_exp) ->
+    object (self)
+      val _exp = exp_init
+      val _symbol = 
+       match exp_init with
+       | Ident s -> s
+       | _ -> raise (Process_error "ident process constructor.")
+      val _dim = dimension_of_symbol _symbol
+      val _delay = 0
+      
+
+      method exp = _exp
+      method dim = _dim
+      method delay = _delay
+      method const = _const
+
+      method eval : beam_type -> beam_type = 
+       fun (input : beam_type) ->
+         if input = [||] then
+           new beam [| new signal 0 (fun t -> new value self#const)|]
+         else
+           raise (Process_error "proc_const accepts no input.")
       end;;
 
 
       end;;
 
 
index 6fa6513..5e88a1a 100644 (file)
@@ -144,6 +144,5 @@ class type process_type =
       method exp : faust_exp
       method dim : dimension_type
       method delay : int
       method exp : faust_exp
       method dim : dimension_type
       method delay : int
-      method to_string : string
       method evaluate : beam_type -> beam_type
     end;;
       method evaluate : beam_type -> beam_type
     end;;