English
Source / code snippets

Screen saver Schiebepuzzle

 
- Page 1 -



Nico
Madysa
the comes out, if I Langeweile Have :
EX% / EY% = amount the Split / Lines, each -1
var ex% = 4
var ey% = 3
The remainder yields itself of self
var dx% = %MaxX / (ex% + 1)
var dy% = %MaxY / (ey% + 1)
var x% = ex%
var y% = ey%
var altdir% = 0
declare you% , bed% , gis%
Window Style 1024 + 240
Window 0 , 0 - %MaxX , %MaxY + 5
Window Title Screen saver
Randomize
UseBrush 1 , 0
ShowCursor 0
Remove the unbenötigten pieces
Rectangle (ex%+1)*dx%,0 - %MaxX,%MaxY
Rectangle 0,(ey%+1)*dy% - %MaxX,%MaxY
Rectangle ex%*dx%,ey%*dy%-(ex%+1)*dx%,(ey%+1)*dy%

while gis% < 10

    clear bed%
    altdir% = you%

    repeat

        you% = Rnd(4) ^0 v1 <2 >3
        case ((you% = 0) and (y% <> 0)) : inc bed%
        case ((you% = 1) and (y% <> ey%)) : inc bed%
        case ((you% = 2) and (x% <> 0)) : inc bed%
        case ((you% = 3) and (x% <> ex%)) : inc bed%
        case ((altdir% + you% = 1) or (altdir% + you% = 5)) : clear bed%

    until bed%

    Select you%

        CaseOf 0 HOCH

        whileloop ((y% - 1) * dy%) , ((y% * dy%) - 1) , 1

            CopyBMP (x% * dx%) , &loop - dx% , dy% > (x% * dx%) , (&loop + 1) ; 0
            Line (x% * dx%) , &loop - (((x% + 1) * dx%) - 1) , &loop
            case %GetInputState : inc gis%
            Sleep 1

        EndWhile

        dec y%

        CaseOf 1 RUNTER

        whileloop ((y% + 1) * dy%) , ((y% * dy%) + 1) , (-1)

            CopyBMP (x% * dx%) , &loop - dx% , dy% > (x% * dx%) , (&loop - 1) ; 0
            Line (x% * dx%) , (&loop + dy% - 1) - (((x% + 1) * dx%) - 1) , (&loop + dy% - 1)
            case %GetInputState : inc gis%
            Sleep 1

        EndWhile

        inc y%

        CaseOf 2 LINKS

        whileloop ((x% - 1) * dx%) , ((x% * dx%) - 1) , 1

            CopyBMP &loop , (y% * dy%) - dx% , dy% > (&loop + 1) , (y% * dy%) ; 0
            Line &loop , (y% * dy%) - &loop , (((y% + 1) * dy%) - 1)
            case %GetInputState : inc gis%
            Sleep 1

        EndWhile

        dec x%

        CaseOf 3 RECHTS

        whileloop ((x% + 1) * dx%) , ((x% * dx%) + 1) , (-1)

            CopyBMP &loop , (y% * dy%) - dx% , dy% > (&loop - 1) , (y% * dy%) ; 0
            Line (&loop + dx% - 1) , (y% * dy%) - (&loop + dx% - 1) , (((y% + 1) * dy%) - 1)
            case %GetInputState : inc gis%
            Sleep 1

        EndWhile

        inc x%

    EndSelect

    case %GetInputState : inc gis%

wend

ShowCursor 1
end

3 kB
Kurzbeschreibung: Screensaver - View source
Hochgeladen:02/18/08
Downloadcounter300
Download
 
Nico Madysa
02/18/08  
 



 
- Page 1 -



Dietmar
Horn
Hello Paul,

here the code for XProfan 8, so You To friday not too plenty Langeweile have:
EX% / EY% = amount the Split / Lines, each -1
declare ex%,ey%
ex% = 4
ey% = 3
the sees too right nice from:
ex% = 19
ey% = 13
The remainder yields itself of self
declare dx%,dy%,x%,y%,altdir%
dx% = %MaxX / (ex% + 1)
dy% = %MaxY / (ey% + 1)
x% = ex%
y% = ey%
altdir% = 0
declare you% , bed% , gis%
###########################################################
Window Style 1024 + 240
Window 0 , 0 - %MaxX , %MaxY + 5
Window Title Screen saver
Randomize
UseBrush 1 , 0
ShowCursor 0
Remove the unbenötigten pieces
Rectangle (ex%+1)*dx%,0 - %MaxX,%MaxY
Rectangle 0,(ey%+1)*dy% - %MaxX,%MaxY
Rectangle ex%*dx%,ey%*dy%-(ex%+1)*dx%,(ey%+1)*dy%

while gis% < 10

    clear bed%
    altdir% = you%

    whilenot bed%

        you% = Rnd(4)^0 v1 <2 >3
        case ((you% = 0) and (y% <> 0)) : inc bed%
        case ((you% = 1) and (y% <> ey%)) : inc bed%
        case ((you% = 2) and (x% <> 0)) : inc bed%
        case ((you% = 3) and (x% <> ex%)) : inc bed%
        case ((altdir% + you% = 1) or (altdir% + you% = 5)) : clear bed%

    endwhile

    if you% = 0HOCH

        whileloop ((y% - 1) * dy%) , ((y% * dy%) - 1) , 1

            CopyBMP (x% * dx%) , &loop - dx% , dy% > (x% * dx%) , (&loop + 1) ; 0
            Line (x% * dx%) , &loop - (((x% + 1) * dx%) - 1) , &loop
            case %GetInputState : inc gis%
            Sleep 1

        EndWhile

        dec y%

    elseif you% =  1RUNTER

        whileloop ((y% + 1) * dy%) , ((y% * dy%) + 1) , (-1)

            CopyBMP (x% * dx%) , &loop - dx% , dy% > (x% * dx%) , (&loop - 1) ; 0
            Line (x% * dx%) , (&loop + dy% - 1) - (((x% + 1) * dx%) - 1) , (&loop + dy% - 1)
            case %GetInputState : inc gis%
            Sleep 1

        EndWhile

        inc y%

    elseif you% = 2LINKS

        whileloop ((x% - 1) * dx%) , ((x% * dx%) - 1) , 1

            CopyBMP &loop , (y% * dy%) - dx% , dy% > (&loop + 1) , (y% * dy%) ; 0
            Line &loop , (y% * dy%) - &loop , (((y% + 1) * dy%) - 1)
            case %GetInputState : inc gis%
            Sleep 1

        EndWhile

        dec x%

    elseif you% =  3RECHTS

        whileloop ((x% + 1) * dx%) , ((x% * dx%) + 1) , (-1)

            CopyBMP &loop , (y% * dy%) - dx% , dy% > (&loop - 1) , (y% * dy%) ; 0
            Line (&loop + dx% - 1) , (y% * dy%) - (&loop + dx% - 1) , (((y% + 1) * dy%) - 1)
            case %GetInputState : inc gis%
            Sleep 1

        EndWhile

        inc x%

    elseif %GetInputState

        inc gis%

    endif

endwhile

ShowCursor 1
end

what does one not everything for its jüngstes Lieblings-Paulchen

Greeting
Dietmar
 
Multimedia für Jugendliche und junge Erwachsene - MMJ Hoyerswerda e.V.  [...] 

Windows 95 bis Windows 7
Profan² 6.6 bis XProfan X2 mit XPSE

Das große XProfan-Lehrbuch:  [...] 
02/19/08  
 




Paul
Glatz
Runs under Vista
comes only one schwartzer screen
Paul
 
02/21/08  
 




Dietmar
Horn
Hi,

I can moreover not plenty say, because unfortunately have I no Vista to that testing. but slow comes me with the XProfan and Vista right Español to, because urplötzlich should several of my programs under Vista More correctly functions, The To XP correct walk.

I have already of several Vista-Usern heard, that with the a one XProfan-Program under Vista functions, and with the others not (example XProfan-manager).

Perhaps can itself one erfahrener XProfan and Vista-User time obigen relatively short code row for row distinguished and nachschauen, where very since the saw klemmt?

@Paul: I have Nicos code time with XProfan 11 compiliert and to EXE succeed. Runs this program on Your Laptop under Vista?

Greeting
Dietmar

451 kB
Hochgeladen:02/21/08
Downloadcounter228
Download
 
Multimedia für Jugendliche und junge Erwachsene - MMJ Hoyerswerda e.V.  [...] 

Windows 95 bis Windows 7
Profan² 6.6 bis XProfan X2 mit XPSE

Das große XProfan-Lehrbuch:  [...] 
02/21/08  
 




Paul
Glatz
It's all right not comes immernoch only the schwartze bildschrim
Paul
 
02/21/08  
 




Paul
Glatz
Hello
I faith the trouble is Windowstyle.
Paul
 
02/21/08  
 




Dietmar
Horn
means then can the only one generelles XProfan-trouble, one allgemeines Vista-trouble, or some Completed: Your Vista-Laptop his ... under XP walk both Codes anyway tadellos and the second code even XProfan 8.0.

time to wait it out, which Results others Vista-User here evtl. yet post ...

Greeting
Dietmar
 
Multimedia für Jugendliche und junge Erwachsene - MMJ Hoyerswerda e.V.  [...] 

Windows 95 bis Windows 7
Profan² 6.6 bis XProfan X2 mit XPSE

Das große XProfan-Lehrbuch:  [...] 
02/21/08  
 




Paul
Glatz
Windowstyle 32 goes not at all under Vista könte the trouble trigger
Paul
 
02/21/08  
 




Paul
Glatz
 
02/21/08  
 




Frank
Abbing
Style 32 is still only one Flag, so the window at create not of/ one colour filled becomes. only because You whom background not see can, is it Yes not, that this Flag not functions....
What exactly is is not? crash? Programmabbruch? Please time accurate go.
 
02/21/08  
 




Rolf
Koch
and its the Windowsstyle
No Frank there's none crash under Vista. only the background becomes Black colored and the Kästchen go Yes in Black drawn. means: Black on Black = JO two Listviews I because there see?
so z.b. sees one everything:
Windowstyle 16+64+128
Weiser background with the black Kästchen.
 
02/21/08  
 



 
- Page 2 -



Dietmar
Horn
@Frank: be still not always same so roughly to our Jüngsten, finally must it it first yet learn, itself deutlicher and verständlicher auszudrücken ... On any Cases lying Paulchen with his Windowstyle-supposition yet already time none too wrong.

@Rolf: Tja, it likes his, that

Windowstyle 16+64+128 under Vista functions, still XP comes there solely one weißer Fensterhintergrund, on the the black Kästchen yourself hither and thither schieben.

straight tested with XProfan 8 and XProfan 11 XP-Home.

I wealth time, here might Roland demand his, because I suspect integrally heavy, in the Context with Vista hide itself there on others to put in XProfan another couple More such Ungereimtheiten, The the drive insane make.

Anderenfalls had I with several of my programs not already soviele Rückmeldungen of Vista-Usern had, that these programs or. single Programmteile under Vista More or. not any more correctly. functions, though tappt im dunkeln the yet jahrelang of Win 95 To Win XP anstandslos did (of Profan² 5.0 To XProfan 11, and the over all intermediate (X)PRF-versions away) ...

Greeting
Dietmar
 
Multimedia für Jugendliche und junge Erwachsene - MMJ Hoyerswerda e.V.  [...] 

Windows 95 bis Windows 7
Profan² 6.6 bis XProfan X2 mit XPSE

Das große XProfan-Lehrbuch:  [...] 
02/21/08  
 



@Rolf

[offtopic]means: Black on Black = JO two Listviews I because there see? -
is the contrary the Ostfriesischen tab: Weisser eagle on weissem reason ! [/offtopic]
 
02/21/08  
 




Zum Quelltext


Topictitle, max. 100 characters.
 

Systemprofile:

no Systemprofil laid out. [anlegen]

XProfan:

 Posting  Font  Smilies  ▼ 

Please register circa a Posting To verfassen.
 

Topic-Options

15.132 Views

Untitledvor 0 min.
Frank04/16/21
Julian Schmidt04/04/12
Peter Max Müller12/05/10

Themeninformationen



Admins  |  AGB  |  Applications  |  Authors  |  Chat  |  Privacy Policy  |  Download  |  Entrance  |  Help  |  Merchantportal  |  Imprint  |  Mart  |  Interfaces  |  SDK  |  Services  |  Games  |  Search  |  Support

One proposition all XProfan, The there's!


My XProfan
Private Messages
Own Storage Forum
Topics-Remember-List
Own Posts
Own Topics
Clipboard
Log off
 Deutsch English Français Español Italia
Translations

Privacy Policy


we use Cookies only as Session-Cookies because of the technical necessity and with us there no Cookies of Drittanbietern.

If you here on our Website click or navigate, stimmst You ours registration of Information in our Cookies on XProfan.Net To.

further Information To our Cookies and moreover, How You The control above keep, find You in ours nachfolgenden Datenschutzerklärung.


all rightDatenschutzerklärung
i want none Cookie