 |
 |
| no further changes |
 |
 |
By MarcusOverhagen - Posted on February 28, 2002 - 09:34:21 (#496)
Current version when comment was posted: 2.0 |
 |
 |
I do not intend to do further changes to this screensaver, and I like the green.
But if you or anybody else wants to modify the screensaver, fell free to do so.
Some things that might get added would include
* configureable or random colors
* ability to change the text
* font selection
As source is included, just do it, and mail me your changes, or release your own screensaver. It would be nice if you would keep the original functionality.
|
|
| green is not good ... change the colors! |
 |
 |
By bbjimmy - Posted on February 27, 2002 - 22:08:19 (#490)
Current version when comment was posted: 2.0 |
 |
 |
initiaklize three integers:
int red;
int green;
int blue;
then use the following in the code:
red = rand() % 255;
blue = rand() % 255;
green = rand () % 255;
view->SetHighColor(red,green,blue);
|
|
| Yes, I remember talking to you |
 |
 |
By MarcusOverhagen - Posted on February 27, 2002 - 13:43:00 (#479)
Current version when comment was posted: 1.0 |
 |
 |
The idea to make a text display screensaver
is probably older than both of us.
And yes, I remember talking to you, it started this way:
[01:09] <Mariux> float asd, dsa;
[01:09] <Mariux> asd = rand() % 800 + 1;
[01:09] <Mariux> dsa = rand() % 800 + 1;
[01:09] <Mariux> view->MovePenTo(asd, dsa);
[01:09] <Mariux> view->DrawString("Cant touch this");
[01:10] <Mariux> why doesnt that work?
[01:10] <Mariux> int asd, dsa; doesnt work either
[01:10] <Mariux> challenge for the screensaver team:-D
end ended like this:
[02:14] <marcus_o> The problem is that you don't use the same order of code as I told you
[02:15] <marcus_o> and that you didn't look into the BeBook to understand how a Screensaveer must work
[...]
[02:16] <Mariux> how how do i make it work, in THIS order ;)
[02:16] <AnEvilYak> sigh.
[02:16] <AnEvilYak> if you're going to insult people then just figure it out yourself.
[02:16] <marcus_o> You don't. And probably AnEvilYak or BGA will help, but not me
|
|
| HAHA |
 |
 |
By mariux123 - Posted on February 27, 2002 - 12:59:42 (#478)
Current version when comment was posted: 1.0 |
 |
 |
HAHA, marcus stole my code, talked to him on IRC yesterday and he "helped" me with it:-D
|
|
|
 |
 |
By aphex - Posted on February 27, 2002 - 11:14:07 (#476)
Current version when comment was posted: 1.0 |
 |
 |
|
|
|
|