spoutSend.cpp 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. ////////////////////////////////////////////////////////
  2. //
  3. // GEM - Graphics Environment for Multimedia
  4. //
  5. // Implementation file
  6. //
  7. // Copyright (c) 2002-2011 IOhannes m zmölnig. forum::für::umläute. IEM. zmoelnig@iem.at
  8. // zmoelnig@iem.kug.ac.at
  9. // For information on usage and redistribution, and for a DISCLAIMER
  10. // * OF ALL WARRANTIES, see the file, "GEM.LICENSE.TERMS"
  11. //
  12. // this file has been generated...
  13. ////////////////////////////////////////////////////////
  14. #include "spoutSend.h"
  15. CPPEXTERN_NEW_WITH_ONE_ARG(spoutSend, t_symbol*,A_DEFSYM);
  16. /////////////////////////////////////////////////////////
  17. // Constructor
  18. //
  19. spoutSend :: spoutSend (t_symbol* s)
  20. {
  21. w=512;
  22. h=512;
  23. sym = s;
  24. texture=false;
  25. bInitialized = false;
  26. m_inTexID = inlet_new(this->x_obj, &this->x_obj->ob_pd, &s_float, gensym("texture"));
  27. spoutsender = GetSpout();
  28. if(!spoutsender) {
  29. post("spout init failed");
  30. }
  31. sendertexture = 0;
  32. }
  33. /////////////////////////////////////////////////////////
  34. // Destructor
  35. //
  36. spoutSend :: ~spoutSend () {
  37. spoutsender->ReleaseSender();
  38. delete spoutsender;
  39. spoutsender = NULL;
  40. }
  41. /////////////////////////////////////////////////////////
  42. // Render
  43. //
  44. void spoutSend :: render(GemState *state) {
  45. if(!bInitialized) {
  46. // Create the sender
  47. bInitialized = spoutsender->CreateSender(sym->s_name, h, w);
  48. }
  49. if(bInitialized) {if(texture!=false){
  50. spoutsender->SendTexture(spoutTexture, num,w, h);
  51. }
  52. }
  53. }
  54. /////////////////////////////////////////////////////////
  55. // Variables
  56. //
  57. void spoutSend :: heightMess(t_floatarg id, t_floatarg Theight, t_floatarg Twidth, t_floatarg Tnum, t_floatarg Tmode) {
  58. spoutTexture=int(id);
  59. h=int(Twidth);
  60. w=int(Theight);
  61. num=int(Tnum);
  62. mode=Tmode;
  63. texture=true;
  64. }
  65. void spoutSend :: setMess(t_symbol*indexed) {
  66. sym=indexed;
  67. bInitialized=false;
  68. spoutsender->ReleaseSender();
  69. }
  70. void spoutSend :: infoMess()
  71. {
  72. post("spoutSend v.1 by ArNO Courcelle, 01/2015 \n enjoy!");
  73. }
  74. /////////////////////////////////////////////////////////
  75. // static member functions
  76. //
  77. void spoutSend :: obj_setupCallback(t_class *classPtr) {
  78. class_addmethod(classPtr, reinterpret_cast<t_method>(&spoutSend::setMessCallback),
  79. gensym("set"), A_SYMBOL, A_NULL);
  80. class_addmethod(classPtr, reinterpret_cast<t_method>(&spoutSend::heightMessCallback),
  81. gensym("texture"), A_FLOAT,A_FLOAT,A_FLOAT,A_FLOAT,A_FLOAT, A_NULL);
  82. class_addmethod(classPtr, reinterpret_cast<t_method>(&spoutSend::info),
  83. gensym("info"), A_NULL);
  84. }
  85. void spoutSend :: info (void* data)
  86. {
  87. GetMyClass(data)->infoMess();//post("spoutSend v.1 by ArNO Courcelle, 01/2014 n/");
  88. }
  89. void spoutSend :: setMessCallback(void *data, t_symbol*indexed)
  90. {
  91. GetMyClass(data)->setMess(indexed);
  92. }
  93. void spoutSend :: heightMessCallback(void *data, t_floatarg Tsize, t_floatarg Theight, t_floatarg Twidth, t_floatarg Tnum, t_floatarg Tmode)
  94. {
  95. GetMyClass(data)->heightMess((Tsize),static_cast<int>(Theight),static_cast<int>(Twidth),static_cast<int>(Tnum),static_cast<int>(Tmode));
  96. }