Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Wynn
purr-data
Commits
83f3ac2d
Commit
83f3ac2d
authored
Aug 11, 2014
by
Mathieu L Bouchard
Browse files
add cmdline option -d 4 for outputting source filenames and linenumbers of sys_vgui commands
parent
3a489eb8
Changes
2
Hide whitespace changes
Inline
Side-by-side
pd/src/m_pd.h
View file @
83f3ac2d
...
...
@@ -8,10 +8,12 @@
extern
"C"
{
#endif
#include <stdarg.h>
#define PD_MAJOR_VERSION 0
#define PD_MINOR_VERSION 42
#define PD_BUGFIX_VERSION 7
#define PD_TEST_VERSION "20140
614
"
#define PD_TEST_VERSION "20140
811
"
#define PDL2ORK
/* old name for "MSW" flag -- we have to take it for the sake of many old
...
...
@@ -642,8 +644,21 @@ EXTERN int value_setfloat(t_symbol *s, t_float f);
/* ------- GUI interface - functions to send strings to TK --------- */
typedef
void
(
*
t_guicallbackfn
)(
t_gobj
*
client
,
t_glist
*
glist
);
EXTERN
void
sys_vgui
(
char
*
fmt
,
...);
EXTERN
void
sys_gui
(
char
*
s
);
#ifdef CHECK_VGUI_ARGS
EXTERN
void
sys_vgui
(
const
char
*
fmt
,
...)
__attribute__
((
format
(
printf
,
1
,
2
)));
EXTERN
void
sys_vguid
(
const
char
*
file
,
int
line
,
const
char
*
fmt
,
...)
__attribute__
((
format
(
printf
,
1
,
2
)));
EXTERN
void
sys_vvguid
(
const
char
*
file
,
int
line
,
const
char
*
fmt
,
va_list
)
__attribute__
((
format
(
printf
,
3
,
4
)));
#else
EXTERN
void
sys_vgui
(
const
char
*
fmt
,
...);
EXTERN
void
sys_vguid
(
const
char
*
file
,
int
line
,
const
char
*
fmt
,
...);
EXTERN
void
sys_vvguid
(
const
char
*
file
,
int
line
,
const
char
*
fmt
,
va_list
);
#endif
EXTERN
void
sys_gui
(
const
char
*
s
);
#define sys_vgui(args...) sys_vguid(__FILE__,__LINE__,args)
EXTERN
void
sys_pretendguibytes
(
int
n
);
EXTERN
void
sys_queuegui
(
void
*
client
,
t_glist
*
glist
,
t_guicallbackfn
f
);
EXTERN
void
sys_unqueuegui
(
void
*
client
);
...
...
@@ -660,7 +675,7 @@ extern t_class *glob_pdobject; /* object to send "pd" messages */
typedef
t_class
*
t_externclass
;
EXTERN
void
c_extern
(
t_externclass
*
cls
,
t_newmethod
newroutine
,
t_method
freeroutine
,
t_symbol
*
name
,
size_t
size
,
int
tiny
,
\
t_method
freeroutine
,
t_symbol
*
name
,
size_t
size
,
int
tiny
,
t_atomtype
arg1
,
...);
EXTERN
void
c_addmess
(
t_method
fn
,
t_symbol
*
sel
,
t_atomtype
arg1
,
...);
...
...
pd/src/s_inter.c
View file @
83f3ac2d
...
...
@@ -665,10 +665,11 @@ void blargh(void) {
#endif
}
void
sys_vgui
(
char
*
fmt
,
...)
{
static
int
lastend
=
-
1
;
void
sys_vvgui
(
const
char
*
fmt
,
va_list
ap
)
{
va_list
aq
;
va_copy
(
aq
,
ap
);
int
msglen
;
va_list
ap
;
if
(
sys_nogui
)
return
;
...
...
@@ -684,7 +685,6 @@ void sys_vgui(char *fmt, ...)
}
if
(
sys_guibufhead
>
sys_guibufsize
-
(
GUI_ALLOCCHUNK
/
2
))
sys_trytogetmoreguibuf
(
sys_guibufsize
+
GUI_ALLOCCHUNK
);
va_start
(
ap
,
fmt
);
msglen
=
vsnprintf
(
sys_guibuf
+
sys_guibufhead
,
sys_guibufsize
-
sys_guibufhead
,
fmt
,
ap
);
va_end
(
ap
);
...
...
@@ -699,7 +699,7 @@ void sys_vgui(char *fmt, ...)
(
msglen
>
GUI_ALLOCCHUNK
?
msglen
:
GUI_ALLOCCHUNK
);
sys_trytogetmoreguibuf
(
newsize
);
va_
start
(
ap
,
fmt
);
va_
copy
(
ap
,
aq
);
msglen2
=
vsnprintf
(
sys_guibuf
+
sys_guibufhead
,
sys_guibufsize
-
sys_guibufhead
,
fmt
,
ap
);
va_end
(
ap
);
...
...
@@ -714,9 +714,27 @@ void sys_vgui(char *fmt, ...)
}
sys_guibufhead
+=
msglen
;
sys_bytessincelastping
+=
msglen
;
int
fmtlen
=
strlen
(
fmt
);
if
(
fmtlen
)
lastend
=
fmt
[
fmtlen
-
1
];
}
void
sys_gui
(
char
*
s
)
#undef sys_vgui
void
sys_vgui
(
const
char
*
fmt
,
...)
{
va_list
ap
;
va_start
(
ap
,
fmt
);
sys_vvgui
(
fmt
,
ap
);
}
void
sys_vvguid
(
const
char
*
file
,
int
line
,
const
char
*
fmt
,
va_list
ap
)
{
if
((
sys_debuglevel
&
4
)
&&
/*line>=0 &&*/
(
lastend
==
'\n'
||
lastend
==
'\r'
||
lastend
==-
1
))
{
sys_vgui
(
"AT %s:%d; "
,
file
,
line
);
}
sys_vvgui
(
fmt
,
ap
);
}
void
sys_vguid
(
const
char
*
file
,
int
line
,
const
char
*
fmt
,
...)
{
va_list
ap
;
va_start
(
ap
,
fmt
);
sys_vvguid
(
file
,
line
,
fmt
,
ap
);
}
void
sys_gui
(
const
char
*
s
)
{
sys_vgui
(
"%s"
,
s
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment