MAX/MSP SDK学习02:普通入口、出口 代理入口的创建和使用

2023-11-21 05:52

本文主要是介绍MAX/MSP SDK学习02:普通入口、出口 代理入口的创建和使用,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

1. 普通入口、出口的创建和使用

#include "ext.h"			// you must include this - it contains the external object's link to available Max functions
#include "ext_obex.h"		// this is required for all objects using the newer style for writing objects.typedef struct _plussz {	// defines our object's internal variables for each instance in a patcht_object p_ob;			// object header - ALL objects MUST begin with this...long p_value0;			// 存储入口0的值long p_value1;			// 存储入口1的值long p_value2;			// 存储入口2的值void* p_outlet0;		// 定义出口指针void* p_outlet1;		// 定义出口指针
} t_plussz;// these are prototypes for the methods that are defined below
void plussz_bang(t_plussz* x);
void plussz_int(t_plussz* x, long n);
void plussz_in1(t_plussz* x, long n);
void plussz_in2(t_plussz* x, long n);
void plussz_assist(t_plussz* x, void* b, long m, long a, char* s);
void* plussz_new(long n);t_class* plussz_class;		// global pointer to the object class - so max can reference the objectvoid ext_main(void* r) {t_class* c;c = class_new("plussz", (method)plussz_new, (method)NULL, sizeof(t_plussz), 0L, A_DEFLONG, 0);class_addmethod(c, (method)plussz_bang, "bang", 0);			// the method it uses when it gets a bang in the left inletclass_addmethod(c, (method)plussz_int, "int", A_LONG, 0);	// 若最左入口传递long(double)数据,其消息必须为"int"("float"). 其余入口依次为"in1"("ft1")、"in2"("ft2")... class_addmethod(c, (method)plussz_in1, "in1", A_LONG, 0);	// 中间入口class_addmethod(c, (method)plussz_in2, "in2", A_LONG, 0);	// 最右入口// "ft1" is the special message for floatsclass_addmethod(c, (method)plussz_assist, "assist", A_CANT, 0);	// (optional) assistance method needs to be declared like thisclass_register(CLASS_BOX, c);plussz_class = c;post("plussz object loaded...", 0);	// post any important info to the max window when our class is loaded
}void* plussz_new(long n) {		// n = int argument typed into object box (A_DEFLONG) -- defaults to 0 if no args are typedt_plussz* x;				// local variable (pointer to a t_plussz data structure)x = (t_plussz*)object_alloc(plussz_class); // create a new instance of this object// 入口创建顺序:从右向左. 入口0默认存在intin(x, 2);					// 创建入口2intin(x, 1);					// 创建入口1// 出口创建顺序:从右向左. 默认无出口,需自己创建x->p_outlet1 = bangout(x);  // 创建出口2,发送bang消息x->p_outlet0 = intout(x);	// 创建出口1,发送int消息x->p_value0 = n;			// set initial (default) left operand value in the instance's data structurex->p_value1 = n;			// set initial (default) right operand value (n = variable passed to plussz_new)x->p_value2 = n;			// set initial (default) right operand value (n = variable passed to plussz_new)post("new plussz object instance added to patch...", 0); // post important info to the max window when new instance is createdreturn(x);					// return a reference to the object instance
}void plussz_assist(t_plussz* x, void* b, long m, long a, char* s) { // 4 final arguments are always the same for the assistance methodif (m == ASSIST_OUTLET)sprintf(s, "Sum of Left and Right Inlets");else {switch (a) {case 0:sprintf(s, "Inlet %ld: Left Operand (Causes Output)", a);break;case 1:sprintf(s, "Inlet %ld: Right Operand (Added to Left)", a);break;}}
}void plussz_bang(t_plussz* x) {		// x = reference to this instance of the objectlong sum;							// local variable for this methodsum = x->p_value0 + x->p_value1;		// add left and right operandsoutlet_int(x->p_outlet0, sum);		// 求和结果从入口0发出outlet_bang(x->p_outlet1);			// bang消息从入口1发出post("int: %d, in1: %d, in2: %d", x->p_value0, x->p_value1, x->p_value2);
}void plussz_int(t_plussz* x, long n) {  // x = the instance of the object; n = the int received in the left inletx->p_value0 = n;					// store left operand value in instance's data structureplussz_bang(x);						// ... call the bang method to sum and send out our outlet
}void plussz_in1(t_plussz* x, long n) {	// x = the instance of the object, n = the int received in the right inletx->p_value1 = n;					// just store right operand value in instance's data structure and do nothing else
}void plussz_in2(t_plussz* x, long n) {x->p_value2 = n;
}

2. 代理入口的创建和使用

#include "ext.h"				// you must include this - it contains the external object's link to available Max functions
#include "ext_obex.h"			// this is required for all objects using the newer style for writing objects.typedef struct _proxyTest {t_object ob;t_atom	l;			// stored value from left inlett_atom	r;			// stored value from right inletvoid* proxy;		// 代理入口void* outlet;		// 出口long proxy_inletnum;	// 当前正在使用的入口
} t_proxyTest;// these are prototypes for the methods that are defined below
void* proxyTest_new(long n);
void proxyTest_free(t_proxyTest* x);
void proxyTest_assist(t_proxyTest* x, void* b, long m, long a, char* s);
void proxyTest_bang(t_proxyTest* x);
void proxyTest_int(t_proxyTest* x, long n);
void proxyTest_float(t_proxyTest* x, double f);t_class* proxyTest_class;		// global pointer to the object class - so max can reference the object//--------------------------------------------------------------------------
void ext_main(void* r) {t_class* c;c = class_new("proxyTest", (method)proxyTest_new, (method)proxyTest_free, sizeof(t_proxyTest), 0L, A_DEFLONG, 0);class_addmethod(c, (method)proxyTest_bang, "bang", 0);			 // the method it uses when it gets a bang in the left inletclass_addmethod(c, (method)proxyTest_int, "int", A_LONG, 0);		 // the method for ints in any inletclass_addmethod(c, (method)proxyTest_float, "float", A_FLOAT, 0);	 // the method for floats in any inletclass_addmethod(c, (method)proxyTest_assist, "assist", A_CANT, 0); // (optional) assistance method needs to be declared like thisclass_register(CLASS_BOX, c);proxyTest_class = c;post("proxyTest object loaded...", 0);	// post any important info to the max window when our class is loaded
}//--------------------------------------------------------------------------
void* proxyTest_new(long n) {  	// n = int argument typed into object box (A_DEFLONG) -- defaults to 0 if no args are typedt_proxyTest* x;				// local variable (pointer to a t_proxyTest data structure)x = (t_proxyTest*)object_alloc(proxyTest_class); // create a new instance of this objectif (x) {x->proxy = proxy_new(x, 1, &x->proxy_inletnum);	// 创建代理入口x->outlet = outlet_new(x, NULL);				// fully-flexible outlet for any type// 赋初值atom_setlong(&x->l, 0);atom_setlong(&x->r, 0);post(" new proxyTest object instance added to patch...", 0); // post important info to the max window when new instance is created}return(x);					// return a reference to the object instance
}void proxyTest_free(t_proxyTest* x) {object_free(x->proxy);		// frees all resources associated with the proxy
}//--------------------------------------------------------------------------
void proxyTest_assist(t_proxyTest* x, void* b, long m, long a, char* s) { // 4 final arguments are always the same for the assistance methodif (m == ASSIST_INLET) {switch (a) {case 0:sprintf(s, "Inlet %ld: Left Operand (Causes Output)", a);break;case 1:sprintf(s, "Inlet %ld: Right Operand (Added to Left)", a);break;}} elsesprintf(s, "Sum of Left and Right Inlets");
}void proxyTest_bang(t_proxyTest* x) {long lop;float fop;if (x->l.a_type == A_LONG && x->r.a_type == A_LONG) {lop = atom_getlong(&x->l) + atom_getlong(&x->r);outlet_int(x->outlet, lop);  // 输出long} else { // OUTPUT A FLOATfop = atom_getfloat(&x->l) + atom_getfloat(&x->r);outlet_float(x->outlet, fop);  // 输出double}
}void proxyTest_int(t_proxyTest* x, long n) {  // 有入口收到long型值long inlet = proxy_getinlet((t_object*)x); // 用proxy_getinlet函数判断哪个入口接收到值,本质是判断proxy_inletnum的值post("int came in via inlet %ld", inlet);if (inlet == 1) { // RIGHT INLETatom_setlong(&x->r, n); // SET INT VAL} else { // LEFT INLET  左入口有值则触发bangatom_setlong(&x->l, n);proxyTest_bang(x); // bang for left inlet, trigger calculation}
}void proxyTest_float(t_proxyTest* x, double f) { // 有入口收到double型值long inlet = proxy_getinlet((t_object*)x); // 用proxy_getinlet函数判断哪个入口接收到值post("float came in via inlet %ld", inlet);if (inlet == 1) { // RIGHT INLETatom_setfloat(&x->r, f); // SET FLOAT VAL} else { // LEFT INLETatom_setfloat(&x->l, f);proxyTest_bang(x); // bang for left inlet, trigger calculation}
}

这篇关于MAX/MSP SDK学习02:普通入口、出口 代理入口的创建和使用的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/400280

相关文章

如何使用celery进行异步处理和定时任务(django)

《如何使用celery进行异步处理和定时任务(django)》文章介绍了Celery的基本概念、安装方法、如何使用Celery进行异步任务处理以及如何设置定时任务,通过Celery,可以在Web应用中... 目录一、celery的作用二、安装celery三、使用celery 异步执行任务四、使用celery

使用Python绘制蛇年春节祝福艺术图

《使用Python绘制蛇年春节祝福艺术图》:本文主要介绍如何使用Python的Matplotlib库绘制一幅富有创意的“蛇年有福”艺术图,这幅图结合了数字,蛇形,花朵等装饰,需要的可以参考下... 目录1. 绘图的基本概念2. 准备工作3. 实现代码解析3.1 设置绘图画布3.2 绘制数字“2025”3.3

JAVA中整型数组、字符串数组、整型数和字符串 的创建与转换的方法

《JAVA中整型数组、字符串数组、整型数和字符串的创建与转换的方法》本文介绍了Java中字符串、字符数组和整型数组的创建方法,以及它们之间的转换方法,还详细讲解了字符串中的一些常用方法,如index... 目录一、字符串、字符数组和整型数组的创建1、字符串的创建方法1.1 通过引用字符数组来创建字符串1.2

Jsoncpp的安装与使用方式

《Jsoncpp的安装与使用方式》JsonCpp是一个用于解析和生成JSON数据的C++库,它支持解析JSON文件或字符串到C++对象,以及将C++对象序列化回JSON格式,安装JsonCpp可以通过... 目录安装jsoncppJsoncpp的使用Value类构造函数检测保存的数据类型提取数据对json数

python使用watchdog实现文件资源监控

《python使用watchdog实现文件资源监控》watchdog支持跨平台文件资源监控,可以检测指定文件夹下文件及文件夹变动,下面我们来看看Python如何使用watchdog实现文件资源监控吧... python文件监控库watchdogs简介随着Python在各种应用领域中的广泛使用,其生态环境也

Python中构建终端应用界面利器Blessed模块的使用

《Python中构建终端应用界面利器Blessed模块的使用》Blessed库作为一个轻量级且功能强大的解决方案,开始在开发者中赢得口碑,今天,我们就一起来探索一下它是如何让终端UI开发变得轻松而高... 目录一、安装与配置:简单、快速、无障碍二、基本功能:从彩色文本到动态交互1. 显示基本内容2. 创建链

springboot整合 xxl-job及使用步骤

《springboot整合xxl-job及使用步骤》XXL-JOB是一个分布式任务调度平台,用于解决分布式系统中的任务调度和管理问题,文章详细介绍了XXL-JOB的架构,包括调度中心、执行器和Web... 目录一、xxl-job是什么二、使用步骤1. 下载并运行管理端代码2. 访问管理页面,确认是否启动成功

使用Nginx来共享文件的详细教程

《使用Nginx来共享文件的详细教程》有时我们想共享电脑上的某些文件,一个比较方便的做法是,开一个HTTP服务,指向文件所在的目录,这次我们用nginx来实现这个需求,本文将通过代码示例一步步教你使用... 在本教程中,我们将向您展示如何使用开源 Web 服务器 Nginx 设置文件共享服务器步骤 0 —

Java中switch-case结构的使用方法举例详解

《Java中switch-case结构的使用方法举例详解》:本文主要介绍Java中switch-case结构使用的相关资料,switch-case结构是Java中处理多个分支条件的一种有效方式,它... 目录前言一、switch-case结构的基本语法二、使用示例三、注意事项四、总结前言对于Java初学者

Golang使用minio替代文件系统的实战教程

《Golang使用minio替代文件系统的实战教程》本文讨论项目开发中直接文件系统的限制或不足,接着介绍Minio对象存储的优势,同时给出Golang的实际示例代码,包括初始化客户端、读取minio对... 目录文件系统 vs Minio文件系统不足:对象存储:miniogolang连接Minio配置Min