tags:

views:

15

answers:

1

Hi, I've this ChucK code:

"examples/vento.txt" => string filename;
FileIO fio;

// open a file
fio.open(filename, FileIO.READ);

// ensure it's ok
if(!fio.good()) {
    cherr <= "can't open file: " <= filename <= " for reading..." <= IO.newline();
    me.exit();
}

fio.readLine() => string velocity;

fio.readLine() => string direction;

the file is:

10
12

(it's updated with python every minute)

and I want to convert velocity and direction in int (or better float).

How can I do this?

Thanks

+1  A: 

Use atoi and atof in the Std library. Let's say you want to translate from 0-127 (MIDI velocity) to a float between 0 and 1.0 (much more convenient for unit generators):

Std.atoi(fio.readLine()) => int midi_velocity;
midi_velocity/127.0 => float velocity;
<<< velocity >>>;

should print 0.078740 :(float) for an input of 10.

Or if you want to just go straight to float:

Std.atof(fio.readLine()) => float velocity;
<<< velocity >>>;

which prints 10.000000 :(float).

Owen S.