qucs_s/qucs/components/greytobinary4bit.cpp
Muhammet Şükrü Demir b7a0e1be81 rename getFirst and getLast to front,back.
QList, std::vector etc. has front and back so this changes will reduce refactoring effort.
2024-07-31 12:02:39 +03:00

172 lines
5.7 KiB
C++

/***************************************************************************
greytobinary4bit
-------------------
begin : December 2008
copyright : (C) 2008 by Mike Brinson
email : mbrin72043@yahoo.co.uk
***************************************************************************/
/*
* greytobinary4bit.cpp - device implementations for greytobinary4bit module
*
* This 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, or (at your option)
* any later version.
*
*/
#include "greytobinary4bit.h"
#include "node.h"
#include "misc.h"
greytobinary4bit::greytobinary4bit()
{
Type = isComponent; // Analogue and digital component.
Description = QObject::tr ("4bit Gray to binary converter verilog device");
Props.append (new Property ("TR", "6", false,
QObject::tr ("transfer function scaling factor")));
Props.append (new Property ("Delay", "1 ns", false,
QObject::tr ("output delay")
+" ("+QObject::tr ("s")+")"));
createSymbol ();
tx = x1 + 19;
ty = y2 + 4;
icon_dy = 8;
Model = "greytobinary4bit";
Name = "Y";
}
Component * greytobinary4bit::newOne()
{
greytobinary4bit * p = new greytobinary4bit();
p->Props.front()->Value = Props.front()->Value;
p->recreate(0);
return p;
}
Element * greytobinary4bit::info(QString& Name, char * &BitmapFile, bool getNewOne)
{
Name = QObject::tr("4Bit Gray2Bin");
BitmapFile = (char *) "greytobinary4bit";
if(getNewOne) return new greytobinary4bit();
return 0;
}
void greytobinary4bit::createSymbol()
{
// Body
Rects.append(new qucs::Rect(-30, -60, 60, 100, QPen(Qt::darkBlue,2, Qt::SolidLine, Qt::SquareCap, Qt::MiterJoin)));
// G0
Ports.append(new Port(-50,-30));
Lines.append(new qucs::Line(-50,-30,-30,-30,QPen(Qt::darkBlue,2)));
Texts.append(new Text(-26,-38, "0", Qt::darkBlue, 12.0));
// G1
Ports.append(new Port(-50,-10));
Lines.append(new qucs::Line(-50,-10,-30,-10,QPen(Qt::darkBlue,2)));
Texts.append(new Text(-25,-18, "1", Qt::darkBlue, 12.0));
// G2
Ports.append(new Port(-50, 10));
Lines.append(new qucs::Line(-50, 10,-30, 10,QPen(Qt::darkBlue,2)));
Texts.append(new Text(-26, 2, "2", Qt::darkBlue, 12.0));
// G3
Ports.append(new Port(-50, 30));
Lines.append(new qucs::Line(-50, 30,-30, 30,QPen(Qt::darkBlue,2)));
Texts.append(new Text(-26, 22, "3", Qt::darkBlue, 12.0));
// B3
Ports.append(new Port( 50, 30));
Lines.append(new qucs::Line( 30, 30, 50, 30,QPen(Qt::darkBlue,2)));
Texts.append(new Text( 18, 22, "3", Qt::darkBlue, 12.0));
// B2
Ports.append(new Port( 50, 10));
Lines.append(new qucs::Line( 30, 10, 50, 10,QPen(Qt::darkBlue,2)));
Texts.append(new Text( 18, 2, "2", Qt::darkBlue, 12.0));
// B1
Ports.append(new Port( 50,-10));
Lines.append(new qucs::Line( 30,-10, 50,-10,QPen(Qt::darkBlue,2)));
Texts.append(new Text( 19,-18, "1", Qt::darkBlue, 12.0));
// B0
Ports.append(new Port( 50,-30));
Lines.append(new qucs::Line( 30,-30, 50,-30,QPen(Qt::darkBlue,2)));
Texts.append(new Text( 18,-38, "0", Qt::darkBlue, 12.0));
Texts.append(new Text(-16,-59, "G", Qt::darkBlue, 12.0));
Texts.append(new Text( -2,-59, "/", Qt::darkBlue, 12.0));
Texts.append(new Text( 5,-59, "B", Qt::darkBlue, 12.0));
x1 = -50; y1 = -64;
x2 = 50; y2 = 44;
}
QString greytobinary4bit::vhdlCode( int )
{
QString s="";
QString td = Props.at(1)->Value; // delay time
if(!misc::VHDL_Delay(td, Name)) return td; // time has not VHDL format
td += ";\n";
QString G0 = Ports.at(0)->Connection->Name;
QString G1 = Ports.at(1)->Connection->Name;
QString G2 = Ports.at(2)->Connection->Name;
QString G3 = Ports.at(3)->Connection->Name;
QString B3 = Ports.at(4)->Connection->Name;
QString B2 = Ports.at(5)->Connection->Name;
QString B1 = Ports.at(6)->Connection->Name;
QString B0 = Ports.at(7)->Connection->Name;
s = "\n " + Name + ":process ("+G0+", "+G1+", "+G2+", "+G3+")\n"+
" begin\n"+
" "+B3+" <= "+G3+td+
" "+B2+" <= "+G3+" xor "+G2+td+
" "+B1+" <= "+G3+" xor "+G2+" xor "+G1+td+
" "+B0+" <= "+G3+" xor "+G2+" xor "+G1+" xor "+G0+td+
" end process;\n";
return s;
}
QString greytobinary4bit::verilogCode( int )
{
QString td = Props.at(1)->Value; // delay time
if(!misc::Verilog_Delay(td, Name)) return td; // time does not have VHDL format
QString G0 = Ports.at(0)->Connection->Name;
QString G1 = Ports.at(1)->Connection->Name;
QString G2 = Ports.at(2)->Connection->Name;
QString G3 = Ports.at(3)->Connection->Name;
QString B3 = Ports.at(4)->Connection->Name;
QString B2 = Ports.at(5)->Connection->Name;
QString B1 = Ports.at(6)->Connection->Name;
QString B0 = Ports.at(7)->Connection->Name;
QString l = "";
QString B0R = "net_reg" + Name + B0;
QString B1R = "net_reg" + Name + B1;
QString B2R = "net_reg" + Name + B2;
QString B3R = "net_reg" + Name + B3;
l = "\n // " + Name + " 4bit Gray to binary\n" +
" assign " + B0 + " = " + B0R + ";\n" +
" reg " + B0R + " = 0;\n" +
" assign " + B1 + " = " + B1R + ";\n" +
" reg " + B1R + " = 0;\n" +
" assign " + B2 + " = " + B2R + ";\n" +
" reg " + B2R + " = 0;\n" +
" assign " + B3 + " = " + B3R + ";\n" +
" reg " + B3R + " = 0;\n" +
" always @ ("+G0+" or "+G1+" or "+G2+" or "+G3+")\n" +
" begin\n"+
" "+B3R+" <="+td+" "+G3+";\n"+
" "+B2R+" <="+td+" "+G3+" ^ "+G2+";\n"+
" "+B1R+" <="+td+" "+G3+" ^ "+G2+" ^ "+G1+";\n"+
" "+B0R+" <="+td+" "+G3+" ^ "+G2+" ^ "+G1+" ^ "+G0+";\n"+
" end\n";
return l;
}