Gamestudio Links
Zorro Links
Newest Posts
Data from CSV not parsed correctly
by EternallyCurious. 04/18/24 10:45
StartWeek not working as it should
by Zheka. 04/18/24 10:11
folder management functions
by VoroneTZ. 04/17/24 06:52
lookback setting performance issue
by 7th_zorro. 04/16/24 03:08
zorro 64bit command line support
by 7th_zorro. 04/15/24 09:36
Zorro FIX plugin - Experimental
by flink. 04/14/24 07:48
Zorro FIX plugin - Experimental
by flink. 04/14/24 07:46
AUM Magazine
Latest Screens
The Bible Game
A psychological thriller game
SHADOW (2014)
DEAD TASTE
Who's Online Now
1 registered members (1 invisible), 672 guests, and 0 spiders.
Key: Admin, Global Mod, Mod
Newest Members
EternallyCurious, howardR, 11honza11, ccorrea, sakolin
19047 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
Page 4 of 6 1 2 3 4 5 6
Re: Sylex Examples :) [Re: VampireLord] #63604
02/20/06 00:09
02/20/06 00:09
Joined: Mar 2005
Posts: 123
O
oronll Offline
Member
oronll  Offline
Member
O

Joined: Mar 2005
Posts: 123
There is alot of errors in the manual .. like no wait(1); for the whiles ...
amd some things are misstyped .. like

SLX3TexCreate(13,SLX3_TT_NORMAL);

should be .. SLX3TexCreate(13,SLX3TT_NORMAL);

anyway none of you bastards are going to explain how to define a model ofr render to texture huh .. fine keep it to yourself huh /turns nose up ..

Re: Sylex Examples :) [Re: oronll] #63605
02/20/06 08:21
02/20/06 08:21
Joined: Jul 2003
Posts: 893
Melbourne, Australia
Matt_Coles Offline OP

User
Matt_Coles  Offline OP

User

Joined: Jul 2003
Posts: 893
Melbourne, Australia
that's why soo many people have had troubles getting sylex working

Re: Sylex Examples :) [Re: Matt_Coles] #63606
02/20/06 09:39
02/20/06 09:39
Joined: Jul 2005
Posts: 109
Cyrpus
Aram Offline
Member
Aram  Offline
Member

Joined: Jul 2005
Posts: 109
Cyrpus
So since I'm translating it, if someone achieved a way to run the parts, Could you be kind enough to put it here so i can write the correct code in the english manual ?

but if you're not, I agree with oronll



Cheers,


GeForce 7800 GT (256 MB DDR3) 3DGS A6 Commercial. DJ Aram
Re: Sylex Examples :) [Re: VampireLord] #63607
02/20/06 09:46
02/20/06 09:46
Joined: Jul 2005
Posts: 109
Cyrpus
Aram Offline
Member
Aram  Offline
Member

Joined: Jul 2005
Posts: 109
Cyrpus
Quote:

btw...for creating chm files or even better to decompile chm files you should always use cheap (in this case meaning zero $) original quality Microsoft Software

http://msdn.microsoft.com/library/defaul...lpDownloads.asp




Thank you,
I always liked that range of price. I'm downloadig it now.


GeForce 7800 GT (256 MB DDR3) 3DGS A6 Commercial. DJ Aram
Re: Sylex Examples :) [Re: Aram] #63608
02/20/06 20:14
02/20/06 20:14
Joined: Mar 2005
Posts: 123
O
oronll Offline
Member
oronll  Offline
Member
O

Joined: Mar 2005
Posts: 123
ok this is the render to texture tutorial ..


// Viewdefinition für ein RenderTarget:
view rt1
{
layer = -2;
pos_x = 0;
pos_y = 0;
size_x = 512;
size_y = 512;
flags = visible,noshadow,noparticle;
}










// Funktion erstellt ein RenderTarget mit Sylex 3.0:
function Create_RTT1()
{



// View welcher in die Textur gezeichnet werden soll bei Sylex 3.0 anmelden
SLX3ViewRegister(12,"rt1");

// Textur mit Sylex 3.0 für ein RenderTarget erstellen
SLX3TexCreate(13,SLX3TT_NORMAL);
SLX3TexSetFormat(13,SLX3FMT_A8R8G8B8);
SLX3TexSetSize(13,512,512);
SLX3TexSetUsage(13,SLX3USAGE_RENDERTARGET);
SLX3TexSetViewID(13,SLX3TS_FRONT,12);
SLX3TexInitialize(13);





// Whileschleife passt den View der Kamera on so das das selbe
// Bild wie der Cameraview in die Textur gezeichnet wird
while(1)
{
proc_late();
vec_set(rt1.x,camera.x);
vec_set(rt1.pan,camera.pan);

wait(1);
}
}



ok thats all great and stuff .. but how do you get the texture (13) to your model .. /confused ..

Last edited by oronll; 02/20/06 20:31.
Re: Sylex Examples :) [Re: oronll] #63609
02/21/06 18:08
02/21/06 18:08
Joined: May 2005
Posts: 2,713
Lübeck
Slin Offline
Expert
Slin  Offline
Expert

Joined: May 2005
Posts: 2,713
Lübeck
Some questions:

Did anyone of you get render to texture to work in a Level?
Maybe the example for an own post-processing-effect or the water example?
Is the Sky working?
Are softshadows working for somebody?
And what are softshadows?

If you can answer a question with yes an example wouldbe very nice.
I think I got everything else to work.

The "own post-processing-effect" example have a problem with this line in the shader: magFilter = linear;
If I comment this line out its working without any problem but the effect is very weird wich means that I just get a cupple of lines slovly moving over the screen and after some time I the level is hiden behind this lines.

@Oronll: An the manual it says that A6Mesh is not working with this version.
But i´m not sure if it´s right.

Re: Sylex Examples :) [Re: Slin] #63610
02/21/06 23:46
02/21/06 23:46
Joined: Dec 2003
Posts: 401
Germany, Bonn
VampireLord Offline
Senior Member
VampireLord  Offline
Senior Member

Joined: Dec 2003
Posts: 401
Germany, Bonn
Okay I don't wanna be putting up a competition here at translating the manual but I had some free time today and translated the Tutorial parts as well as the reference part regarding the views and put it into a chm file.

Get it here:

http://www.team-blacksun.de/slx3doc_en.chm

Will do the rest tommorow morning

Greets Sven


"Feathers shall raise men even as they do birds, toward heaven; that is by letter written with their quills." - Leonardo da Vinci

Wer mir eine e-mail schicken will ersetze ANTISPAM durch @
If you want to send me an email replace ANTISPAM by @
Re: Sylex Examples :) [Re: VampireLord] #63611
02/22/06 00:47
02/22/06 00:47
Joined: Dec 2001
Posts: 2,172
Portugal - Brazil
XNASorcerer Offline
Expert
XNASorcerer  Offline
Expert

Joined: Dec 2001
Posts: 2,172
Portugal - Brazil
Quote:

Okay I don't wanna be putting up a competition here at translating the manual but I had some free time today and translated the Tutorial parts as well as the reference part regarding the views and put it into a chm file.

Get it here:

http://www.team-blacksun.de/slx3doc_en.chm

Will do the rest tommorow morning





This slx3doc_en.chm file doesn't work.

Re: Sylex Examples :) [Re: XNASorcerer] #63612
02/22/06 01:07
02/22/06 01:07
Joined: Mar 2005
Posts: 123
O
oronll Offline
Member
oronll  Offline
Member
O

Joined: Mar 2005
Posts: 123
Quote:

Quote:

Okay I don't wanna be putting up a competition here at translating the manual but I had some free time today and translated the Tutorial parts as well as the reference part regarding the views and put it into a chm file.

Get it here:

http://www.team-blacksun.de/slx3doc_en.chm

Will do the rest tommorow morning





This slx3doc_en.chm file doesn't work.






very cool .. im kinda getting the idea of sykex now ..

The thing is after yiu create a texture how do you call on the textures you creatte? whats its name? if i can break that i think ill have it ..

Re: Sylex Examples :) [Re: VampireLord] #63613
02/22/06 08:23
02/22/06 08:23
Joined: Jul 2005
Posts: 109
Cyrpus
Aram Offline
Member
Aram  Offline
Member

Joined: Jul 2005
Posts: 109
Cyrpus
Quote:

Okay I don't wanna be putting up a competition here at translating the manual but I had some free time today and translated the Tutorial parts as well as the reference part regarding the views and put it into a chm file.

Get it here:

http://www.team-blacksun.de/slx3doc_en.chm

Will do the rest tommorow morning

Greets Sven





Thanks a lot man!
As much as translating this manual is easy for you that much is difficult for me. In fact. if i knew that someone will do this favour for us I would have never started translating at the first place. So keep up the good work!
and btw, could you tell me which software you use to make chm files ?


Cheers,


GeForce 7800 GT (256 MB DDR3) 3DGS A6 Commercial. DJ Aram
Page 4 of 6 1 2 3 4 5 6

Moderated by  adoado, checkbutton, mk_1, Perro 

Gamestudio download | chip programmers | Zorro platform | shop | Data Protection Policy

oP group Germany GmbH | Birkenstr. 25-27 | 63549 Ronneburg / Germany | info (at) opgroup.de

Powered by UBB.threads™ PHP Forum Software 7.7.1