-
Notifications
You must be signed in to change notification settings - Fork 0
/
texpool.cpp
53 lines (45 loc) · 1.51 KB
/
texpool.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/*
* graphic depictions, a visual workbench for graphs
*
* Copyright (C) 2016 Matvey Soloviev
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "stdafx.h"
#include "texpool.h"
CSTexture* CSTexturePool::GetTexture(char *name)
{
if(pool.count(name)) return pool[name];
std::string n(name);
pool[n]=new CSTexture;
pool[n]->name=new char[strlen(name)+1];
strcpy(pool[n]->name,name);
int off;
if((off=n.rfind('/')) != std::string::npos) {
int r,g,b;
std::string q=n.substr(off+1,999);
char *s=(char*)q.c_str();
if(q.find(':') != std::string::npos) {
int x1,y1,x2,y2;
sscanf(s,"%d:%d:%d:%d",&x1,&y1,&x2,&y2);
pool[n]->SubareaCopy(GetTexture((char*)n.substr(0,off).c_str()),x1,y1,x2,y2);
} else {
sscanf(s,"%2X%2X%2X",&r,&g,&b);
pool[n]->CKCopy(GetTexture((char*)n.substr(0,off).c_str()),r,g,b);
}
} else {
pool[n]->LoadBitmap((char*)("data/"+n).c_str());
}
return pool[n];
}