|
FAUST compiler
0.9.9.6b8
|
00001 /************************************************************************ 00002 ************************************************************************ 00003 FAUST compiler 00004 Copyright (C) 2003-2004 GRAME, Centre National de Creation Musicale 00005 --------------------------------------------------------------------- 00006 This program is free software; you can redistribute it and/or modify 00007 it under the terms of the GNU General Public License as published by 00008 the Free Software Foundation; either version 2 of the License, or 00009 (at your option) any later version. 00010 00011 This program is distributed in the hope that it will be useful, 00012 but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00014 GNU General Public License for more details. 00015 00016 You should have received a copy of the GNU General Public License 00017 along with this program; if not, write to the Free Software 00018 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 00019 ************************************************************************ 00020 ************************************************************************/ 00021 00022 #ifndef __BLOCKSCHEMA__ 00023 #define __BLOCKSCHEMA__ 00024 00025 00026 #include "schema.h" 00027 #include <vector> 00028 #include <string> 00029 00035 class blockSchema : public schema 00036 { 00037 protected: 00038 const string fText; 00039 const string fColor; 00040 const string fLink; 00041 00042 // fields only defined after place() is called 00043 vector<point> fInputPoint; 00044 vector<point> fOutputPoint; 00045 00046 00047 public: 00048 friend schema* makeBlockSchema ( unsigned int inputs, 00049 unsigned int outputs, 00050 const string& name, 00051 const string& color, 00052 const string& link); 00053 00054 virtual void place(double x, double y, int orientation); 00055 virtual void draw(device& dev); 00056 virtual point inputPoint(unsigned int i) const; 00057 virtual point outputPoint(unsigned int i) const; 00058 00059 protected: 00060 blockSchema ( unsigned int inputs, unsigned int outputs, 00061 double width, double height, 00062 const string& name, const string& color, 00063 const string& link); 00064 00065 void placeInputPoints(); 00066 void placeOutputPoints(); 00067 00068 void drawRectangle(device& dev); 00069 void drawText(device& dev); 00070 void drawOrientationMark(device& dev); 00071 void drawInputWires(device& dev); 00072 void drawOutputWires(device& dev); 00073 00074 void collectTraits(collector& c); 00075 void collectInputWires(collector& c); 00076 void collectOutputWires(collector& c); 00077 00078 }; 00079 00080 #endif 00081 00082
1.8.0