~ubuntu-branches/ubuntu/raring/scummvm/raring

« back to all changes in this revision

Viewing changes to audio/softsynth/mt32/mt32_file.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Moritz Muehlenhoff
  • Date: 2011-05-25 19:02:23 UTC
  • mto: (21.1.2 sid)
  • mto: This revision was merged to the branch mainline in revision 24.
  • Revision ID: james.westby@ubuntu.com-20110525190223-fiqm0oaec714xk31
Tags: upstream-1.3.0
ImportĀ upstreamĀ versionĀ 1.3.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Copyright (c) 2003-2005 Various contributors
 
2
 *
 
3
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 
4
 * of this software and associated documentation files (the "Software"), to
 
5
 * deal in the Software without restriction, including without limitation the
 
6
 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
 
7
 * sell copies of the Software, and to permit persons to whom the Software is
 
8
 * furnished to do so, subject to the following conditions:
 
9
 *
 
10
 * The above copyright notice and this permission notice shall be included in
 
11
 * all copies or substantial portions of the Software.
 
12
 *
 
13
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 
14
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 
15
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 
16
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 
17
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 
18
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
 
19
 * IN THE SOFTWARE.
 
20
 */
 
21
 
 
22
 
 
23
#include "mt32emu.h"
 
24
 
 
25
namespace MT32Emu {
 
26
 
 
27
bool File::readBit16u(Bit16u *in) {
 
28
        Bit8u b[2];
 
29
        if (read(&b[0], 2) != 2)
 
30
                return false;
 
31
        *in = ((b[0] << 8) | b[1]);
 
32
        return true;
 
33
}
 
34
 
 
35
bool File::readBit32u(Bit32u *in) {
 
36
        Bit8u b[4];
 
37
        if (read(&b[0], 4) != 4)
 
38
                return false;
 
39
        *in = ((b[0] << 24) | (b[1] << 16) | (b[2] << 8) | b[3]);
 
40
        return true;
 
41
}
 
42
 
 
43
bool File::writeBit16u(Bit16u out) {
 
44
        if (!writeBit8u((Bit8u)((out & 0xFF00) >> 8))) {
 
45
                return false;
 
46
        }
 
47
        if (!writeBit8u((Bit8u)(out & 0x00FF))) {
 
48
                return false;
 
49
        }
 
50
        return true;
 
51
}
 
52
 
 
53
bool File::writeBit32u(Bit32u out) {
 
54
        if (!writeBit8u((Bit8u)((out & 0xFF000000) >> 24))) {
 
55
                return false;
 
56
        }
 
57
        if (!writeBit8u((Bit8u)((out & 0x00FF0000) >> 16))) {
 
58
                return false;
 
59
        }
 
60
        if (!writeBit8u((Bit8u)((out & 0x0000FF00) >> 8))) {
 
61
                return false;
 
62
        }
 
63
        if (!writeBit8u((Bit8u)(out & 0x000000FF))) {
 
64
                return false;
 
65
        }
 
66
        return true;
 
67
}
 
68
 
 
69
} // End of namespace MT32Emu
 
70