summaryrefslogtreecommitdiff
path: root/src/game/SampleTool.cpp
blob: a8880b31d3da5b61e9cb24c0903b32efa0f1bd41 (plain)
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
#include <iostream>
#include "graphics/Graphics.h"
#include "Tool.h"
#include "GameModel.h"

VideoBuffer * SampleTool::GetIcon(int toolID, int width, int height)
{
	VideoBuffer * newTexture = new VideoBuffer(width, height);
	for (int y=0; y<height; y++)
	{
		for (int x=0; x<width; x++)
		{
			pixel pc =  x==0||x==width-1||y==0||y==height-1 ? PIXPACK(0xA0A0A0) : PIXPACK(0x000000);
			newTexture->SetPixel(x, y, PIXR(pc), PIXG(pc), PIXB(pc), 255);
		}
	}
	newTexture->SetCharacter((width/2)-5, (height/2)-5, 0xE6, 255, 255, 255, 255);
	newTexture->BlendCharacter((width/2)-5, (height/2)-5, 0xE7, 100, 180, 255, 255);
	return newTexture;
}

void SampleTool::Draw(Simulation * sim, Brush * brush, ui::Point position)
{
	int particleType = 0;
	if(sim->pmap[position.Y][position.X])
		particleType = sim->parts[sim->pmap[position.Y][position.X]>>8].type;
	else if(sim->photons[position.Y][position.X])
		particleType = sim->parts[sim->photons[position.Y][position.X]>>8].type;

	if(particleType)
	{
		Tool * elementTool = gameModel->GetElementTool(particleType);
		if(elementTool)
			gameModel->SetActiveTool(0, elementTool);
	}
}