source: trunk/lib/Colors.cc @ 939

Last change on this file since 939 was 939, checked in by Peter Johansson, 13 years ago

remove declaration of variable not used

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 4.0 KB
Line 
1// $Id: Colors.cc 939 2009-12-03 05:14:50Z peter $
2
3/*
4  Copyright (C) 2009 Jari Häkkinen
5
6  This file is part of svndigest, http://dev.thep.lu.se/svndigest
7
8  svndigest is free software; you can redistribute it and/or modify it
9  under the terms of the GNU General Public License as published by
10  the Free Software Foundation; either version 3 of the License, or
11  (at your option) any later version.
12
13  svndigest is distributed in the hope that it will be useful, but
14  WITHOUT ANY WARRANTY; without even the implied warranty of
15  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  General Public License for more details.
17
18  You should have received a copy of the GNU General Public License
19  along with svndigest. If not, see <http://www.gnu.org/licenses/>.
20*/
21
22#include "Colors.h"
23
24#include "Configuration.h"
25
26#include <cstdlib>
27#include <ctype.h>
28
29namespace theplu {
30namespace svndigest {
31
32  Colors* Colors::instance_=NULL;
33
34
35  Colors::Colors(void)
36    : color_map_(13), next_color_(color_map_.begin())
37
38  {
39    color_map_[ 0].label="green";
40    color_map_[ 0].r=  0; color_map_[ 0].g=146; color_map_[ 0].b= 72;
41    color_map_[ 1].label="blue";
42    color_map_[ 1].r= 27; color_map_[ 1].g=117; color_map_[ 1].b=186;
43    color_map_[ 2].label="red";
44    color_map_[ 2].r=189; color_map_[ 2].g= 32; color_map_[ 2].b= 46;
45    color_map_[ 3].label="grey";
46    color_map_[ 3].r=131; color_map_[ 3].g=131; color_map_[ 3].b=131;
47    color_map_[ 4].label="orange";
48    color_map_[ 4].r=245; color_map_[ 4].g=145; color_map_[ 4].b= 32;
49    color_map_[ 5].label="brown";
50    color_map_[ 5].r=117; color_map_[ 5].g= 77; color_map_[ 5].b= 41;
51    color_map_[ 6].label="cyan";
52    color_map_[ 6].r= 40; color_map_[ 6].g=170; color_map_[ 6].b=225;
53    color_map_[ 7].label="lime";
54    color_map_[ 7].r=213; color_map_[ 7].g=221; color_map_[ 7].b= 38;
55    color_map_[ 8].label="purple";
56    color_map_[ 8].r=143; color_map_[ 8].g= 40; color_map_[ 8].b=140;
57    color_map_[ 9].label="lgrey";
58    color_map_[ 9].r=220; color_map_[ 9].g=220; color_map_[ 9].b=220;
59    color_map_[10].label="lbrown";
60    color_map_[10].r=194; color_map_[10].g=151; color_map_[10].b=106;
61    color_map_[11].label="pink";
62    color_map_[11].r=230; color_map_[11].g=125; color_map_[11].b=230;
63    color_map_[12].label="black";
64    color_map_[12].r=  0; color_map_[12].g=  0; color_map_[12].b=  0;
65
66    typedef std::map<std::string, std::string> ACmap;
67    const ACmap& authcols=Configuration::instance().author_colors();
68    for (ACmap::const_iterator i=authcols.begin(); i!=authcols.end(); i++) {
69      color c;
70      c.label=i->first;
71      if (i->second.size()==6) {
72        c.r= 16*to_decimal(i->second[0]) + to_decimal(i->second[1]);
73        c.g= 16*to_decimal(i->second[2]) + to_decimal(i->second[3]);
74        c.b= 16*to_decimal(i->second[4]) + to_decimal(i->second[5]);
75      }
76      else if (i->second.size()==3) {
77        c.r= 16*to_decimal(i->second[0]) + to_decimal(i->second[0]);
78        c.g= 16*to_decimal(i->second[1]) + to_decimal(i->second[1]);
79        c.b= 16*to_decimal(i->second[2]) + to_decimal(i->second[2]);
80      }
81      else 
82        throw std::runtime_error("invalid color format: " + i->second);
83      next_color_=color_map_.insert(next_color_,c);
84      author_map_.insert(std::make_pair(c.label, next_color_++));
85    }
86  }
87
88
89  void Colors::get_color(const std::string& label, unsigned char& r,
90                           unsigned char& g, unsigned char& b)
91  {
92    std::map<std::string,std::vector<color>::iterator>::iterator i;
93    i = author_map_.lower_bound(label);
94    if (i==author_map_.end() || i->first != label) {
95      // no color defined for label, set color for label
96      i = author_map_.insert(i, std::make_pair(label, next_color_++));
97      if (next_color_==color_map_.end())
98        // end of color map reach, start over
99        next_color_=color_map_.begin();
100    }
101    r = i->second->r;
102    g = i->second->g;
103    b = i->second->b;
104  }
105
106
107  Colors& Colors::instance(void)
108  {
109    if (!instance_)
110      instance_ = new Colors;
111    return *instance_;
112  }
113
114
115  int Colors::to_decimal(int hex)
116  {
117    hex=toupper(hex);
118    if (hex>47 && hex<58) // 0--9
119      return hex-48;
120    if (hex>64 && hex<71) // A--F
121      return hex-55;
122    return -1;
123  }
124
125}} // end of namespace svndigest and namespace theplu
Note: See TracBrowser for help on using the repository browser.