Page 2 of 3 FirstFirst 123 LastLast
Results 26 to 50 of 69

Thread: SCAR Divi 3.25 Final

  1. #26
    Join Date
    Oct 2009
    Location
    Stockton, CA
    Posts
    2,040
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Interesting. Is it possible for me to see a demo of this panel or is it not done?
    Join the IRC! irc.rizon.net:6667/srl | SQLite (0.99rc3+) | SRL Doc | Simba Doc | Extra Simba Libraries (openSSL & sqlite3)
    Quote Originally Posted by #srl
    10:45 < Toter> daphil when can get sex anyday I want
    10:45 < Toter> he is always on #SRL
    "A programmer is just a tool which converts caffeine into code"

  2. #27
    Join Date
    Jan 2011
    Location
    Denver, CO
    Posts
    1,351
    Mentioned
    2 Post(s)
    Quoted
    72 Post(s)

    Default

    congrats on the release

  3. #28
    Join Date
    Feb 2006
    Location
    Belgium
    Posts
    3,137
    Mentioned
    3 Post(s)
    Quoted
    5 Post(s)

    Default

    Quote Originally Posted by Sex View Post
    Interesting. Is it possible for me to see a demo of this panel or is it not done?
    The panel is currently still based at freddy1990.com, though it will move to scar-divi.com at some point. I can add an include and link it to your forum account if you would like to see it, but really all it is, is a page showing the link to the xml file and email if you entered one and an edit button to change it


    Also, thanks everyone for the kind words, I certainly appreciate it.

  4. #29
    Join Date
    Mar 2007
    Posts
    4,810
    Mentioned
    3 Post(s)
    Quoted
    3 Post(s)

    Default

    Fucking awesome man, good job!

  5. #30
    Join Date
    Dec 2006
    Location
    Houston, TX USA
    Posts
    4,791
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Open Dev SRL compiles successfully.

    The includes manager works, I would recommend removing everything except for Open Dev SRL and just calling it SRL. RS2Fonts puts the folder in the include folder, so everyone will still need to manually move the fonts themselves or just checkout their fonts from the repo using subversion.

    Very nice work

    Now hopefully you can focus more exclusively on future versions of SCAR


    To elaborate more on the / div thing for those of you who don't understand, it simply means you can no longer missue /, it causes a mistype unless you use it properly with extended values

    Proper uses

    SCAR Code:
    WriteLn(10 div 3); //3
    SCAR Code:
    WriteLn(Round(10 / 3)); //3
    SCAR Code:
    WriteLn(5.0 / 3.0); //1.666 // .0 not required but good practice

    Improper

    SCAR Code:
    WriteLn(IntToStr(10 / 3)); //Type mismatch
    SCAR Code:
    WriteLn(10.0 div 3.0)); //Type mismatch
    Last edited by Wanted; 05-10-2011 at 08:41 PM.

  6. #31
    Join Date
    Jan 2007
    Posts
    8,876
    Mentioned
    123 Post(s)
    Quoted
    327 Post(s)

    Default

    Quote Originally Posted by IceFire908 View Post
    Open Dev SRL compiles successfully.

    The includes manager works, I would recommend removing everything except for Open Dev SRL and just calling it SRL. RS2Fonts puts the folder in the include folder, so everyone will still need to manually move the fonts themselves or just checkout their fonts from the repo using subversion.

    Very nice work

    Now hopefully you can focus more exclusively on future versions of SCAR


    To elaborate more on the / div thing for those of you who don't understand, it simply means you can no longer missue /, it causes a mistype unless you use it properly with extended values

    Proper uses

    SCAR Code:
    WriteLn(10 div 3); //3
    SCAR Code:
    WriteLn(Round(10 / 3)); //3
    SCAR Code:
    WriteLn(5.0 / 3.0); //1.666 // .0 not required but good practice

    Improper

    SCAR Code:
    WriteLn(IntToStr(10 / 3)); //Type mismatch
    SCAR Code:
    WriteLn(10.0 div 3.0)); //Type mismatch
    And this is how it should be in Simba too

  7. #32
    Join Date
    Feb 2006
    Location
    Belgium
    Posts
    3,137
    Mentioned
    3 Post(s)
    Quoted
    5 Post(s)

    Default

    Quote Originally Posted by Zyt3x View Post
    And this is how it should be in Simba too
    It could be, with ease, Simba uses the same script engine after all, it's just a matter of flipping a switch by matter of speaking...

  8. #33
    Join Date
    Sep 2006
    Location
    New Jersey, USA
    Posts
    5,347
    Mentioned
    1 Post(s)
    Quoted
    3 Post(s)

    Default

    Love it! This is indeed a very nice release!
    Interested in C# and Electrical Engineering? This might interest you.

  9. #34
    Join Date
    Apr 2007
    Posts
    3,152
    Mentioned
    3 Post(s)
    Quoted
    1 Post(s)

    Default

    the new site is pretty pro. It looks fairly sexy as usual.
    SCAR Tutorials: The Form Tutorial | Types, Arrays, and Classes
    Programming Projects: NotePad | Tetris | Chess


  10. #35
    Join Date
    Feb 2006
    Location
    Belgium
    Posts
    3,137
    Mentioned
    3 Post(s)
    Quoted
    5 Post(s)

    Default

    SCAR Divi 3.25.01 has been released (http://forums.scar-divi.com/thread-1...-33.html#pid33). The new version structure and update notifier allows me to rapidly develop and distribute bugfixes. Hence, this 3.25.01 release is just a minor release with a few bugfixes and tweaks, but not with anything new which would be added in a major release like 3.26 because new features should first go through proper testing stages.

  11. #36
    Join Date
    Oct 2006
    Posts
    1,211
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    anyone else getting a type mismatch error in line 68 of Mouse.scar? Could very well be me cause I haven't touched any of this in almost a year xD

    Line 68:
    SCAR Code:
    randomDist:= maxStep / 2.0 + random(round(maxStep) / 2);

    Just usin a simple tester script
    SCAR Code:
    program New;
    {.include SRL/SRL.scar}

    begin
      SetupSRL;
      MMouse(20, 20, 3, 3);
    end.
    Extinct.

    Formally known as Drags111.

  12. #37
    Join Date
    Jan 2010
    Posts
    5,227
    Mentioned
    6 Post(s)
    Quoted
    60 Post(s)

    Default

    It possibly is because of the use of / in Mouse.scar. Try..

    randomDist := maxStep / 2.0 + Random(Round(maxStep) div 2);

  13. #38
    Join Date
    Jan 2007
    Posts
    8,876
    Mentioned
    123 Post(s)
    Quoted
    327 Post(s)

    Default

    Quote Originally Posted by i luffs yeww View Post
    It possibly is because of the use of / in Mouse.scar. Try..

    randomDist := maxStep / 2.0 + Random(Round(maxStep) div 2);
    You mean the other way around...

    randomDist := maxStep div 2.0 + Random(Round(maxStep) / 2);

  14. #39
    Join Date
    Jan 2010
    Posts
    5,227
    Mentioned
    6 Post(s)
    Quoted
    60 Post(s)

    Default

    Not according to what IceFire said. :/

    He said 10.0 div 3.0 would give a type mismatch.

  15. #40
    Join Date
    Jan 2007
    Posts
    8,876
    Mentioned
    123 Post(s)
    Quoted
    327 Post(s)

    Default

    Quote Originally Posted by i luffs yeww View Post
    Not according to what IceFire said. :/

    He said 10.0 div 3.0 would give a type mismatch.
    Wait I read "Random(Round(" like "Round(Random(".... nevermind

  16. #41
    Join Date
    Dec 2006
    Location
    Houston, TX USA
    Posts
    4,791
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by drags111 View Post
    anyone else getting a type mismatch error in line 68 of Mouse.scar? Could very well be me cause I haven't touched any of this in almost a year xD

    Line 68:
    SCAR Code:
    randomDist:= maxStep / 2.0 + random(round(maxStep) / 2);

    Just usin a simple tester script
    SCAR Code:
    program New;
    {.include SRL/SRL.scar}

    begin
      SetupSRL;
      MMouse(20, 20, 3, 3);
    end.
    You don't have the latest open dev SRL.

  17. #42
    Join Date
    Feb 2006
    Location
    Belgium
    Posts
    3,137
    Mentioned
    3 Post(s)
    Quoted
    5 Post(s)

    Default

    A little side-note btw, it takes up to 1 hour for the include system to update after an include has been updated by the author of that include. currently SCAR does not notify when an include update is available, however, you can see if your includes are out-of-date in the includes manager and update them from there. Notifications for these updates are planned for the next minor release (3.25.02).

  18. #43
    Join Date
    Oct 2006
    Posts
    1,211
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by IceFire908 View Post
    You don't have the latest open dev SRL.
    Ah I was just using the built in grabber. Didn't know I had to use open dev <3
    Extinct.

    Formally known as Drags111.

  19. #44
    Join Date
    Feb 2006
    Location
    Belgium
    Posts
    3,137
    Mentioned
    3 Post(s)
    Quoted
    5 Post(s)

    Default

    Quote Originally Posted by drags111 View Post
    Ah I was just using the built in grabber. Didn't know I had to use open dev <3
    You can download open dev with the includes manager, I would recommend it actually, it handles the entire installation process.

  20. #45
    Join Date
    Nov 2009
    Posts
    471
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    Good job also i did like the preview function, kind of a zoom function. only bad thing about it was that it lagged a little sometimes, maby add it again and make it display 24 pictures per second ?

  21. #46
    Join Date
    Feb 2006
    Location
    Belgium
    Posts
    3,137
    Mentioned
    3 Post(s)
    Quoted
    5 Post(s)

    Default

    Quote Originally Posted by tom99 View Post
    Good job also i did like the preview function, kind of a zoom function. only bad thing about it was that it lagged a little sometimes, maby add it again and make it display 24 pictures per second ?
    I could do that, I wasn't aware that people were actually using it.

  22. #47
    Join Date
    Dec 2006
    Location
    Houston, TX USA
    Posts
    4,791
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Freddy1990 View Post
    You can download open dev with the includes manager, I would recommend it actually, it handles the entire installation process.
    Minus moving the fonts to the font folder.

  23. #48
    Join Date
    Feb 2006
    Location
    Belgium
    Posts
    3,137
    Mentioned
    3 Post(s)
    Quoted
    5 Post(s)

    Default

    Quote Originally Posted by IceFire908 View Post
    Minus moving the fonts to the font folder.
    If you have SCAR load the fonts from the includes folder, that's not required.

  24. #49
    Join Date
    Nov 2009
    Posts
    471
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    freddy could you also possibly fix the silent mouse functions ? thnx

  25. #50
    Join Date
    Oct 2009
    Location
    Stockton, CA
    Posts
    2,040
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Quote Originally Posted by tom99 View Post
    freddy could you also possibly fix the silent mouse functions ? thnx
    Those aren't even in SCAR anymore bruh.
    Join the IRC! irc.rizon.net:6667/srl | SQLite (0.99rc3+) | SRL Doc | Simba Doc | Extra Simba Libraries (openSSL & sqlite3)
    Quote Originally Posted by #srl
    10:45 < Toter> daphil when can get sex anyday I want
    10:45 < Toter> he is always on #SRL
    "A programmer is just a tool which converts caffeine into code"

Page 2 of 3 FirstFirst 123 LastLast

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •