/[svn]/linuxsampler/trunk/src/common/global.h
ViewVC logotype

Contents of /linuxsampler/trunk/src/common/global.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1212 - (show annotations) (download) (as text)
Tue May 29 23:59:36 2007 UTC (16 years, 10 months ago) by schoenebeck
File MIME type: text/x-c++hdr
File size: 3181 byte(s)
* added highly experimental support for on-the-fly instrument editing
  within the sampler's process (by using instrument editor plugins),
  you'll notice the new "Registered instrument editors:" message on
  startup, the plugin path can be overridden at compile time with
  ./configure --enable-plugin-dir=/some/dir
* added a new LSCP command "EDIT INSTRUMENT <sampler-channel>" to spawn
  a matching instrument editor for the instrument on the given sampler
  channel (LSCP command syntax might be subject to change soon)
* config.h is not going to be installed along with liblinuxsampler's
  API header files anymore (not necessary anymore)
* take care of $(DESTDIR) when creating the instruments DB on 'make
  install' rule (needed for packaging and cross compilation)
* bumped version to 0.4.0.5cvs

1 /***************************************************************************
2 * *
3 * LinuxSampler - modular, streaming capable sampler *
4 * *
5 * Copyright (C) 2003, 2004 by Benno Senoner and Christian Schoenebeck *
6 * Copyright (C) 2005 - 2007 Christian Schoenebeck *
7 * *
8 * This program is free software; you can redistribute it and/or modify *
9 * it under the terms of the GNU General Public License as published by *
10 * the Free Software Foundation; either version 2 of the License, or *
11 * (at your option) any later version. *
12 * *
13 * This program is distributed in the hope that it will be useful, *
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
16 * GNU General Public License for more details. *
17 * *
18 * You should have received a copy of the GNU General Public License *
19 * along with this program; if not, write to the Free Software *
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, *
21 * MA 02111-1307 USA *
22 ***************************************************************************/
23
24 // All application global declarations are defined here.
25
26 #ifndef __LS_GLOBAL_H__
27 #define __LS_GLOBAL_H__
28
29 #include <stdlib.h>
30 #include <stdint.h>
31 #include <stdio.h>
32
33 #include <string>
34 #include <sstream>
35
36 #if HAVE_CONFIG_H
37 # include <config.h>
38 #endif
39
40 #if CONFIG_DEBUG_LEVEL > 0
41 # define dmsg(debuglevel,x) if (CONFIG_DEBUG_LEVEL >= debuglevel) {printf x; fflush(stdout);}
42 #else
43 # define dmsg(debuglevel,x)
44 #endif // CONFIG_DEBUG_LEVEL > 0
45
46 #define EMMS __asm__ __volatile__ ("emms" ::: "st", "st(1)", "st(2)", "st(3)", "st(4)", "st(5)", "st(6)", "st(7)", "mm0", "mm1", "mm2", "mm3", "mm4", "mm5", "mm6", "mm7")
47
48 /// defines globally the bit depth of used samples
49 typedef int16_t sample_t;
50
51 typedef std::string String;
52
53 /**
54 * Whether a function / method call was successful, or if warnings or even an
55 * error occured.
56 */
57 enum result_type_t {
58 result_type_success,
59 result_type_warning,
60 result_type_error
61 };
62
63 /**
64 * Used whenever a detailed description of the result of a function / method
65 * call is needed.
66 */
67 struct result_t {
68 result_type_t type; ///< success, warning or error
69 int code; ///< warning or error code
70 String message; ///< detailed warning or error message
71 };
72
73 template<class T> inline String ToString(T o) {
74 std::stringstream ss;
75 ss << o;
76 return ss.str();
77 }
78
79 class Runnable {
80 public:
81 virtual ~Runnable() { }
82 virtual void Run() = 0;
83 };
84
85 extern double GLOBAL_VOLUME;
86
87 #endif // __LS_GLOBAL_H__

  ViewVC Help
Powered by ViewVC