added printSegment class and started tester for framework

This commit is contained in:
Samuel D. Crow
2021-03-24 12:47:00 -05:00
parent f0ad605119
commit 7c5bf76778
8 changed files with 380 additions and 55 deletions

51
yabIO.cpp Normal file
View File

@@ -0,0 +1,51 @@
/*
** Yab2Cpp
**
** Transpiler by Samuel D. Crow
**
** based on Yab
**
*/
#include "yab2cpp.h"
printSegment::printSegment(shared_ptr<expression>e, enum SEPARATORS s)
{
cargo=e;
sep=s;
}
void printSegment::generate()
{
if (cargo!=NULL)
{
shared_ptr<operands>op=cargo->evaluate();
switch (op->getSimpleVarType())
{
case T_STRINGVAR:
output_cpp << "printf(\"%s\", " << op->boxName() << ");\n";
break;
case T_INTVAR:
output_cpp << "printf(\"%d\", " << op->boxName() << ");\n";
break;
case T_FLOATVAR:
output_cpp << "printf(\"%f\", " << op->boxName() << ");\n";
break;
default:
break;
}
}
switch (sep)
{
case S_LINEFEED:
output_cpp << "puts(\"\n\");\n";
return;
case S_SEMICOLON:
return;
case S_COMMA:
output_cpp << "putc('\t');\n";
return;
default:
error(E_BAD_SYNTAX);
break;
}
}