]> git.draconx.ca Git - upkg.git/blob - src/engine/music-dummymod.c
Add copyright notices.
[upkg.git] / src / engine / music-dummymod.c
1 /*
2  *  upkg: tool for manipulating Unreal Tournament packages.
3  *  Copyright (C) 2009 Nick Bowler
4  *
5  *  This program is free software; you can redistribute it and/or modify
6  *  it under the terms of the GNU General Public License as published by
7  *  the Free Software Foundation; either version 2 of the License, or
8  *  (at your option) any later version.
9  *
10  *  This program is distributed in the hope that it will be useful,
11  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  *  GNU General Public License for more details.
14  *
15  *  You should have received a copy of the GNU General Public License
16  *  along with this program; if not, write to the Free Software
17  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18  */
19
20 #include <stdio.h>
21 #include <stdlib.h>
22
23 #include "music-module.h"
24 #include "upkg.h"
25
26 struct music_mod {
27         struct upkg_file *f;
28 };
29
30 int music_mod_init(void)
31 {
32         return 0;
33 }
34
35 void music_mod_exit(void)
36 {
37 }
38
39 struct music_mod *music_mod_open(struct upkg_file *f)
40 {
41         struct music_mod *m = malloc(sizeof *m);
42
43         if (m) {
44                 m->f = f;
45         }
46
47         return m;
48 }
49
50 void music_mod_close(struct music_mod *m)
51 {
52         free(m);
53 }
54
55 int music_mod_dump(struct music_mod *m, FILE *of)
56 {
57         unsigned char buf[1024];
58         size_t rc;
59
60         if (upkg_export_seek(m->f, 0, SEEK_SET) != 0) {
61                 return -1;
62         }
63
64         while (1) {
65                 rc = upkg_export_read(m->f, buf, sizeof buf);
66                 if (rc == 0) {
67                         if (!m->f->eof)
68                                 return -1;
69                         return 0;
70                 }
71
72                 if (fwrite(buf, rc, 1, of) != 1) {
73                         if (feof(of)) {
74                                 fprintf(stderr, "unexpected end-of-file.\n");
75                         } else {
76                                 perror("fwrite");
77                         }
78                         return -1;
79                 }
80
81                 if (rc < sizeof buf) {
82                         if (!m->f->eof)
83                                 return -1;
84                         return 0;
85                 }
86         }
87 }
88
89 const char *music_mod_type(struct music_mod *mod)
90 {
91         return "unknown";
92 }