Overview
Examples
Screenshots
Comparisons
Applications
Download
Documentation
Tutorials
Bazaar
Status & Roadmap
FAQ
Authors & License
Forums
Funding Ultimate++
Search on this site
Search in forums












SourceForge.net Logo
Home » Developing U++ » U++ Developers corner » Console decoration for DOS (windows)
Re: Console decoration for DOS (windows) [message #36419 is a reply to message #36418] Fri, 25 May 2012 17:31 Go to previous messageGo to previous message
ratah is currently offline  ratah
Messages: 107
Registered: July 2010
Experienced Member
Here is a sample test
Quote:


#include <Core/Core.h>

using namespace Upp;

COORD coord1, coord2;
Stream& s1 = Cout();
Stream& s2 = Cout();
StaticMutex mutex1, mutex2;

class multithread
{
public :

typedef multithread CLASSNAME;

Thread th1, th2;

void thr_1()
{
for(int i=0; i<=10; i++)
{
th2.Sleep(100);
s1.SetConsoleCursorPos(coord1);
s1 << i;
}
}

void thr_2()
{
for(int i=0; i<=15; i++)
{
th1.Sleep(100);
s2.SetConsoleCursorPos(coord2);
s2 << i;
}
}

void Test()
{

s1 << "\n\tTHREAD 1 ...";
s1.GetConsoleCursorPos(coord1);


s2 << "\n\tTHREAD 2 ...";
s2.GetConsoleCursorPos(coord2);

th1.Run(THISBACK(thr_1));
th2.Run(THISBACK(thr_2));

th1.Wait();
th2.Wait();
}
};

CONSOLE_APP_MAIN
{
Stream& s = Cout();

s.PutEol();
s.PutEol();
s << "\t";

s.Colorize(1,14);
s << " THIS IS A CONSOLE DECORATION TEST ";
s.Colorize();
s.PutEol();
s.PutEol();

multithread mt;
mt.Test();

s.PutEol();
s.PutEol();
}




and the result
index.php?t=getfile&id=3757&private=0

Wish it will be usefull for you.

Ratah
  • Attachment: console.jpg
    (Size: 14.08KB, Downloaded 556 times)

[Updated on: Fri, 25 May 2012 17:33]

Report message to a moderator

 
Read Message
Read Message
Read Message
Read Message
Previous Topic: Web framework - Skylark - first taste
Next Topic: CodeEditor with user-definable syntax highlighting
Goto Forum:
  


Current Time: Sun May 12 23:54:34 CEST 2024

Total time taken to generate the page: 0.02632 seconds