gosu 0.7.13.2 → 0.7.13.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -37,7 +37,8 @@ namespace Gosu
37
37
  //! An instance of a Sample playing. Can be used to stop sounds dynamically,
38
38
  //! or to check if they are finished.
39
39
  //! It is recommended that you throw away sample instances if possible,
40
- //! as they could accidentally refer to sounds played very long ago.
40
+ //! as they could accidentally refer to other sounds being played after
41
+ //! a very long time has passed.
41
42
  class SampleInstance
42
43
  {
43
44
  int handle, extra;
@@ -25,22 +25,30 @@ namespace Gosu
25
25
  //! Constructs a font that can be drawn onto the graphics object.
26
26
  //! \param fontName Name of a system font, or a filename to a TTF
27
27
  //! file (must contain '/', does not work on Linux).
28
- //! \param height Height of the font, in pixels.
28
+ //! \param fontHeight Height of the font, in pixels.
29
+ //! \param fontFlags Flags used to render individual characters of
30
+ //! the font.
29
31
  Font(Graphics& graphics, const std::wstring& fontName,
30
- unsigned height);
32
+ unsigned fontHeight, unsigned fontFlags = ffBold);
31
33
  ~Font();
32
-
34
+
35
+ //! Returns the name of the font that was used to create it.
36
+ std::wstring name() const;
37
+
33
38
  //! Returns the height of the font, in pixels.
34
39
  unsigned height() const;
35
-
40
+
41
+ //! Returns the flags used to create the font characters.
42
+ unsigned flags() const;
43
+
36
44
  //! Returns the width, in pixels, the given text would occupy if drawn.
37
45
  double textWidth(const std::wstring& text, double factorX = 1) const;
38
-
46
+
39
47
  //! Draws text so the top left corner of the text is at (x; y).
40
48
  void draw(const std::wstring& text, double x, double y, ZPos z,
41
49
  double factorX = 1, double factorY = 1,
42
50
  Color c = Colors::white, AlphaMode mode = amDefault) const;
43
-
51
+
44
52
  //! Draws text at a position relative to (x; y).
45
53
  //! \param relX Determines where the text is drawn horizontally. If
46
54
  //! relX is 0.0, the text will be to the right of x, if it is 1.0,
@@ -120,28 +120,29 @@ struct Gosu::Sample::SampleData : boost::noncopyable
120
120
 
121
121
  Gosu::Sample::Sample(Audio& audio, const std::wstring& filename)
122
122
  {
123
- if (noSound)
124
- return;
125
-
126
- Buffer buf;
127
- loadFile(buf, filename);
123
+ if (noSound)
124
+ return;
128
125
 
129
- // Forward.
130
- Sample(audio, buf.frontReader()).data.swap(data);
126
+ data.reset(new SampleData);
127
+ // Saved locally because Mix_LoadWAV is a macro, wouldn't trust it...
128
+ std::string filenameUTF8 = wstringToUTF8(filename);
129
+ data->rep = Mix_LoadWAV(filenameUTF8.c_str());
130
+ if (data->rep == NULL)
131
+ throwLastSDLError();
131
132
  }
132
133
 
133
134
  Gosu::Sample::Sample(Audio& audio, Reader reader) {
134
- if (noSound)
135
- return;
135
+ if (noSound)
136
+ return;
136
137
 
137
- std::size_t bufsize = reader.resource().size() - reader.position();
138
- Uint8* buffer = new Uint8[bufsize];
139
- reader.read(buffer, bufsize);
140
-
141
- data.reset(new SampleData);
142
- data->rep = Mix_LoadWAV_RW(SDL_RWFromMem(buffer, bufsize), 1);
143
- if (data->rep == NULL)
144
- throwLastSDLError();
138
+ std::size_t bufsize = reader.resource().size() - reader.position();
139
+ Uint8* buffer = static_cast<Uint8*>(malloc(bufsize));
140
+ reader.read(buffer, bufsize);
141
+
142
+ data.reset(new SampleData);
143
+ data->rep = Mix_LoadWAV_RW(SDL_RWFromMem(buffer, bufsize), 1);
144
+ if (data->rep == NULL)
145
+ throwLastSDLError();
145
146
  }
146
147
 
147
148
  Gosu::Sample::~Sample() {
@@ -209,7 +210,7 @@ Gosu::Song::Song(Audio& audio, const std::wstring& filename)
209
210
  if (noSound)
210
211
  return;
211
212
 
212
- data->music = Mix_LoadMUS(Gosu::narrow(filename).c_str());
213
+ data->music = Mix_LoadMUS(Gosu::wstringToUTF8(filename).c_str());
213
214
  if (data->music == NULL)
214
215
  throwLastSDLError();
215
216
 
@@ -220,7 +221,8 @@ Gosu::Song::Song(Audio &audio, Type type, Reader reader)
220
221
  : data(new BaseData)
221
222
  {
222
223
  #if 0
223
- // Why oh why is LoadMUS_RW traditionally broken.
224
+ // This is traditionally broken in SDL_mixer. File bugs :)
225
+
224
226
  std::size_t bufsize = reader.resource().size() - reader.position();
225
227
  data->buffer.resize(bufsize);
226
228
  reader.read(data->buffer.data(), bufsize);
@@ -105,7 +105,7 @@ namespace Gosu
105
105
  {
106
106
  static GLfloat spriteVertices[8];
107
107
  static GLfloat spriteTexcoords[8];
108
- static boost::uint32_t spriteColors[40];
108
+ static boost::uint32_t spriteColors[4];
109
109
 
110
110
  // iPhone specific setup
111
111
  static bool isSetup = false;
@@ -140,7 +140,6 @@ namespace Gosu
140
140
  if (chunk->texName() != currentTexName)
141
141
  {
142
142
  glBindTexture(GL_TEXTURE_2D, chunk->texName());
143
- glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
144
143
  }
145
144
 
146
145
  double left, top, right, bottom;
@@ -27,8 +27,9 @@ namespace
27
27
  struct Gosu::Font::Impl
28
28
  {
29
29
  Graphics* graphics;
30
- wstring fontName;
30
+ wstring name;
31
31
  unsigned height;
32
+ unsigned flags;
32
33
 
33
34
  // Chunk of 2^16 characters (on Windows, there'll only be one of them).
34
35
  // IMPR: I couldn't find a way to determine the size of wchar_t at compile
@@ -53,33 +54,45 @@ struct Gosu::Font::Impl
53
54
  wstring charString(1, wc);
54
55
  if (isFormattingChar(wc))
55
56
  charString.clear(); // Don't draw formatting characters
56
- unsigned charWidth = Gosu::textWidth(charString, fontName, height, ffBold);
57
+ unsigned charWidth = Gosu::textWidth(charString, name, height, flags);
57
58
  Bitmap bmp;
58
59
  bmp.resize(charWidth, height);
59
60
 
60
- drawText(bmp, charString, 0, 0, Colors::white, fontName, height, ffBold);
61
+ drawText(bmp, charString, 0, 0, Colors::white, name, height, flags);
61
62
  imgPtr.reset(new Image(*graphics, bmp));
62
63
  return *imgPtr;
63
64
  }
64
65
  };
65
66
 
66
- Gosu::Font::Font(Graphics& graphics, const wstring& fontName, unsigned height)
67
+ Gosu::Font::Font(Graphics& graphics, const wstring& fontName, unsigned fontHeight,
68
+ unsigned fontFlags)
67
69
  : pimpl(new Impl)
68
70
  {
69
71
  pimpl->graphics = &graphics;
70
- pimpl->fontName = fontName;
71
- pimpl->height = height * 2; // Auto-AA!
72
+ pimpl->name = fontName;
73
+ pimpl->height = fontHeight * 2; // Auto-AA!
74
+ pimpl->flags = fontFlags;
72
75
  }
73
76
 
74
77
  Gosu::Font::~Font()
75
78
  {
76
79
  }
77
80
 
81
+ std::wstring Gosu::Font::name() const
82
+ {
83
+ return pimpl->name;
84
+ }
85
+
78
86
  unsigned Gosu::Font::height() const
79
87
  {
80
88
  return pimpl->height / 2;
81
89
  }
82
90
 
91
+ unsigned Gosu::Font::flags() const
92
+ {
93
+ return pimpl->flags;
94
+ }
95
+
83
96
  double Gosu::Font::textWidth(const std::wstring& text, double factorX) const
84
97
  {
85
98
  double result = 0;
@@ -416,7 +416,10 @@ namespace Gosu
416
416
  rb_eval_string("class Gosu::Window; def button_id_to_char(id); self.class.button_id_to_char(id); end; def char_to_button_id(ch); self.class.char_to_button_id(ch); end; end");
417
417
 
418
418
  // Extend Numeric with simple angle conversion methods.
419
- rb_eval_string("class ::Numeric;def gosu_to_radians;(self-90)*Math::PI/180.0;end;def radians_to_gosu;self*180.0/Math::PI+90;end;end");
419
+ rb_eval_string("class ::Numeric; def gosu_to_radian_scale; self*Math::PI/180.0; end; end");
420
+ rb_eval_string("class ::Numeric; def radian_scale_to_gosu; self*180.0/Math::PI; end; end");
421
+ rb_eval_string("class ::Numeric; def gosu_to_radians; (self-90)*Math::PI/180.0; end; end");
422
+ rb_eval_string("class ::Numeric; def radians_to_gosu; self*180.0/Math::PI+90; end; end");
420
423
 
421
424
  GosusDarkSide::oncePerTick = GosusDarkSide::yieldToOtherRubyThreads;
422
425
  %}
@@ -471,6 +474,10 @@ namespace Gosu
471
474
  $self->graphics().drawTriangle(x1, y1, c1, x2, y2, c2, x3, y3, c3,
472
475
  z, mode);
473
476
  }
477
+ /*void drawRect(double x, double y, double w, double h, Gosu::Color c,
478
+ Gosu::ZPos z = 0, Gosu::AlphaMode mode = Gosu::amDefault) {
479
+ $self->graphics().drawRect(x, y, w, h, c, z, mode);
480
+ }*/
474
481
  void drawQuad(double x1, double y1, Gosu::Color c1,
475
482
  double x2, double y2, Gosu::Color c2,
476
483
  double x3, double y3, Gosu::Color c3,
@@ -43,6 +43,7 @@ int main()
43
43
 
44
44
  Init_gosu();
45
45
  rb_eval_string("$LOADED_FEATURES << 'gosu.bundle'");
46
+ rb_eval_string("$LOADED_FEATURES << 'rubygems.rb'");
46
47
 
47
48
  return ruby_run_node(ruby_options(argc, argv));
48
49
  }
@@ -1,7 +1,7 @@
1
1
  // While (re)writing this file, I have been looking at many other libraries since all the
2
2
  // "official" documentation was horrible, at least those parts that I was able to find.
3
3
  // Kudos to the Pyglet folks (http://www.pyglet.org/) who wrote code that was much easier to
4
- // understand than that!
4
+ // understand than that! --jlnr
5
5
 
6
6
  #include <Gosu/Window.hpp>
7
7
  #include <Gosu/Timing.hpp>
@@ -12,6 +12,7 @@
12
12
  #include <boost/bind.hpp>
13
13
  #include <stdexcept>
14
14
  #include <algorithm>
15
+ #include <cstdio>
15
16
  #include <vector>
16
17
 
17
18
  #include <GL/glx.h>
@@ -94,7 +95,6 @@ struct Gosu::Window::Impl
94
95
  // Last known size
95
96
  int width, height;
96
97
 
97
-
98
98
  double updateInterval;
99
99
  bool fullscreen;
100
100
 
@@ -388,7 +388,7 @@ namespace
388
388
  {
389
389
  void makeCurrentContext(Display* dpy, GLXDrawable drawable, GLXContext context) {
390
390
  if (!glXMakeCurrent(dpy, drawable, context))
391
- printf("glXMakeCurrent failed\n");
391
+ std::printf("glXMakeCurrent failed\n");
392
392
  }
393
393
 
394
394
  void releaseContext(Display* dpy, GLXContext context) {
data/Rakefile CHANGED
@@ -180,7 +180,7 @@ namespace :win do
180
180
 
181
181
  desc "Build the archive #{WINDOWS_RUBY_ARCHIVE_FILENAME}"
182
182
  task :ruby_archive => [:version] do
183
- files = COMMON_RUBY_FILES + ['lib/gosu.so', 'lib/fmod.dll']
183
+ files = COMMON_RUBY_FILES + ['lib/gosu.rb', 'lib/gosu.for_1_8.so', 'lib/gosu.for_1_9.so', 'lib/fmod.dll']
184
184
  sh "zip #{WINDOWS_RUBY_ARCHIVE_FILENAME} #{files.map { |filename| "'#{filename}'" }.join(' ')}"
185
185
  end
186
186
 
@@ -198,7 +198,7 @@ namespace :win do
198
198
  WINDOWS_SPEC = Gem::Specification.new do |s|
199
199
  apply_gemspec_defaults s
200
200
  s.platform = 'x86-mswin32-60'
201
- s.files = COMMON_RUBY_FILES + ['lib/gosu.so', 'lib/fmod.dll']
201
+ s.files = COMMON_RUBY_FILES + ['lib/gosu.rb', 'lib/gosu.for_1_8.so', 'lib/gosu.for_1_9.so', 'lib/fmod.dll']
202
202
  end
203
203
  Rake::GemPackageTask.new(WINDOWS_SPEC) { |t| t.package_dir = 'public/windows_gem' }
204
204
  end
@@ -1,9 +1,9 @@
1
1
  // !$*UTF8*$!
2
2
  {
3
3
  0867D690FE84028FC02AAC07 /* Project object */ = {
4
- activeBuildConfigurationName = "Release with 1.9";
4
+ activeBuildConfigurationName = Release;
5
5
  activeExecutable = D499E6130D06B05200BA6DEC /* RubyGosu App */;
6
- activeTarget = D4CA894F0BC68B5D00A431AC /* RubyGosu Core */;
6
+ activeTarget = 8D07F2BC0486CC7A007CD1D0 /* Gosu */;
7
7
  addToTargets = (
8
8
  D459FF430BDCD23500E7F0D6 /* RubyGosu App */,
9
9
  );
@@ -98,65 +98,30 @@
98
98
  PBXFileDataSource_Warnings_ColumnID,
99
99
  );
100
100
  };
101
- PBXPerProjectTemplateStateSaveDate = 263271580;
102
- PBXWorkspaceStateSaveDate = 263271580;
101
+ PBXPerProjectTemplateStateSaveDate = 263777194;
102
+ PBXWorkspaceStateSaveDate = 263777194;
103
103
  };
104
104
  perUserProjectItems = {
105
- D40821E50FAFBBE700F8E177 = D40821E50FAFBBE700F8E177 /* PBXTextBookmark */;
106
- D40821E60FAFBBE700F8E177 = D40821E60FAFBBE700F8E177 /* PBXTextBookmark */;
107
- D40821E70FAFBBE700F8E177 = D40821E70FAFBBE700F8E177 /* PBXTextBookmark */;
108
- D40821E80FAFBBE700F8E177 = D40821E80FAFBBE700F8E177 /* PBXTextBookmark */;
109
- D40821E90FAFBBE700F8E177 = D40821E90FAFBBE700F8E177 /* PBXTextBookmark */;
110
- D40821EA0FAFBBE700F8E177 = D40821EA0FAFBBE700F8E177 /* PBXTextBookmark */;
111
- D428EED10FB134A000576B64 /* PBXTextBookmark */ = D428EED10FB134A000576B64 /* PBXTextBookmark */;
112
- D428EEE70FB1351600576B64 /* PBXTextBookmark */ = D428EEE70FB1351600576B64 /* PBXTextBookmark */;
113
- D428EEE80FB1352300576B64 /* PBXTextBookmark */ = D428EEE80FB1352300576B64 /* PBXTextBookmark */;
114
- D428EEF60FB1E53A00576B64 /* PBXTextBookmark */ = D428EEF60FB1E53A00576B64 /* PBXTextBookmark */;
115
- D428EEF70FB1E53A00576B64 /* PBXTextBookmark */ = D428EEF70FB1E53A00576B64 /* PBXTextBookmark */;
116
- D428EEF80FB1E53A00576B64 /* PBXTextBookmark */ = D428EEF80FB1E53A00576B64 /* PBXTextBookmark */;
117
- D428EEF90FB1E53A00576B64 /* PBXTextBookmark */ = D428EEF90FB1E53A00576B64 /* PBXTextBookmark */;
118
- D428EEFA0FB1E53A00576B64 /* PBXTextBookmark */ = D428EEFA0FB1E53A00576B64 /* PBXTextBookmark */;
119
- D428EEFB0FB1E53A00576B64 /* PBXTextBookmark */ = D428EEFB0FB1E53A00576B64 /* PBXTextBookmark */;
120
- D428EEFC0FB1E53A00576B64 /* PBXTextBookmark */ = D428EEFC0FB1E53A00576B64 /* PBXTextBookmark */;
121
- D428EEFD0FB1E53A00576B64 /* PBXTextBookmark */ = D428EEFD0FB1E53A00576B64 /* PBXTextBookmark */;
122
- D428EEFE0FB1E53A00576B64 /* PBXTextBookmark */ = D428EEFE0FB1E53A00576B64 /* PBXTextBookmark */;
123
- D428EEFF0FB1E53A00576B64 /* PBXTextBookmark */ = D428EEFF0FB1E53A00576B64 /* PBXTextBookmark */;
124
- D428EF000FB1E61100576B64 /* PBXBookmark */ = D428EF000FB1E61100576B64 /* PBXBookmark */;
125
- D428EF010FB1E73E00576B64 /* PBXTextBookmark */ = D428EF010FB1E73E00576B64 /* PBXTextBookmark */;
126
- D428EF040FB1E73E00576B64 /* PBXTextBookmark */ = D428EF040FB1E73E00576B64 /* PBXTextBookmark */;
127
- D428EF070FB2065B00576B64 /* PBXTextBookmark */ = D428EF070FB2065B00576B64 /* PBXTextBookmark */;
128
- D428EF080FB2065B00576B64 /* PBXTextBookmark */ = D428EF080FB2065B00576B64 /* PBXTextBookmark */;
129
- D428EF090FB20F5F00576B64 /* PBXTextBookmark */ = D428EF090FB20F5F00576B64 /* PBXTextBookmark */;
130
- D428EF0A0FB20F5F00576B64 /* PBXTextBookmark */ = D428EF0A0FB20F5F00576B64 /* PBXTextBookmark */;
131
- D428EF0B0FB20F5F00576B64 /* PBXTextBookmark */ = D428EF0B0FB20F5F00576B64 /* PBXTextBookmark */;
132
- D428EF0C0FB20F5F00576B64 /* PBXTextBookmark */ = D428EF0C0FB20F5F00576B64 /* PBXTextBookmark */;
133
- D428EF0E0FB2103900576B64 /* PBXTextBookmark */ = D428EF0E0FB2103900576B64 /* PBXTextBookmark */;
134
- D428EF110FB219FA00576B64 /* PBXTextBookmark */ = D428EF110FB219FA00576B64 /* PBXTextBookmark */;
135
- D428EF180FB21A3C00576B64 /* PBXTextBookmark */ = D428EF180FB21A3C00576B64 /* PBXTextBookmark */;
136
- D428EF200FB21A5400576B64 /* PBXTextBookmark */ = D428EF200FB21A5400576B64 /* PBXTextBookmark */;
137
- D428EF210FB2271800576B64 /* PBXTextBookmark */ = D428EF210FB2271800576B64 /* PBXTextBookmark */;
138
- D428EF230FB229A800576B64 /* PBXTextBookmark */ = D428EF230FB229A800576B64 /* PBXTextBookmark */;
139
- D428EF240FB229E100576B64 /* PBXTextBookmark */ = D428EF240FB229E100576B64 /* PBXTextBookmark */;
140
- D428EF250FB22BEE00576B64 /* PBXTextBookmark */ = D428EF250FB22BEE00576B64 /* PBXTextBookmark */;
141
- D428EF280FB22C7600576B64 /* PBXTextBookmark */ = D428EF280FB22C7600576B64 /* PBXTextBookmark */;
142
- D428EF2A0FB23CB100576B64 /* PBXTextBookmark */ = D428EF2A0FB23CB100576B64 /* PBXTextBookmark */;
143
- D428EF2B0FB23CB100576B64 /* PBXTextBookmark */ = D428EF2B0FB23CB100576B64 /* PBXTextBookmark */;
144
- D428EF2C0FB23CB100576B64 /* PBXTextBookmark */ = D428EF2C0FB23CB100576B64 /* PBXTextBookmark */;
145
- D491656C0FAF7614001692E0 = D491656C0FAF7614001692E0 /* PBXTextBookmark */;
146
- D491656D0FAF7614001692E0 = D491656D0FAF7614001692E0 /* PBXTextBookmark */;
147
- D491656E0FAF7614001692E0 = D491656E0FAF7614001692E0 /* PBXTextBookmark */;
148
- D491656F0FAF7614001692E0 = D491656F0FAF7614001692E0 /* PBXTextBookmark */;
149
- D49165700FAF7614001692E0 = D49165700FAF7614001692E0 /* PBXTextBookmark */;
150
- D49165710FAF7614001692E0 = D49165710FAF7614001692E0 /* PBXTextBookmark */;
151
- D49165720FAF7614001692E0 = D49165720FAF7614001692E0 /* PBXTextBookmark */;
152
- D49165750FAF7614001692E0 = D49165750FAF7614001692E0 /* PBXTextBookmark */;
153
- D49165760FAF7614001692E0 = D49165760FAF7614001692E0 /* PBXTextBookmark */;
154
- D49165770FAF7614001692E0 = D49165770FAF7614001692E0 /* PBXTextBookmark */;
155
- D49165780FAF7614001692E0 = D49165780FAF7614001692E0 /* PBXTextBookmark */;
156
- D49165790FAF7614001692E0 = D49165790FAF7614001692E0 /* PBXTextBookmark */;
157
- D491657B0FAF7614001692E0 = D491657B0FAF7614001692E0 /* PBXTextBookmark */;
158
- D491657C0FAF7614001692E0 = D491657C0FAF7614001692E0 /* PBXTextBookmark */;
159
- D491657D0FAF7614001692E0 = D491657D0FAF7614001692E0 /* PBXTextBookmark */;
105
+ D40821E90FAFBBE700F8E177 /* PBXTextBookmark */ = D40821E90FAFBBE700F8E177 /* PBXTextBookmark */;
106
+ D446BAAD0FB4CB5F0097BEDB /* PBXTextBookmark */ = D446BAAD0FB4CB5F0097BEDB /* PBXTextBookmark */;
107
+ D4652A490FB73CEA000C613E /* PBXTextBookmark */ = D4652A490FB73CEA000C613E /* PBXTextBookmark */;
108
+ D4652A4E0FB73CEA000C613E /* PBXTextBookmark */ = D4652A4E0FB73CEA000C613E /* PBXTextBookmark */;
109
+ D4652A4F0FB73CEA000C613E /* PBXTextBookmark */ = D4652A4F0FB73CEA000C613E /* PBXTextBookmark */;
110
+ D4652A6D0FB74006000C613E /* PBXTextBookmark */ = D4652A6D0FB74006000C613E /* PBXTextBookmark */;
111
+ D4652AA30FB7472B000C613E /* PBXTextBookmark */ = D4652AA30FB7472B000C613E /* PBXTextBookmark */;
112
+ D4652BAF0FB86753000C613E /* PBXTextBookmark */ = D4652BAF0FB86753000C613E /* PBXTextBookmark */;
113
+ D4652BB00FB86753000C613E /* PBXTextBookmark */ = D4652BB00FB86753000C613E /* PBXTextBookmark */;
114
+ D4652BB10FB86753000C613E /* PBXTextBookmark */ = D4652BB10FB86753000C613E /* PBXTextBookmark */;
115
+ D4652BB50FB86753000C613E /* PBXTextBookmark */ = D4652BB50FB86753000C613E /* PBXTextBookmark */;
116
+ D4652BBE0FB87EBB000C613E /* PBXTextBookmark */ = D4652BBE0FB87EBB000C613E /* PBXTextBookmark */;
117
+ D4652BBF0FB87EBB000C613E /* PBXTextBookmark */ = D4652BBF0FB87EBB000C613E /* PBXTextBookmark */;
118
+ D4652BC00FB87EBB000C613E /* PBXTextBookmark */ = D4652BC00FB87EBB000C613E /* PBXTextBookmark */;
119
+ D4652BC20FB87EBB000C613E /* PBXTextBookmark */ = D4652BC20FB87EBB000C613E /* PBXTextBookmark */;
120
+ D4652BC40FB87EBB000C613E /* PBXTextBookmark */ = D4652BC40FB87EBB000C613E /* PBXTextBookmark */;
121
+ D497991C0FB8EBC700D893F8 /* PBXTextBookmark */ = D497991C0FB8EBC700D893F8 /* PBXTextBookmark */;
122
+ D497991D0FB8EBC700D893F8 /* PBXTextBookmark */ = D497991D0FB8EBC700D893F8 /* PBXTextBookmark */;
123
+ D497991F0FB8EBC700D893F8 /* PBXTextBookmark */ = D497991F0FB8EBC700D893F8 /* PBXTextBookmark */;
124
+ D49799250FB8EBC900D893F8 /* PBXTextBookmark */ = D49799250FB8EBC900D893F8 /* PBXTextBookmark */;
160
125
  };
161
126
  sourceControlManager = D499E6280D06B06300BA6DEC /* Source Control */;
162
127
  userBuildSettings = {
@@ -172,46 +137,6 @@
172
137
  sepNavVisRange = "{645, 1262}";
173
138
  };
174
139
  };
175
- D40821E50FAFBBE700F8E177 /* PBXTextBookmark */ = {
176
- isa = PBXTextBookmark;
177
- fRef = D410E9CB0A8019CD005C7067 /* Graphics.hpp */;
178
- name = "Graphics.hpp: 11";
179
- rLen = 0;
180
- rLoc = 246;
181
- rType = 0;
182
- vrLen = 563;
183
- vrLoc = 0;
184
- };
185
- D40821E60FAFBBE700F8E177 /* PBXTextBookmark */ = {
186
- isa = PBXTextBookmark;
187
- fRef = D47BD32A0BD78F7200ACF014 /* RubyGosu.swg */;
188
- name = "RubyGosu.swg: 118";
189
- rLen = 0;
190
- rLoc = 3635;
191
- rType = 0;
192
- vrLen = 601;
193
- vrLoc = 3315;
194
- };
195
- D40821E70FAFBBE700F8E177 /* PBXTextBookmark */ = {
196
- isa = PBXTextBookmark;
197
- fRef = D47BD3280BD78F7200ACF014 /* RubyGosu_wrap.cxx */;
198
- name = "RubyGosu_wrap.cxx: 1";
199
- rLen = 0;
200
- rLoc = 0;
201
- rType = 0;
202
- vrLen = 0;
203
- vrLoc = 0;
204
- };
205
- D40821E80FAFBBE700F8E177 /* PBXTextBookmark */ = {
206
- isa = PBXTextBookmark;
207
- fRef = D410E9CB0A8019CD005C7067 /* Graphics.hpp */;
208
- name = "Graphics.hpp: 11";
209
- rLen = 0;
210
- rLoc = 246;
211
- rType = 0;
212
- vrLen = 563;
213
- vrLoc = 0;
214
- };
215
140
  D40821E90FAFBBE700F8E177 /* PBXTextBookmark */ = {
216
141
  isa = PBXTextBookmark;
217
142
  fRef = D47BD32A0BD78F7200ACF014 /* RubyGosu.swg */;
@@ -222,16 +147,6 @@
222
147
  vrLen = 601;
223
148
  vrLoc = 3315;
224
149
  };
225
- D40821EA0FAFBBE700F8E177 /* PBXTextBookmark */ = {
226
- isa = PBXTextBookmark;
227
- fRef = D47BD3280BD78F7200ACF014 /* RubyGosu_wrap.cxx */;
228
- name = "RubyGosu_wrap.cxx: 14";
229
- rLen = 0;
230
- rLoc = 564;
231
- rType = 0;
232
- vrLen = 1118;
233
- vrLoc = 1372;
234
- };
235
150
  D410D6220EE9D379007740AE /* Iconv.hpp */ = {
236
151
  uiCtxt = {
237
152
  sepNavIntBoundsRect = "{{0, 0}, {1012, 1340}}";
@@ -241,10 +156,10 @@
241
156
  };
242
157
  D410E9BF0A8019CC005C7067 /* Audio.hpp */ = {
243
158
  uiCtxt = {
244
- sepNavFolds = "{\n c = (\n {\n r = \"{755, 121}\";\n s = 0;\n }\n );\n r = \"{0, 6025}\";\n s = 0;\n}";
245
- sepNavIntBoundsRect = "{{0, 0}, {984, 3180}}";
246
- sepNavSelRange = "{5630, 59}";
247
- sepNavVisRange = "{4443, 1462}";
159
+ sepNavFolds = "{\n c = (\n {\n r = \"{755, 121}\";\n s = 0;\n }\n );\n r = \"{0, 6065}\";\n s = 0;\n}";
160
+ sepNavIntBoundsRect = "{{0, 0}, {1012, 3420}}";
161
+ sepNavSelRange = "{1070, 0}";
162
+ sepNavVisRange = "{540, 1252}";
248
163
  sepNavWindowFrame = "{{38, 171}, {929, 549}}";
249
164
  };
250
165
  };
@@ -290,9 +205,9 @@
290
205
  };
291
206
  D410E9C60A8019CD005C7067 /* Color.hpp */ = {
292
207
  uiCtxt = {
293
- sepNavIntBoundsRect = "{{0, 0}, {887, 3460}}";
294
- sepNavSelRange = "{149, 178}";
295
- sepNavVisRange = "{55, 1460}";
208
+ sepNavIntBoundsRect = "{{0, 0}, {1012, 3480}}";
209
+ sepNavSelRange = "{4865, 0}";
210
+ sepNavVisRange = "{4152, 730}";
296
211
  sepNavWindowFrame = "{{15, 76}, {968, 702}}";
297
212
  };
298
213
  };
@@ -305,10 +220,10 @@
305
220
  };
306
221
  D410E9C80A8019CD005C7067 /* Font.hpp */ = {
307
222
  uiCtxt = {
308
- sepNavIntBoundsRect = "{{0, 0}, {887, 1240}}";
309
- sepNavSelRange = "{2139, 0}";
310
- sepNavVisRange = "{232, 2178}";
311
- sepNavWindowFrame = "{{84, 184}, {968, 702}}";
223
+ sepNavIntBoundsRect = "{{0, 0}, {1012, 1400}}";
224
+ sepNavSelRange = "{1230, 0}";
225
+ sepNavVisRange = "{1593, 1203}";
226
+ sepNavWindowFrame = "{{84, 76}, {968, 702}}";
312
227
  };
313
228
  };
314
229
  D410E9C90A8019CD005C7067 /* Fwd.hpp */ = {
@@ -337,9 +252,9 @@
337
252
  };
338
253
  D410E9CD0A8019CD005C7067 /* Image.hpp */ = {
339
254
  uiCtxt = {
340
- sepNavIntBoundsRect = "{{0, 0}, {1002, 3060}}";
341
- sepNavSelRange = "{5426, 0}";
342
- sepNavVisRange = "{4112, 1592}";
255
+ sepNavIntBoundsRect = "{{0, 0}, {1012, 3040}}";
256
+ sepNavSelRange = "{146, 0}";
257
+ sepNavVisRange = "{0, 381}";
343
258
  };
344
259
  };
345
260
  D410E9CE0A8019CD005C7067 /* ImageData.hpp */ = {
@@ -419,9 +334,9 @@
419
334
  };
420
335
  D410E9FF0A8019FA005C7067 /* DirectoriesMac.mm */ = {
421
336
  uiCtxt = {
422
- sepNavIntBoundsRect = "{{0, 0}, {1012, 741}}";
423
- sepNavSelRange = "{345, 6}";
424
- sepNavVisRange = "{634, 499}";
337
+ sepNavIntBoundsRect = "{{0, 0}, {1012, 780}}";
338
+ sepNavSelRange = "{655, 0}";
339
+ sepNavVisRange = "{275, 707}";
425
340
  };
426
341
  };
427
342
  D410EA000A8019FA005C7067 /* DirectoriesUnix.cpp */ = {
@@ -534,17 +449,17 @@
534
449
  };
535
450
  D410EADB0A801B00005C7067 /* Font.cpp */ = {
536
451
  uiCtxt = {
537
- sepNavIntBoundsRect = "{{0, 0}, {1652, 2888}}";
538
- sepNavSelRange = "{3554, 0}";
539
- sepNavVisRange = "{0, 1454}";
540
- sepNavWindowFrame = "{{227, 326}, {968, 702}}";
452
+ sepNavIntBoundsRect = "{{0, 0}, {1012, 3400}}";
453
+ sepNavSelRange = "{3749, 0}";
454
+ sepNavVisRange = "{2906, 1038}";
455
+ sepNavWindowFrame = "{{227, 76}, {968, 702}}";
541
456
  };
542
457
  };
543
458
  D410EADC0A801B00005C7067 /* Graphics.cpp */ = {
544
459
  uiCtxt = {
545
- sepNavIntBoundsRect = "{{0, 0}, {1012, 6900}}";
546
- sepNavSelRange = "{7485, 0}";
547
- sepNavVisRange = "{8355, 1178}";
460
+ sepNavIntBoundsRect = "{{0, 0}, {1012, 7580}}";
461
+ sepNavSelRange = "{1472, 0}";
462
+ sepNavVisRange = "{965, 691}";
548
463
  sepNavWindowFrame = "{{323, 168}, {888, 610}}";
549
464
  };
550
465
  };
@@ -609,383 +524,206 @@
609
524
  sepNavVisRange = "{476, 510}";
610
525
  };
611
526
  };
612
- D428EED10FB134A000576B64 /* PBXTextBookmark */ = {
613
- isa = PBXTextBookmark;
614
- fRef = D47BD3280BD78F7200ACF014 /* RubyGosu_wrap.cxx */;
615
- name = "RubyGosu_wrap.cxx: 11";
616
- rLen = 0;
617
- rLoc = 564;
618
- rType = 0;
619
- vrLen = 1138;
620
- vrLoc = 1316;
621
- };
622
- D428EEE70FB1351600576B64 /* PBXTextBookmark */ = {
623
- isa = PBXTextBookmark;
624
- fRef = D47BD3280BD78F7200ACF014 /* RubyGosu_wrap.cxx */;
625
- name = "RubyGosu_wrap.cxx: 11";
626
- rLen = 0;
627
- rLoc = 564;
628
- rType = 0;
629
- vrLen = 807;
630
- vrLoc = 1316;
527
+ D42BC0D00C4F840C00EBF79C /* Gosu.hpp */ = {
528
+ uiCtxt = {
529
+ sepNavIntBoundsRect = "{{0, 0}, {1012, 680}}";
530
+ sepNavSelRange = "{369, 0}";
531
+ sepNavVisRange = "{0, 941}";
532
+ sepNavWindowFrame = "{{84, 91}, {868, 619}}";
533
+ };
631
534
  };
632
- D428EEE80FB1352300576B64 /* PBXTextBookmark */ = {
633
- isa = PBXTextBookmark;
634
- fRef = D47BD3280BD78F7200ACF014 /* RubyGosu_wrap.cxx */;
635
- name = "RubyGosu_wrap.cxx: 11";
636
- rLen = 0;
637
- rLoc = 564;
638
- rType = 0;
639
- vrLen = 807;
640
- vrLoc = 1316;
535
+ D42D023E0F7068BC00407E60 /* AudioFmod.cpp */ = {
536
+ uiCtxt = {
537
+ sepNavIntBoundsRect = "{{0, 0}, {1012, 9620}}";
538
+ sepNavSelRange = "{4140, 93}";
539
+ sepNavVisRange = "{3698, 947}";
540
+ };
641
541
  };
642
- D428EEF60FB1E53A00576B64 /* PBXTextBookmark */ = {
643
- isa = PBXTextBookmark;
644
- fRef = D47BD3290BD78F7200ACF014 /* RubyGosu_wrap.h */;
645
- name = "RubyGosu_wrap.h: 1";
646
- rLen = 0;
647
- rLoc = 0;
648
- rType = 0;
649
- vrLen = 689;
650
- vrLoc = 0;
542
+ D42D02DC0F7092DF00407E60 /* AudioFileMac.hpp */ = {
543
+ uiCtxt = {
544
+ sepNavIntBoundsRect = "{{0, 0}, {1038, 2220}}";
545
+ sepNavSelRange = "{1258, 10}";
546
+ sepNavVisRange = "{1111, 1033}";
547
+ };
651
548
  };
652
- D428EEF70FB1E53A00576B64 /* PBXTextBookmark */ = {
653
- isa = PBXTextBookmark;
654
- fRef = D47BD32A0BD78F7200ACF014 /* RubyGosu.swg */;
655
- name = "RubyGosu.swg: 5";
656
- rLen = 5;
657
- rLoc = 115;
658
- rType = 0;
659
- vrLen = 637;
660
- vrLoc = 0;
549
+ D42D03430F70989100407E60 /* ALChannelManagement.hpp */ = {
550
+ uiCtxt = {
551
+ sepNavIntBoundsRect = "{{0, 0}, {1012, 1387}}";
552
+ sepNavSelRange = "{1793, 0}";
553
+ sepNavVisRange = "{1018, 1179}";
554
+ };
661
555
  };
662
- D428EEF80FB1E53A00576B64 /* PBXTextBookmark */ = {
663
- isa = PBXTextBookmark;
664
- fRef = D46C2E240FAE090200A33476 /* st.c */;
665
- name = "st.c: 147";
666
- rLen = 0;
667
- rLoc = 2793;
668
- rType = 0;
669
- vrLen = 442;
670
- vrLoc = 2583;
556
+ D42DFE380F6F84DA00407E60 /* AudioOpenAL.mm */ = {
557
+ uiCtxt = {
558
+ sepNavFolds = "{\n c = (\n {\n r = \"{1537, 1}\";\n s = 0;\n }\n );\n r = \"{0, 12324}\";\n s = 0;\n}";
559
+ sepNavIntBoundsRect = "{{0, 0}, {1012, 9253}}";
560
+ sepNavSelRange = "{4717, 0}";
561
+ sepNavVisRange = "{4422, 473}";
562
+ sepNavWindowFrame = "{{15, -1}, {1280, 774}}";
563
+ };
671
564
  };
672
- D428EEF90FB1E53A00576B64 /* PBXTextBookmark */ = {
673
- isa = PBXTextBookmark;
674
- fRef = D47BD3280BD78F7200ACF014 /* RubyGosu_wrap.cxx */;
675
- name = "RubyGosu_wrap.cxx: 37";
676
- rLen = 0;
677
- rLoc = 1529;
678
- rType = 0;
679
- vrLen = 807;
680
- vrLoc = 1316;
565
+ D446BA940FB4BDD30097BEDB /* AudioSDL.cpp */ = {
566
+ isa = PBXFileReference;
567
+ lastKnownFileType = sourcecode.cpp.cpp;
568
+ name = AudioSDL.cpp;
569
+ path = /Users/jlnr/Projekte/Gosu/GosuImpl/AudioSDL.cpp;
570
+ sourceTree = "<absolute>";
681
571
  };
682
- D428EEFA0FB1E53A00576B64 /* PBXTextBookmark */ = {
572
+ D446BAAD0FB4CB5F0097BEDB /* PBXTextBookmark */ = {
683
573
  isa = PBXTextBookmark;
684
- fRef = D47BD3280BD78F7200ACF014 /* RubyGosu_wrap.cxx */;
685
- name = "RubyGosu_wrap.cxx: 37";
574
+ fRef = D446BA940FB4BDD30097BEDB /* AudioSDL.cpp */;
575
+ name = "AudioSDL.cpp: 138";
686
576
  rLen = 0;
687
- rLoc = 1529;
577
+ rLoc = 2844;
688
578
  rType = 0;
689
- vrLen = 807;
690
- vrLoc = 1316;
579
+ vrLen = 634;
580
+ vrLoc = 2339;
691
581
  };
692
- D428EEFB0FB1E53A00576B64 /* PBXTextBookmark */ = {
693
- isa = PBXTextBookmark;
694
- fRef = D46C2E240FAE090200A33476 /* st.c */;
695
- name = "st.c: 24";
696
- rLen = 0;
697
- rLoc = 498;
698
- rType = 0;
699
- vrLen = 503;
700
- vrLoc = 384;
582
+ D459FF430BDCD23500E7F0D6 /* RubyGosu App */ = {
583
+ activeExec = 0;
584
+ executables = (
585
+ D499E6130D06B05200BA6DEC /* RubyGosu App */,
586
+ );
701
587
  };
702
- D428EEFC0FB1E53A00576B64 /* PBXTextBookmark */ = {
588
+ D4652A490FB73CEA000C613E /* PBXTextBookmark */ = {
703
589
  isa = PBXTextBookmark;
704
- fRef = D47BD3290BD78F7200ACF014 /* RubyGosu_wrap.h */;
705
- name = "RubyGosu_wrap.h: 1";
590
+ fRef = D410E9CD0A8019CD005C7067 /* Image.hpp */;
591
+ name = "Image.hpp: 7";
706
592
  rLen = 0;
707
- rLoc = 0;
593
+ rLoc = 146;
708
594
  rType = 0;
709
- vrLen = 689;
595
+ vrLen = 381;
710
596
  vrLoc = 0;
711
597
  };
712
- D428EEFD0FB1E53A00576B64 /* PBXTextBookmark */ = {
598
+ D4652A4E0FB73CEA000C613E /* PBXTextBookmark */ = {
713
599
  isa = PBXTextBookmark;
714
- fRef = D47BD32A0BD78F7200ACF014 /* RubyGosu.swg */;
715
- name = "RubyGosu.swg: 5";
716
- rLen = 5;
717
- rLoc = 115;
718
- rType = 0;
719
- vrLen = 637;
720
- vrLoc = 0;
721
- };
722
- D428EEFE0FB1E53A00576B64 /* PBXTextBookmark */ = {
723
- isa = PBXTextBookmark;
724
- fRef = D46C2E240FAE090200A33476 /* st.c */;
725
- name = "st.c: 147";
726
- rLen = 0;
727
- rLoc = 2793;
728
- rType = 0;
729
- vrLen = 442;
730
- vrLoc = 2583;
731
- };
732
- D428EEFF0FB1E53A00576B64 /* PBXTextBookmark */ = {
733
- isa = PBXTextBookmark;
734
- fRef = D47BD3280BD78F7200ACF014 /* RubyGosu_wrap.cxx */;
735
- name = "RubyGosu_wrap.cxx: 1252";
600
+ fRef = D499E6380D06B51300BA6DEC /* DrawOp.hpp */;
601
+ name = "DrawOp.hpp: 109";
736
602
  rLen = 0;
737
- rLoc = 36018;
738
- rType = 0;
739
- vrLen = 801;
740
- vrLoc = 36032;
741
- };
742
- D428EF000FB1E61100576B64 /* PBXBookmark */ = {
743
- isa = PBXBookmark;
744
- fRef = D47BD3280BD78F7200ACF014 /* RubyGosu_wrap.cxx */;
745
- };
746
- D428EF010FB1E73E00576B64 /* PBXTextBookmark */ = {
747
- isa = PBXTextBookmark;
748
- fRef = D47BD3280BD78F7200ACF014 /* RubyGosu_wrap.cxx */;
749
- name = "RubyGosu_wrap.cxx: 1251";
750
- rLen = 0;
751
- rLoc = 36240;
752
- rType = 0;
753
- vrLen = 787;
754
- vrLoc = 36084;
755
- };
756
- D428EF040FB1E73E00576B64 /* PBXTextBookmark */ = {
757
- isa = PBXTextBookmark;
758
- fRef = D47BD3280BD78F7200ACF014 /* RubyGosu_wrap.cxx */;
759
- name = "RubyGosu_wrap.cxx: 1258";
760
- rLen = 0;
761
- rLoc = 36506;
762
- rType = 0;
763
- vrLen = 1089;
764
- vrLoc = 35805;
765
- };
766
- D428EF070FB2065B00576B64 /* PBXTextBookmark */ = {
767
- isa = PBXTextBookmark;
768
- fRef = D47BD3280BD78F7200ACF014 /* RubyGosu_wrap.cxx */;
769
- name = "RubyGosu_wrap.cxx: 1191";
770
- rLen = 19;
771
- rLoc = 34295;
772
- rType = 0;
773
- vrLen = 849;
774
- vrLoc = 33910;
775
- };
776
- D428EF080FB2065B00576B64 /* PBXTextBookmark */ = {
777
- isa = PBXTextBookmark;
778
- fRef = D47BD3280BD78F7200ACF014 /* RubyGosu_wrap.cxx */;
779
- name = "RubyGosu_wrap.cxx: 1402";
780
- rLen = 0;
781
- rLoc = 41344;
782
- rType = 0;
783
- vrLen = 773;
784
- vrLoc = 42242;
785
- };
786
- D428EF090FB20F5F00576B64 /* PBXTextBookmark */ = {
787
- isa = PBXTextBookmark;
788
- fRef = D47BD3280BD78F7200ACF014 /* RubyGosu_wrap.cxx */;
789
- name = "RubyGosu_wrap.cxx: 1";
790
- rLen = 0;
791
- rLoc = 0;
792
- rType = 0;
793
- vrLen = 963;
794
- vrLoc = 0;
795
- };
796
- D428EF0A0FB20F5F00576B64 /* PBXTextBookmark */ = {
797
- isa = PBXTextBookmark;
798
- fRef = D47BD32A0BD78F7200ACF014 /* RubyGosu.swg */;
799
- name = "RubyGosu.swg: 5";
800
- rLen = 5;
801
- rLoc = 115;
603
+ rLoc = 3338;
802
604
  rType = 0;
803
- vrLen = 637;
804
- vrLoc = 0;
605
+ vrLen = 1293;
606
+ vrLoc = 3058;
805
607
  };
806
- D428EF0B0FB20F5F00576B64 /* PBXTextBookmark */ = {
608
+ D4652A4F0FB73CEA000C613E /* PBXTextBookmark */ = {
807
609
  isa = PBXTextBookmark;
808
- fRef = D47BD3280BD78F7200ACF014 /* RubyGosu_wrap.cxx */;
809
- name = "RubyGosu_wrap.cxx: 1";
610
+ fRef = D410E9CD0A8019CD005C7067 /* Image.hpp */;
611
+ name = "Image.hpp: 7";
810
612
  rLen = 0;
811
- rLoc = 0;
613
+ rLoc = 146;
812
614
  rType = 0;
813
- vrLen = 963;
615
+ vrLen = 381;
814
616
  vrLoc = 0;
815
617
  };
816
- D428EF0C0FB20F5F00576B64 /* PBXTextBookmark */ = {
618
+ D4652A6D0FB74006000C613E /* PBXTextBookmark */ = {
817
619
  isa = PBXTextBookmark;
818
- fRef = D47BD32A0BD78F7200ACF014 /* RubyGosu.swg */;
819
- name = "RubyGosu.swg: 6";
620
+ fRef = D410EADC0A801B00005C7067 /* Graphics.cpp */;
621
+ name = "Graphics.cpp: 113";
820
622
  rLen = 0;
821
- rLoc = 149;
623
+ rLoc = 2685;
822
624
  rType = 0;
823
- vrLen = 686;
824
- vrLoc = 0;
625
+ vrLen = 477;
626
+ vrLoc = 2520;
825
627
  };
826
- D428EF0E0FB2103900576B64 /* PBXTextBookmark */ = {
628
+ D4652AA30FB7472B000C613E /* PBXTextBookmark */ = {
827
629
  isa = PBXTextBookmark;
828
- fRef = D47BD32A0BD78F7200ACF014 /* RubyGosu.swg */;
829
- name = "RubyGosu.swg: 12";
630
+ fRef = D410EADC0A801B00005C7067 /* Graphics.cpp */;
631
+ name = "Graphics.cpp: 56";
830
632
  rLen = 0;
831
- rLoc = 312;
633
+ rLoc = 1472;
832
634
  rType = 0;
833
- vrLen = 686;
834
- vrLoc = 0;
635
+ vrLen = 691;
636
+ vrLoc = 965;
835
637
  };
836
- D428EF110FB219FA00576B64 /* PBXTextBookmark */ = {
638
+ D4652BAF0FB86753000C613E /* PBXTextBookmark */ = {
837
639
  isa = PBXTextBookmark;
838
- fRef = D47BD32A0BD78F7200ACF014 /* RubyGosu.swg */;
839
- name = "RubyGosu.swg: 12";
640
+ fRef = D499E6380D06B51300BA6DEC /* DrawOp.hpp */;
641
+ name = "DrawOp.hpp: 11";
840
642
  rLen = 0;
841
- rLoc = 312;
643
+ rLoc = 243;
842
644
  rType = 0;
843
- vrLen = 686;
844
- vrLoc = 0;
645
+ vrLen = 1107;
646
+ vrLoc = 709;
845
647
  };
846
- D428EF180FB21A3C00576B64 /* PBXTextBookmark */ = {
648
+ D4652BB00FB86753000C613E /* PBXTextBookmark */ = {
847
649
  isa = PBXTextBookmark;
848
- fRef = D47BD32A0BD78F7200ACF014 /* RubyGosu.swg */;
849
- name = "RubyGosu.swg: 16";
650
+ fRef = D446BA940FB4BDD30097BEDB /* AudioSDL.cpp */;
651
+ name = "AudioSDL.cpp: 217";
850
652
  rLen = 0;
851
- rLoc = 408;
653
+ rLoc = 4879;
852
654
  rType = 0;
853
- vrLen = 993;
854
- vrLoc = 0;
655
+ vrLen = 932;
656
+ vrLoc = 4578;
855
657
  };
856
- D428EF200FB21A5400576B64 /* PBXTextBookmark */ = {
658
+ D4652BB10FB86753000C613E /* PBXTextBookmark */ = {
857
659
  isa = PBXTextBookmark;
858
- fRef = D47BD32A0BD78F7200ACF014 /* RubyGosu.swg */;
859
- name = "RubyGosu.swg: 16";
660
+ fRef = D4A7E9080CD377E000621B24 /* Async.cpp */;
661
+ name = "Async.cpp: 1";
860
662
  rLen = 0;
861
- rLoc = 408;
663
+ rLoc = 0;
862
664
  rType = 0;
863
- vrLen = 993;
665
+ vrLen = 969;
864
666
  vrLoc = 0;
865
667
  };
866
- D428EF210FB2271800576B64 /* PBXTextBookmark */ = {
668
+ D4652BB50FB86753000C613E /* PBXTextBookmark */ = {
867
669
  isa = PBXTextBookmark;
868
- fRef = D47BD32A0BD78F7200ACF014 /* RubyGosu.swg */;
869
- name = "RubyGosu.swg: 16";
670
+ fRef = D4A7E9080CD377E000621B24 /* Async.cpp */;
671
+ name = "Async.cpp: 1";
870
672
  rLen = 0;
871
- rLoc = 408;
673
+ rLoc = 0;
872
674
  rType = 0;
873
- vrLen = 633;
675
+ vrLen = 969;
874
676
  vrLoc = 0;
875
677
  };
876
- D428EF230FB229A800576B64 /* PBXTextBookmark */ = {
877
- isa = PBXTextBookmark;
878
- fRef = D47BD32A0BD78F7200ACF014 /* RubyGosu.swg */;
879
- name = "RubyGosu.swg: 16";
880
- rLen = 0;
881
- rLoc = 408;
882
- rType = 0;
883
- vrLen = 595;
884
- vrLoc = 3115;
885
- };
886
- D428EF240FB229E100576B64 /* PBXTextBookmark */ = {
887
- isa = PBXTextBookmark;
888
- fRef = D47BD32A0BD78F7200ACF014 /* RubyGosu.swg */;
889
- name = "RubyGosu.swg: 16";
890
- rLen = 0;
891
- rLoc = 408;
892
- rType = 0;
893
- vrLen = 580;
894
- vrLoc = 3115;
895
- };
896
- D428EF250FB22BEE00576B64 /* PBXTextBookmark */ = {
678
+ D4652BBE0FB87EBB000C613E /* PBXTextBookmark */ = {
897
679
  isa = PBXTextBookmark;
898
- fRef = D47BD32A0BD78F7200ACF014 /* RubyGosu.swg */;
899
- name = "RubyGosu.swg: 16";
680
+ fRef = D410E9FF0A8019FA005C7067 /* DirectoriesMac.mm */;
681
+ name = "DirectoriesMac.mm: 23";
900
682
  rLen = 0;
901
- rLoc = 408;
683
+ rLoc = 655;
902
684
  rType = 0;
903
- vrLen = 580;
904
- vrLoc = 3115;
685
+ vrLen = 707;
686
+ vrLoc = 275;
905
687
  };
906
- D428EF280FB22C7600576B64 /* PBXTextBookmark */ = {
688
+ D4652BBF0FB87EBB000C613E /* PBXTextBookmark */ = {
907
689
  isa = PBXTextBookmark;
908
690
  fRef = D47BD32A0BD78F7200ACF014 /* RubyGosu.swg */;
909
- name = "RubyGosu.swg: 16";
691
+ name = "RubyGosu.swg: 480";
910
692
  rLen = 0;
911
- rLoc = 408;
693
+ rLoc = 16685;
912
694
  rType = 0;
913
- vrLen = 580;
914
- vrLoc = 3115;
695
+ vrLen = 1634;
696
+ vrLoc = 15773;
915
697
  };
916
- D428EF2A0FB23CB100576B64 /* PBXTextBookmark */ = {
698
+ D4652BC00FB87EBB000C613E /* PBXTextBookmark */ = {
917
699
  isa = PBXTextBookmark;
918
- fRef = D47BD32A0BD78F7200ACF014 /* RubyGosu.swg */;
919
- name = "RubyGosu.swg: 103";
700
+ fRef = D410E9C80A8019CD005C7067 /* Font.hpp */;
701
+ name = "Font.hpp: 37";
920
702
  rLen = 0;
921
- rLoc = 3407;
703
+ rLoc = 1230;
922
704
  rType = 0;
923
- vrLen = 580;
924
- vrLoc = 3115;
705
+ vrLen = 1203;
706
+ vrLoc = 1593;
925
707
  };
926
- D428EF2B0FB23CB100576B64 /* PBXTextBookmark */ = {
708
+ D4652BC20FB87EBB000C613E /* PBXTextBookmark */ = {
927
709
  isa = PBXTextBookmark;
928
- fRef = D47BD32A0BD78F7200ACF014 /* RubyGosu.swg */;
929
- name = "RubyGosu.swg: 103";
710
+ fRef = D410E9FF0A8019FA005C7067 /* DirectoriesMac.mm */;
711
+ name = "DirectoriesMac.mm: 23";
930
712
  rLen = 0;
931
- rLoc = 3407;
713
+ rLoc = 655;
932
714
  rType = 0;
933
- vrLen = 580;
934
- vrLoc = 3115;
715
+ vrLen = 707;
716
+ vrLoc = 275;
935
717
  };
936
- D428EF2C0FB23CB100576B64 /* PBXTextBookmark */ = {
718
+ D4652BC40FB87EBB000C613E /* PBXTextBookmark */ = {
937
719
  isa = PBXTextBookmark;
938
- fRef = D47BD3280BD78F7200ACF014 /* RubyGosu_wrap.cxx */;
939
- name = "RubyGosu_wrap.cxx: 7";
720
+ fRef = D410E9C80A8019CD005C7067 /* Font.hpp */;
721
+ name = "Font.hpp: 37";
940
722
  rLen = 0;
941
- rLoc = 362;
723
+ rLoc = 1230;
942
724
  rType = 0;
943
- vrLen = 924;
944
- vrLoc = 0;
945
- };
946
- D42BC0D00C4F840C00EBF79C /* Gosu.hpp */ = {
947
- uiCtxt = {
948
- sepNavIntBoundsRect = "{{0, 0}, {1012, 680}}";
949
- sepNavSelRange = "{369, 0}";
950
- sepNavVisRange = "{0, 941}";
951
- sepNavWindowFrame = "{{84, 91}, {868, 619}}";
952
- };
953
- };
954
- D42D023E0F7068BC00407E60 /* AudioFmod.cpp */ = {
955
- uiCtxt = {
956
- sepNavIntBoundsRect = "{{0, 0}, {1012, 9740}}";
957
- sepNavSelRange = "{0, 0}";
958
- sepNavVisRange = "{2313, 758}";
959
- };
960
- };
961
- D42D02DC0F7092DF00407E60 /* AudioFileMac.hpp */ = {
962
- uiCtxt = {
963
- sepNavIntBoundsRect = "{{0, 0}, {1038, 2220}}";
964
- sepNavSelRange = "{1258, 10}";
965
- sepNavVisRange = "{1111, 1033}";
966
- };
967
- };
968
- D42D03430F70989100407E60 /* ALChannelManagement.hpp */ = {
969
- uiCtxt = {
970
- sepNavIntBoundsRect = "{{0, 0}, {1012, 1387}}";
971
- sepNavSelRange = "{1793, 0}";
972
- sepNavVisRange = "{1018, 1179}";
973
- };
974
- };
975
- D42DFE380F6F84DA00407E60 /* AudioOpenAL.mm */ = {
976
- uiCtxt = {
977
- sepNavFolds = "{\n c = (\n {\n r = \"{1537, 1}\";\n s = 0;\n }\n );\n r = \"{0, 12324}\";\n s = 0;\n}";
978
- sepNavIntBoundsRect = "{{0, 0}, {1012, 9253}}";
979
- sepNavSelRange = "{4717, 0}";
980
- sepNavVisRange = "{4422, 473}";
981
- sepNavWindowFrame = "{{15, -1}, {1280, 774}}";
982
- };
983
- };
984
- D459FF430BDCD23500E7F0D6 /* RubyGosu App */ = {
985
- activeExec = 0;
986
- executables = (
987
- D499E6130D06B05200BA6DEC /* RubyGosu App */,
988
- );
725
+ vrLen = 1203;
726
+ vrLoc = 1593;
989
727
  };
990
728
  D46C2E070FAE090200A33476 /* array.c */ = {
991
729
  uiCtxt = {
@@ -1189,9 +927,9 @@
1189
927
  };
1190
928
  D47BD3280BD78F7200ACF014 /* RubyGosu_wrap.cxx */ = {
1191
929
  uiCtxt = {
1192
- sepNavIntBoundsRect = "{{0, 0}, {1263, 211420}}";
1193
- sepNavSelRange = "{362, 0}";
1194
- sepNavVisRange = "{0, 924}";
930
+ sepNavIntBoundsRect = "{{0, 0}, {1596, 209780}}";
931
+ sepNavSelRange = "{0, 0}";
932
+ sepNavVisRange = "{0, 1469}";
1195
933
  sepNavWindowFrame = "{{611, 4}, {669, 774}}";
1196
934
  };
1197
935
  };
@@ -1204,9 +942,9 @@
1204
942
  };
1205
943
  D47BD32A0BD78F7200ACF014 /* RubyGosu.swg */ = {
1206
944
  uiCtxt = {
1207
- sepNavIntBoundsRect = "{{0, 0}, {1012, 10860}}";
1208
- sepNavSelRange = "{3407, 0}";
1209
- sepNavVisRange = "{3115, 580}";
945
+ sepNavIntBoundsRect = "{{0, 0}, {1614, 10400}}";
946
+ sepNavSelRange = "{16685, 0}";
947
+ sepNavVisRange = "{15773, 1634}";
1210
948
  sepNavWindowFrame = "{{135, 73}, {1086, 705}}";
1211
949
  };
1212
950
  };
@@ -1238,155 +976,60 @@
1238
976
  sepNavVisRange = "{1339, 1194}";
1239
977
  };
1240
978
  };
1241
- D491656C0FAF7614001692E0 /* PBXTextBookmark */ = {
1242
- isa = PBXTextBookmark;
1243
- fRef = D410E9BF0A8019CC005C7067 /* Audio.hpp */;
1244
- name = "Audio.hpp: 157";
1245
- rLen = 59;
1246
- rLoc = 5750;
1247
- rType = 0;
1248
- vrLen = 1462;
1249
- vrLoc = 4563;
1250
- };
1251
- D491656D0FAF7614001692E0 /* PBXTextBookmark */ = {
1252
- isa = PBXTextBookmark;
1253
- fRef = D4F07B220D934C8B00FB3D99 /* TextInput.hpp */;
1254
- name = "TextInput.hpp: 14";
1255
- rLen = 688;
1256
- rLoc = 239;
1257
- rType = 0;
1258
- vrLen = 1307;
1259
- vrLoc = 0;
1260
- };
1261
- D491656E0FAF7614001692E0 /* PBXTextBookmark */ = {
1262
- isa = PBXTextBookmark;
1263
- fRef = D410E9CF0A8019CD005C7067 /* Input.hpp */;
1264
- name = "Input.hpp: 111";
1265
- rLen = 0;
1266
- rLoc = 2695;
1267
- rType = 0;
1268
- vrLen = 1285;
1269
- vrLoc = 2025;
1270
- };
1271
- D491656F0FAF7614001692E0 /* PBXTextBookmark */ = {
1272
- isa = PBXTextBookmark;
1273
- fRef = D410E9D90A8019CD005C7067 /* Window.hpp */;
1274
- name = "Window.hpp: 33";
1275
- rLen = 120;
1276
- rLoc = 825;
1277
- rType = 0;
1278
- vrLen = 1210;
1279
- vrLoc = 2619;
1280
- };
1281
- D49165700FAF7614001692E0 /* PBXTextBookmark */ = {
979
+ D497991C0FB8EBC700D893F8 /* PBXTextBookmark */ = {
1282
980
  isa = PBXTextBookmark;
1283
- fRef = D410E9D20A8019CD005C7067 /* Math.hpp */;
1284
- name = "Math.hpp: 58";
981
+ fRef = D410EADB0A801B00005C7067 /* Font.cpp */;
982
+ name = "Font.cpp: 147";
1285
983
  rLen = 0;
1286
- rLoc = 1963;
984
+ rLoc = 3749;
1287
985
  rType = 0;
1288
- vrLen = 1104;
1289
- vrLoc = 2215;
986
+ vrLen = 1038;
987
+ vrLoc = 2906;
1290
988
  };
1291
- D49165710FAF7614001692E0 /* PBXTextBookmark */ = {
989
+ D497991D0FB8EBC700D893F8 /* PBXTextBookmark */ = {
1292
990
  isa = PBXTextBookmark;
1293
- fRef = D410E9D70A8019CD005C7067 /* Timing.hpp */;
1294
- name = "Timing.hpp: 1";
991
+ fRef = D497991E0FB8EBC700D893F8 /* WindowX.cpp */;
1295
992
  rLen = 0;
1296
- rLoc = 0;
1297
- rType = 0;
1298
- vrLen = 341;
1299
- vrLoc = 0;
1300
- };
1301
- D49165720FAF7614001692E0 /* PBXTextBookmark */ = {
1302
- isa = PBXTextBookmark;
1303
- fRef = D410E9D60A8019CD005C7067 /* Text.hpp */;
1304
- name = "Text.hpp: 14";
1305
- rLen = 86;
1306
- rLoc = 232;
993
+ rLoc = 2147483647;
1307
994
  rType = 0;
1308
- vrLen = 1522;
1309
- vrLoc = 0;
1310
995
  };
1311
- D49165750FAF7614001692E0 /* PBXTextBookmark */ = {
1312
- isa = PBXTextBookmark;
1313
- fRef = D410E9BF0A8019CC005C7067 /* Audio.hpp */;
1314
- name = "Audio.hpp: 157";
1315
- rLen = 59;
1316
- rLoc = 5750;
1317
- rType = 0;
1318
- vrLen = 1462;
1319
- vrLoc = 4563;
996
+ D497991E0FB8EBC700D893F8 /* WindowX.cpp */ = {
997
+ isa = PBXFileReference;
998
+ lastKnownFileType = sourcecode.cpp.cpp;
999
+ name = WindowX.cpp;
1000
+ path = /Users/jlnr/Projekte/Gosu/GosuImpl/WindowX.cpp;
1001
+ sourceTree = "<absolute>";
1320
1002
  };
1321
- D49165760FAF7614001692E0 /* PBXTextBookmark */ = {
1003
+ D497991F0FB8EBC700D893F8 /* PBXTextBookmark */ = {
1322
1004
  isa = PBXTextBookmark;
1323
- fRef = D4F07B220D934C8B00FB3D99 /* TextInput.hpp */;
1324
- name = "TextInput.hpp: 14";
1325
- rLen = 688;
1326
- rLoc = 239;
1327
- rType = 0;
1328
- vrLen = 1307;
1329
- vrLoc = 0;
1330
- };
1331
- D49165770FAF7614001692E0 /* PBXTextBookmark */ = {
1332
- isa = PBXTextBookmark;
1333
- fRef = D410E9D90A8019CD005C7067 /* Window.hpp */;
1334
- name = "Window.hpp: 96";
1335
- rLen = 0;
1336
- rLoc = 3333;
1337
- rType = 0;
1338
- vrLen = 1210;
1339
- vrLoc = 2619;
1340
- };
1341
- D49165780FAF7614001692E0 /* PBXTextBookmark */ = {
1342
- isa = PBXTextBookmark;
1343
- fRef = D410E9CF0A8019CD005C7067 /* Input.hpp */;
1344
- name = "Input.hpp: 111";
1005
+ fRef = D410EADB0A801B00005C7067 /* Font.cpp */;
1006
+ name = "Font.cpp: 147";
1345
1007
  rLen = 0;
1346
- rLoc = 2695;
1008
+ rLoc = 3749;
1347
1009
  rType = 0;
1348
- vrLen = 1285;
1349
- vrLoc = 2025;
1010
+ vrLen = 1038;
1011
+ vrLoc = 2906;
1350
1012
  };
1351
- D49165790FAF7614001692E0 /* PBXTextBookmark */ = {
1013
+ D49799250FB8EBC900D893F8 /* PBXTextBookmark */ = {
1352
1014
  isa = PBXTextBookmark;
1353
- fRef = D410E9CB0A8019CD005C7067 /* Graphics.hpp */;
1354
- name = "Graphics.hpp: 53";
1015
+ fRef = D49799260FB8EBC900D893F8 /* WindowX.cpp */;
1016
+ name = "WindowX.cpp: 391";
1355
1017
  rLen = 0;
1356
- rLoc = 1647;
1018
+ rLoc = 11634;
1357
1019
  rType = 0;
1358
- vrLen = 1037;
1359
- vrLoc = 0;
1360
- };
1361
- D491657B0FAF7614001692E0 /* PBXTextBookmark */ = {
1362
- isa = PBXTextBookmark;
1363
- fRef = D410E9D20A8019CD005C7067 /* Math.hpp */;
1364
- name = "Math.hpp: 58";
1365
- rLen = 0;
1366
- rLoc = 1963;
1367
- rType = 0;
1368
- vrLen = 1104;
1369
- vrLoc = 2215;
1020
+ vrLen = 923;
1021
+ vrLoc = 11320;
1370
1022
  };
1371
- D491657C0FAF7614001692E0 /* PBXTextBookmark */ = {
1372
- isa = PBXTextBookmark;
1373
- fRef = D410E9D70A8019CD005C7067 /* Timing.hpp */;
1374
- name = "Timing.hpp: 1";
1375
- rLen = 0;
1376
- rLoc = 0;
1377
- rType = 0;
1378
- vrLen = 341;
1379
- vrLoc = 0;
1380
- };
1381
- D491657D0FAF7614001692E0 /* PBXTextBookmark */ = {
1382
- isa = PBXTextBookmark;
1383
- fRef = D410E9D60A8019CD005C7067 /* Text.hpp */;
1384
- name = "Text.hpp: 14";
1385
- rLen = 86;
1386
- rLoc = 232;
1387
- rType = 0;
1388
- vrLen = 1522;
1389
- vrLoc = 0;
1023
+ D49799260FB8EBC900D893F8 /* WindowX.cpp */ = {
1024
+ isa = PBXFileReference;
1025
+ name = WindowX.cpp;
1026
+ path = /Users/jlnr/Projekte/Gosu/GosuImpl/WindowX.cpp;
1027
+ sourceTree = "<absolute>";
1028
+ uiCtxt = {
1029
+ sepNavIntBoundsRect = "{{0, 0}, {1012, 8740}}";
1030
+ sepNavSelRange = "{11634, 0}";
1031
+ sepNavVisRange = "{11320, 923}";
1032
+ };
1390
1033
  };
1391
1034
  D499E6130D06B05200BA6DEC /* RubyGosu App */ = {
1392
1035
  isa = PBXExecutable;
@@ -1427,9 +1070,9 @@
1427
1070
  };
1428
1071
  D499E6380D06B51300BA6DEC /* DrawOp.hpp */ = {
1429
1072
  uiCtxt = {
1430
- sepNavIntBoundsRect = "{{0, 0}, {1012, 5200}}";
1431
- sepNavSelRange = "{6307, 0}";
1432
- sepNavVisRange = "{6180, 748}";
1073
+ sepNavIntBoundsRect = "{{0, 0}, {1012, 5060}}";
1074
+ sepNavSelRange = "{243, 0}";
1075
+ sepNavVisRange = "{709, 1107}";
1433
1076
  sepNavWindowFrame = "{{205, 73}, {888, 705}}";
1434
1077
  };
1435
1078
  };
@@ -1478,11 +1121,18 @@
1478
1121
  sepNavVisRange = "{319, 1374}";
1479
1122
  };
1480
1123
  };
1124
+ D4A7E9080CD377E000621B24 /* Async.cpp */ = {
1125
+ uiCtxt = {
1126
+ sepNavIntBoundsRect = "{{0, 0}, {1012, 760}}";
1127
+ sepNavSelRange = "{0, 0}";
1128
+ sepNavVisRange = "{0, 969}";
1129
+ };
1130
+ };
1481
1131
  D4A7E97B0CD3907D00621B24 /* Texture.cpp */ = {
1482
1132
  uiCtxt = {
1483
- sepNavIntBoundsRect = "{{0, 0}, {1020, 2420}}";
1484
- sepNavSelRange = "{1093, 0}";
1485
- sepNavVisRange = "{981, 473}";
1133
+ sepNavIntBoundsRect = "{{0, 0}, {1012, 2600}}";
1134
+ sepNavSelRange = "{1460, 0}";
1135
+ sepNavVisRange = "{849, 815}";
1486
1136
  sepNavWindowFrame = "{{95, 76}, {968, 702}}";
1487
1137
  };
1488
1138
  };
@@ -1535,9 +1185,9 @@
1535
1185
  };
1536
1186
  D4BC5D6A0CC29D0F002D4236 /* Async.hpp */ = {
1537
1187
  uiCtxt = {
1538
- sepNavIntBoundsRect = "{{0, 0}, {1012, 940}}";
1539
- sepNavSelRange = "{199, 0}";
1540
- sepNavVisRange = "{0, 1061}";
1188
+ sepNavIntBoundsRect = "{{0, 0}, {1012, 1000}}";
1189
+ sepNavSelRange = "{396, 0}";
1190
+ sepNavVisRange = "{0, 903}";
1541
1191
  sepNavWindowFrame = "{{15, 215}, {750, 558}}";
1542
1192
  };
1543
1193
  };
@@ -1546,9 +1196,9 @@
1546
1196
  };
1547
1197
  D4D8CB380BD3973400CB51A9 /* RubyGosuStub.mm */ = {
1548
1198
  uiCtxt = {
1549
- sepNavIntBoundsRect = "{{0, 0}, {1012, 1000}}";
1550
- sepNavSelRange = "{1458, 0}";
1551
- sepNavVisRange = "{493, 1092}";
1199
+ sepNavIntBoundsRect = "{{0, 0}, {1012, 1020}}";
1200
+ sepNavSelRange = "{1580, 0}";
1201
+ sepNavVisRange = "{852, 794}";
1552
1202
  };
1553
1203
  };
1554
1204
  D4F07B220D934C8B00FB3D99 /* TextInput.hpp */ = {