From 6c274defd904dedd6cb89c002f5eeced6c079d47 Mon Sep 17 00:00:00 2001 From: Samo Penic <samo.penic@gmail.com> Date: Tue, 11 Dec 2018 11:42:22 +0000 Subject: [PATCH] Added stretching variables --- src/io.c | 13 +++++++++++++ 1 files changed, 13 insertions(+), 0 deletions(-) diff --git a/src/io.c b/src/io.c index 65a426b..c6a35cb 100644 --- a/src/io.c +++ b/src/io.c @@ -1185,12 +1185,23 @@ CFG_SIMPLE_FLOAT("c0",&tape->c0), CFG_SIMPLE_FLOAT("w",&tape->w), CFG_SIMPLE_FLOAT("F",&tape->F), +/* Variables related to plane confinement */ + CFG_INT("plane_confinement_switch", 0, CFGF_NONE), + CFG_FLOAT("plane_d", 15, CFGF_NONE), + CFG_FLOAT("plane_F", 1000, CFGF_NONE), +/* Variables related to stretching */ + CFG_FLOAT("stretchswitch", 0, CFGF_NONE), + CFG_FLOAT("xkA0",0,CFGF_NONE), CFG_END() }; cfg_t *cfg; ts_uint retval; cfg = cfg_init(opts, 0); retval=cfg_parse_buf(cfg, buffer); + tape->plane_confinement_switch=cfg_getint(cfg,"plane_confinement_switch"); + tape->plane_d=cfg_getfloat(cfg,"plane_d"); + tape->plane_F=cfg_getfloat(cfg,"plane_F"); + if(retval==CFG_FILE_ERROR){ fatal("No tape file.",100); } @@ -1219,6 +1230,8 @@ ts_bool getcmdline_tape(cfg_t *cfg, char *opts){ char *commands, *backup, *saveptr, *saveopptr, *command, *operator[2]; + operator[0]=0; + operator[1]=0; ts_uint i,j; commands=(char *)malloc(10000*sizeof(char)); backup=commands; //since the pointer to commands will be lost, we acquire a pointer that will serve as backup. -- Gitblit v1.9.3