~ubuntu-branches/ubuntu/precise/pingus/precise

« back to all changes in this revision

Viewing changes to src/res_descriptor.cxx

  • Committer: Bazaar Package Importer
  • Author(s): Raphael Goulais
  • Date: 2004-08-09 10:26:00 UTC
  • mfrom: (2.1.1 warty)
  • Revision ID: james.westby@ubuntu.com-20040809102600-lg2q9lfars0q1p42
Tags: 0.6.0-8
Applied patch from Andreas Jochens (Closes: #263992)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//  $Id: res_descriptor.cxx,v 1.15 2003/04/02 19:59:04 grumbel Exp $
 
2
//
 
3
//  Pingus - A free Lemmings clone
 
4
//  Copyright (C) 1999 Ingo Ruhnke <grumbel@gmx.de>
 
5
//
 
6
//  This program is free software; you can redistribute it and/or
 
7
//  modify it under the terms of the GNU General Public License
 
8
//  as published by the Free Software Foundation; either version 2
 
9
//  of the License, or (at your option) any later version.
 
10
//
 
11
//  This program is distributed in the hope that it will be useful,
 
12
//  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
//  GNU General Public License for more details.
 
15
//
 
16
//  You should have received a copy of the GNU General Public License
 
17
//  along with this program; if not, write to the Free Software
 
18
//  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
19
 
 
20
#include <assert.h>
 
21
#include <iostream>
 
22
#include "res_descriptor.hxx"
 
23
#include "pingus_error.hxx"
 
24
 
 
25
/* 
 
26
   uri -> file:///home/ingo/.pingus/images/...
 
27
   uri -> resource://core/result/ok
 
28
   uri -> file://bla.png (relative to ~/.pingus/images/)
 
29
   ResDescriptor(const std::string& uri);
 
30
*/
 
31
 
 
32
ResDescriptor::ResDescriptor()
 
33
{
 
34
  type = RD_RESOURCE;
 
35
  res_name = "";
 
36
  datafile = "global";
 
37
  modifier = ResourceModifierNS::ROT0;
 
38
}
 
39
 
 
40
ResDescriptor::ResDescriptor (const ResDescriptor& res_desc)
 
41
                            : type(res_desc.type),
 
42
                              datafile(res_desc.datafile),
 
43
                              res_name(res_desc.res_name),
 
44
                              modifier(res_desc.modifier)
 
45
{
 
46
}
 
47
 
 
48
ResDescriptor&
 
49
ResDescriptor::operator= (const ResDescriptor& old)
 
50
{
 
51
  if (this == &old)
 
52
    return *this;
 
53
    
 
54
  type     = old.type;
 
55
  datafile = old.datafile;
 
56
  res_name = old.res_name;
 
57
  modifier = old.modifier;
 
58
  
 
59
  return *this; 
 
60
}
 
61
 
 
62
ResDescriptor::ResDescriptor(const std::string& arg_res_name,
 
63
                             const std::string& arg_datafile,
 
64
                             ResourceType arg_type,
 
65
                             ResourceModifierNS::ResourceModifier arg_modifier)
 
66
{
 
67
  res_name = arg_res_name;
 
68
  datafile = arg_datafile;
 
69
  type     = arg_type;
 
70
  modifier = arg_modifier;
 
71
}
 
72
 
 
73
bool
 
74
ResDescriptor::operator<(const ResDescriptor& res_desc) const
 
75
{
 
76
  // FIXME: This is ugly and slow
 
77
  //return (datafile + res_name + to_string (type) + to_string (modifier)) 
 
78
  //  < (res_desc.datafile + res_desc.res_name + to_string (res_desc.type) + to_string (res_desc.modifier));
 
79
 
 
80
  if (datafile < res_desc.datafile)
 
81
    return true;
 
82
  else if (datafile > res_desc.datafile)
 
83
    return false;
 
84
  else
 
85
    {
 
86
      if (res_name < res_desc.res_name)
 
87
        return true;
 
88
      else if (res_name > res_desc.res_name)
 
89
        return false;
 
90
      else
 
91
        {
 
92
          if (modifier < res_desc.modifier)
 
93
            return true;
 
94
          else if (modifier > res_desc.modifier)
 
95
            return false;
 
96
          else
 
97
            {
 
98
              if (type < res_desc.type)
 
99
                return true;
 
100
              else if (type > res_desc.type)
 
101
                return false;
 
102
              else
 
103
                return false;  
 
104
            }
 
105
        }
 
106
    }
 
107
}
 
108
 
 
109
std::ostream& operator<<(std::ostream& s, const ResDescriptor& desc)
 
110
{
 
111
  switch (desc.type)
 
112
    {
 
113
    case ResDescriptor::RD_RESOURCE:
 
114
      return s << "[" << desc.res_name << ", " << desc.datafile 
 
115
               << ", " << ResourceModifierNS::rs_to_string(desc.modifier) << "]";
 
116
      break;
 
117
    case ResDescriptor::RD_FILE:
 
118
      return s << "(plainfile:" << desc.res_name << ")";
 
119
      break;
 
120
    case ResDescriptor::RD_AUTO:
 
121
      return s << "(auto)";
 
122
      break;
 
123
    default:
 
124
      std::cout << "ResDescriptor: Unknown type: " << desc.type << std::endl;
 
125
      assert (!"Unknown type");
 
126
      return s;
 
127
    }
 
128
}
 
129
 
 
130
/* EOF */