You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
piklab/src/tools/jalv2/jalv2.cpp

78 lines
2.6 KiB

/***************************************************************************
* 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 "jalv2.h"
#include "jalv2_compile.h"
#include "jalv2_config.h"
#include "devices/pic/pic/pic_memory.h"
#include "devices/list/device_list.h"
#include "common/global/process.h"
#include "tools/jal/jal_generator.h"
//----------------------------------------------------------------------------
bool JALV2::Base::checkExecutableResult(bool, TQStringList &lines) const
{
TQStringList 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") );
}
//----------------------------------------------------------------------------
TQString JALV2::Group::informationText() const
{
return i18n("<a href=\"%1\">JAL V2</a> is a new compiler for the high-level language JAL.").tqarg("http://www.casadeyork.com/jalv2");
}
Tool::Group::BaseData JALV2::Group::baseFactory(Tool::Category category) const
{
if ( category==Tool::Category::Compiler ) return BaseData(new ::JALV2::Base, Both);
return BaseData();
}
const char * const SUPPORTED_DEVICES[] = {
"12C509A", "12F675",
"16F628",
"16F818", "16F819",
"16C84", "16F84",
"16F87", "16F88",
"16F873", "16F874", "16F876", "16F877",
"16F873A", "16F874A", "16F876A", "16F877A",
"18F242", "18F252", "18F452",
0
};
TQValueList<const Device::Data *> JALV2::Group::getSupportedDevices(const TQString &) const
{
TQValueList<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 *JALV2::Group::processFactory(const Compile::Data &data) const
{
Q_ASSERT( data.category==Tool::Category::Compiler );
return new CompileFile;
}
Compile::Config *JALV2::Group::configFactory(::Project *project) const
{
return new Config(project);
}
Tool::SourceGenerator *JALV2::Group::sourceGeneratorFactory() const
{
return new JAL::SourceGenerator;
}