Click here to Skip to main content
15,891,184 members
Articles / Web Development / HTML

Circuit Engine

Rate me:
Please Sign up or sign in to vote.
4.93/5 (103 votes)
18 Oct 2018GPL355 min read 249.4K   8.6K   212  
A System for Simulation and Analysis of Logic Circuits
/*
This file is part of Circuit Engine.
 
Circuit Engine 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 3 of the License, or
(at your option) any later version.
 
Circuit Engine is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
 
You should have received a copy of the GNU General Public License
along with Circuit Engine.  If not, see <http://www.gnu.org/licenses/>.
-----------------------------------------------------------------------
*/
char *ScriptFilePath;
#include "Artist.h"
#include <time.h>
#include <io.h>
#include <new.h>


FILE *logfile;

int handle_program_memory_depletion(size_t mem)
{
	printf("(!e!)CEngine: Not enough memory. CEngine halted");	
	exit(1);
}
int main(int argc, char **argv)
{
	int CheckTheFile;
	char FileIdBuf[9];
	char LogFileName[32];

	//log file name
	strcpy(LogFileName,"CEngineLog_");
	_strdate(LogFileName+11);
	LogFileName[19] = '_';
	_strtime(LogFileName+20);
	LogFileName[13] = '.';
	LogFileName[16] = '.';
	LogFileName[22] = '.';
	LogFileName[25] = '.';
	strcat(LogFileName + 28, ".txt");

	_set_new_handler( handle_program_memory_depletion );

	printf("\n%s\n",LogFileName);

	if((logfile = fopen(LogFileName, "w")) == 0)
	{
		perror("log creat error");
		exit(1);
	}

	
	if(-1 == _dup2( _fileno( logfile ), 1) )
	{
		perror( "Can't _dup2 stdout to log file" );
		exit( 1 );
	}	

	ScriptFilePath = argv[1];
	CEngineArtist = new CECircuit();

	//resolve the file whether it is CESL of CEC file.
	//:check if the file has CEC_FILE id, if so, treat as CEC file
	//else send it to the CECircuit parser
	CheckTheFile = _open(ScriptFilePath, _O_RDONLY);
	_read(CheckTheFile, &FileIdBuf, sizeof(char)*9);
	_close(CheckTheFile);

	if(strncmp("CEC_FILE:", FileIdBuf, 9))
	{//this is surely not the CEC file, so treat the file as a CESL file
		//sending to the parser		
        CEngineArtist->ParseScriptFile(ScriptFilePath);	
		CEngineArtist->InsertTempVG();
		
	}
	else //it is a CEC file, so retrieve the circuit information from the file
	{		
        CEngineArtist->LoadCircuit(ScriptFilePath);
		SelectedCE = (CircuitElement *)LastSelectedCE;
	}
	
	InitArtist();	
	EnterMainLoop();	

	return 0;
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The GNU General Public License (GPLv3)


Written By
Engineer Siemens
Turkey Turkey
I've graduated from computer engineering department in 2004 July, and developed the Circuit Engine as my graduation project at Eastern Mediterranean University (EMU). I've also graduated from MBA, Istanbul University in 2008 February. From 2004 until now, I've developed many web sites (B2B, B2C). Currently work for Siemens AG (http://siemens.com/ingenuityforlife) as a R&D Engineer (IoT) and I still continue to develop my personal projects about encryption algorithms, maths, OpenGL, Stock Exchange Market Analyses and Real-time Systems, MultiThreaded Applications and Web Solutions (mostly ASP.NET C#, JQuery/JS, MVC, WinForms, Win/Web Services, T-SQL and less PHP, ASP, MySQL and some possible other methods about problem solving if necessary). Also personal profession of photography : https://www.instagram.com/egldgn/


Circuit Engine base URL : https://sites.google.com/view/circuitengine


Comments and Discussions