diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-02-24 18:42:24 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-02-24 18:42:24 +0000 |
commit | f508189682b6fba62e08feeb1596f682bad5fff9 (patch) | |
tree | 28aeb0e6c19386c385c1ce5edf8a92c1bca15281 /src/tools/jal/jal.cpp | |
download | piklab-f508189682b6fba62e08feeb1596f682bad5fff9.tar.gz piklab-f508189682b6fba62e08feeb1596f682bad5fff9.zip |
Added KDE3 version of PikLab
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/piklab@1095639 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/tools/jal/jal.cpp')
-rw-r--r-- | src/tools/jal/jal.cpp | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/src/tools/jal/jal.cpp b/src/tools/jal/jal.cpp new file mode 100644 index 0000000..009ea21 --- /dev/null +++ b/src/tools/jal/jal.cpp @@ -0,0 +1,72 @@ +/*************************************************************************** + * Copyright (C) 2006 Nicolas Hadacek <hadacek@kde.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 "jal.h" + +#include "jal_compile.h" +#include "jal_config.h" +#include "devices/pic/pic/pic_memory.h" +#include "devices/list/device_list.h" +#include "common/global/process.h" +#include "jal_generator.h" + +//---------------------------------------------------------------------------- +bool JAL::Base::checkExecutableResult(bool, QStringList &lines) const +{ + QStringList tmp; + for (uint i=0; i<lines.count(); i++) + if ( !lines[i].contains('\r') ) tmp += lines[i]; // ?? + lines = tmp; + return ( lines.count()>0 && lines[0].startsWith("jal") ); +} + +//---------------------------------------------------------------------------- +QString JAL::Group::informationText() const +{ + return i18n("<a href=\"%1\">JAL</a> is a high-level language for PIC microcontrollers.").arg("http://jal.sourceforge.net"); +} + +Tool::Group::BaseData JAL::Group::baseFactory(Tool::Category category) const +{ + if ( category==Tool::Category::Compiler ) return BaseData(new ::JAL::Base, Both); + return BaseData(); +} + +const char * const SUPPORTED_DEVICES[] = { + "12C508", "12C509A", "12CE674", "12F629", "12F675", + "16C84", "16F84", "16F88", "16F873", "16F876", "16F877", "16F628", + "18F242", "18F252", "18F442", "18F452", + 0 +}; + +QValueList<const Device::Data *> JAL::Group::getSupportedDevices(const QString &) const +{ + QValueList<const Device::Data *> list; + for (uint i=0; SUPPORTED_DEVICES[i]; i++) { + const Device::Data *data = Device::lister().data(SUPPORTED_DEVICES[i]); + Q_ASSERT(data); + list.append(data); + } + return list; +} + +Compile::Process *JAL::Group::processFactory(const Compile::Data &data) const +{ + Q_ASSERT( data.category==Tool::Category::Compiler ); + return new CompileFile; +} + +Compile::Config *JAL::Group::configFactory(::Project *project) const +{ + return new Config(project); +} + +Tool::SourceGenerator *JAL::Group::sourceGeneratorFactory() const +{ + return new SourceGenerator; +} |