aboutsummaryrefslogtreecommitdiff
path: root/src/open_help.c
blob: 380d2ed41f5481f2936fcd8ab586bdb03ff5b4d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100


#include "tof.h" 


EXTERN void open_via_helppath(const char *name, const char *dir);

static t_class *open_help_class;




typedef struct _open_help {
  t_object  x_obj;
  char       buffer[MAXPDSTRING];
  //t_outlet* outlet1;
  //t_canvas* canvas;
  t_symbol* dir;
  
} t_open_help;



/*
// BANG: output the current root path
static void open_help_bang(t_open_help *x) {
		
	outlet_symbol(x->outlet1, x->dir  );
	
}
*/

//int canvas_open(t_canvas *x, const char *name, const char *ext,
//    char *dirresult, char **nameresult, unsigned int size, int bin)


static void open_help_symbol(t_open_help *x, t_symbol *s) {
	
	
    //int length = tof_anything_to_string(s,ac,av,tof_buf_temp_a);
	//strcat(tof_buf_temp_a,".pd");
    int length = strlen(s->s_name) + 4;
	char* name = getbytes(sizeof(*name)*length);
	strcpy(name,s->s_name);
	strcat(name,".pd");
	open_via_helppath(name, x->dir->s_name);
	freebytes(name, length * sizeof *name );
	
	
	}




static void open_help_free(t_open_help *x)
{
		
  //binbuf_free(x->binbuf);
    
}

void *open_help_new(t_symbol *s, int argc, t_atom *argv)
{
  t_open_help *x = (t_open_help *)pd_new(open_help_class);
    
  x->dir = tof_get_dir(tof_get_canvas());
  //strcpy(tof_buf_temp_a,x->dir->s_name);
  //strcat(tof_buf_temp_a,"/");
  //x->dir = gensym(tof_buf_temp_a);
  
  //x->canvas = tof_get_canvas();
  
 
  

  return (void *)x;
}

void open_help_setup(void) {
  open_help_class = class_new(gensym("open_help"),
        (t_newmethod)open_help_new,
        (t_method)open_help_free, sizeof(t_open_help),
        CLASS_DEFAULT, 
        A_GIMME, 0);

 // class_addbang(open_help_class, open_help_bang);
  //class_addanything(open_help_class,open_help_anything);
  class_addsymbol(open_help_class,open_help_symbol);
  //class_addmethod(open_help_class, 
   //     (t_method)open_help_append, gensym("append"),
    //    A_GIMME, 0);
  
  //class_addfloat (open_help_class, open_help_float);
  /*class_addmethod(open_help_class, 
        (t_method)open_help_set, gensym("set"),
        A_DEFFLOAT, 0);
*/
  //class_addlist (open_help_class, open_help_list);
  
}