summaryrefslogtreecommitdiffstats
path: root/src/datablocks/unitratiolist.cpp
blob: 6955005638b74fef0de58b61067b5015a8a6c680 (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
/***************************************************************************
*   Copyright (C) 2003 by Unai Garro                                      *
*   ugarro@users.sourceforge.net                                          *
*                                                                         *
*   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 2 of the License, or     *
*   (at your option) any later version.                                   *
***************************************************************************/
#include "unitratiolist.h"
#include "tdelocale.h"


UnitRatioList::UnitRatioList()
{}


UnitRatioList::~UnitRatioList()
{}

double UnitRatioList::getRatio( int uid1, int uid2 )
{
	if ( uid1 == uid2 )
		return ( 1.0 );
	else {
		for ( UnitRatioList::const_iterator ur_it = begin();ur_it != end(); ++ur_it ) {
			if ( ( *ur_it ).uID1 == uid1 && ( *ur_it ).uID2 == uid2 )
				return ( ( *ur_it ).ratio );
			else if ( ( *ur_it ).uID1 == uid2 && ( *ur_it ).uID2 == uid1 )
				return ( 1.0 / ( *ur_it ).ratio );
		}
		return ( -1.0 );
	}
}