summaryrefslogtreecommitdiffstats
path: root/src/micro/microlibrary.cpp
blob: 2c0a4f0002e6e4abbb0efa53fce0c1e7f5d0f05e (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
/***************************************************************************
 *   Copyright (C) 2003 by David Saxton                                    *
 *   david@bluehaze.org                                                    *
 *                                                                         *
 *   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 "microinfo.h"
#include "microlibrary.h"

#include <kdebug.h>
#include <kstaticdeleter.h>

#include "picinfo12bit.h"
#include "picinfo14bit.h"
#include "picinfo16bit.h"

#include "micropackage.h"

MicroLibrary * MicroLibrary::m_pSelf = 0l;
static KStaticDeleter<MicroLibrary> staticMicroLibraryDeleter;

MicroLibrary * MicroLibrary::self()
{
	if ( !m_pSelf )
		staticMicroLibraryDeleter.setObject( m_pSelf, new MicroLibrary() );
	return m_pSelf;
}

MicroLibrary::MicroLibrary()
{
	addMicroInfo( new PicInfo12C508() );
	addMicroInfo( new PicInfo12C509() );
	addMicroInfo( new PicInfo16C54 () );
	addMicroInfo( new PicInfo16C55() );
	addMicroInfo( new PicInfo16C61() );
	addMicroInfo( new PicInfo16C62() );
	addMicroInfo( new PicInfo16C63() );
	addMicroInfo( new PicInfo16C64() );
	addMicroInfo( new PicInfo16F627() );
	addMicroInfo( new PicInfo16F628() );
	addMicroInfo( new PicInfo16C65() );
	addMicroInfo( new PicInfo16C71() );
	addMicroInfo( new PicInfo16C72() );
	addMicroInfo( new PicInfo16C73() );
	addMicroInfo( new PicInfo16C712() );
	addMicroInfo( new PicInfo16C716() );
	addMicroInfo( new PicInfo16C74() );
	addMicroInfo( new PicInfo16C84() );
	addMicroInfo( new PicInfo16CR83() );
	addMicroInfo( new PicInfo16F83() );
	addMicroInfo( new PicInfo16CR84() );
	addMicroInfo( new PicInfo16F84() );
	addMicroInfo( new PicInfo16F873() );
	addMicroInfo( new PicInfo16F874() );
	addMicroInfo( new PicInfo16F877() );
	addMicroInfo( new PicInfo17C752() );
	addMicroInfo( new PicInfo17C756() );
	addMicroInfo( new PicInfo17C762() );
	addMicroInfo( new PicInfo17C766() );
	addMicroInfo( new PicInfo18C242() );
	addMicroInfo( new PicInfo18C252() );
	addMicroInfo( new PicInfo18C442() );
	addMicroInfo( new PicInfo18C452() );
	addMicroInfo( new PicInfo18F442() );
	addMicroInfo( new PicInfo18F452() );
}

MicroLibrary::~MicroLibrary()
{
	const MicroInfoList::iterator end = m_microInfoList.end();
	for ( MicroInfoList::iterator it = m_microInfoList.begin(); it != end; ++it )
	{
		delete *it;
		*it = 0l;
	}
}

MicroInfo * const MicroLibrary::microInfoWithID( TQString id )
{
	id = id.upper();
	const MicroInfoList::iterator end = m_microInfoList.end();
	for ( MicroInfoList::iterator it = m_microInfoList.begin(); it != end; ++it )
	{
		if ( (*it)->id() == id ) return *it;
	}
	
	return 0L;
}

void MicroLibrary::addMicroInfo( MicroInfo *microInfo )
{
	if (microInfo)
		m_microInfoList += microInfo;
}

TQStringList MicroLibrary::microIDs( unsigned asmSet, unsigned gpsimSupport, unsigned flowCodeSupport, unsigned microbeSupport )
{
	TQStringList ids;
	
	const MicroInfoList::iterator end = m_microInfoList.end();
	for ( MicroInfoList::iterator it = m_microInfoList.begin(); it != end; ++it )
	{
		MicroInfo * info = *it;
		if ( (info->instructionSet()->set() & asmSet) &&
					(info->gpsimSupport() & gpsimSupport) &&
					(info->flowcodeSupport() & flowCodeSupport) &&
					(info->microbeSupport() & microbeSupport) )
			ids << info->id();
	}
	return ids;
}