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

« back to all changes in this revision

Viewing changes to tools/skycpt/idFinder.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
 
/* ScummVM - Graphic Adventure Engine
2
 
 *
3
 
 * ScummVM is the legal property of its developers, whose names
4
 
 * are too numerous to list here. Please refer to the COPYRIGHT
5
 
 * file distributed with this source distribution.
6
 
 *
7
 
 * This program is free software; you can redistribute it and/or
8
 
 * modify it under the terms of the GNU General Public License
9
 
 * as published by the Free Software Foundation; either version 2
10
 
 * of the License, or (at your option) any later version.
11
 
 
12
 
 * This program is distributed in the hope that it will be useful,
13
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
 
 * GNU General Public License for more details.
16
 
 
17
 
 * You should have received a copy of the GNU General Public License
18
 
 * along with this program; if not, write to the Free Software
19
 
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20
 
 *
21
 
 * $URL: https://scummvm.svn.sourceforge.net/svnroot/scummvm/scummvm/tags/release-1-2-1/tools/skycpt/idFinder.cpp $
22
 
 * $Id: idFinder.cpp 47476 2010-01-23 15:00:11Z strangerke $
23
 
 *
24
 
 */
25
 
 
26
 
#include "stdafx.h"
27
 
#include "TextFile.h"
28
 
#include "KmpSearch.h"
29
 
#include <stdio.h>
30
 
#include <stdlib.h>
31
 
#include <string.h>
32
 
 
33
 
uint16 findCptId(char *name, TextFile *cptFile) {
34
 
        KmpSearch *kmp = new KmpSearch();
35
 
        kmp->init(name);
36
 
        int cLine = 0;
37
 
        do {
38
 
                cLine = cptFile->findLine(kmp, cLine);
39
 
                if (cLine >= 0) {
40
 
                        char *line = cptFile->giveLine(cLine);
41
 
                        if ((strncmp(line, "COMPACT::", 9) == 0) ||
42
 
                                (strncmp(line, "SCRATCH::", 9) == 0) ||
43
 
                                (strncmp(line, "GET_TOS::", 9) == 0)) {
44
 
                                char *stopCh;
45
 
                                uint16 resId = (uint16)strtoul(line + 9, &stopCh, 16);
46
 
                                if ((stopCh[0] == ':') && (stopCh[1] == ':') && (strcmp(stopCh + 2, name) == 0)) {
47
 
                                        delete kmp;
48
 
                                        return resId;
49
 
                                }
50
 
                        }
51
 
                        cLine++;
52
 
                }
53
 
        } while (cLine != -1);
54
 
        delete kmp;
55
 
        return 0;
56
 
}