CraftBook - 26 Feb: AVAILABLE

Discussion in 'WIP and Development Status' started by sk89q, Jan 28, 2011.

Thread Status:
Not open for further replies.
  1. Offline

    sk89q

    Latest news (Feb 26, 2011):

    We've made a first release!
    http://forums.bukkit.org/threads/6250/

    CraftBook is being ported!

    Source code (for the port) is found here:
    https://github.com/sk89q/craftbook/tree/refactor
    (It may or may not be completely up to date.)

    Also, perhaps MIDI playing ICs?
    http://www.youtube.com/watch?v=tIIai11JYR8

    ---

    CraftBook's a SMP plugin that adds:
    • Integrated circuits
    • Programmable logic chips
    • Redstone toggleable areas
    • Redstone bridges and doors
    • Bunch of other redstone stuff
    • Minecart boosters, sorters, and other control blocks
    • Minecart behavior modification
    Some mods that came after CraftBook have some similar features (BridgeMod, ControllerBlock, etc.).
     
  2. Offline

    Kainzo

  3. Offline

    Unshkblefaith

    This is the best news I've heard all day! Thx
     
  4. Offline

    Snowl

    Yay! Could I request a new IC = A delay IC. You can set how long the delay before the redstone change goes though.
    Something like this:
    Code:
    package com.sk89q.craftbook.mech.ic.world;
    
    import com.sk89q.craftbook.mech.ic.BaseIC;
    import com.sk89q.craftbook.mech.ic.ChipState;
    import com.sk89q.craftbook.util.SignText;
    import com.sk89q.craftbook.util.Vector;
    
    /**
     * Delay IC
     *
     * @author sk89q
     */
    public class MC1450 extends BaseIC {
        /**
         * Get the title of the IC.
         *
         * @return
         */
        public String getTitle() {
            return "DELAYER";
        }
    
        /**
         * Validates the IC's environment. The position of the sign is given.
         * Return a string in order to state an error message and deny
         * creation, otherwise return null to allow.
         *
         * @param sign
         * @return
         */
        public String validateEnvironment(Vector pos, SignText sign) {
            String id = sign.getLine3();
    
            if (id.length() == 0) {
                return "Specify a delay time (in milliseconds) on the third line.";
            }
    
            return null;
        }
    
        /**
         * Think.
         *
         * @param chip
         */
        public void think(ChipState chip) {
            String id = chip.getText().getLine3();
    
            if (!id.isEmpty()) {
                        try {
                        Thread.sleep (id);
                     } catch (InterruptedException e) {}
                chip.getOut(1).set(chip.getIn(1).is());
            } else {
                chip.getOut(1).set(false);
            }
        }
    }
    
     
  5. WooT!!!! can't wait:D

    EDIT: will it have all the features right off the bat, or will it start with only minecart for example, then gates, so on... thanks so much!
     
  6. Offline

    timmaeh

    Cant wait for it :)
     
  7. Offline

    Sixpak

    You Sir, Are my Hero!
     
  8. Offline

    Jonathan Bloom

    Will it have elevators?
     
  9. Offline

    SavageCore

    Epic, only reason I haven't been able to switch to Bukkit!
     
  10. Offline

    xCrAzYbOy

    Woohoo! Can't wait! xD
     
  11. Offline

    sk89q

    Can't say yet. We're trying to get most of it working.

    Yes, for sure.
     
  12. Offline

    t0phux

    YAY! Can't wait for the release to finally be here... this is the only missing link with bukkit.
     
  13. Offline

    Tobzi

    This is great!
     
  14. Offline

    Mistawho

    Oh man, thanks for working so hard on porting this over. WorldEdit, WorldGuard and CraftBook are the 3 main staples of my server and I've been missing CraftBook soooo much. You are a hero, a gentlemen and a scholar. Just wanted to let ya know how much people appreciate your dedication :).
     
  15. Offline

    bandit6789

    I can't tell you how excited I am about the upcoming release of craftbook. I know you have been super busy with all the rest you've got going, thanks for the hard work! Craftbook is the last "must have" for my server, I'm really jazzed about it :)

    craft[​IMG]
     
  16. Offline

    Mhalkyer

    Can't wait for the release, my users will finally stop bugging me! lol.
     
  17. Offline

    Kainzo

    gate/ligt/elevator = most important :p

    also im so excited im not going to use the restroom until its done.
     
  18. Offline

    Tenebrous

    I'm very much looking forwards to this! *excited*
     
  19. Offline

    oneadvent

    this +1
     
  20. Offline

    sk89q

    I'm afraid that you may have a burst bladder :p
     
  21. Offline

    Xemnas33

    I just want an estimated date so I can stop the suspense :p
     
  22. Offline

    sk89q

    Maybe within the week. We'll see.
     
  23. Offline

    majorcyto

    i cant waitttt :D!

    And my users wont stop bugging me about ittttt >.>
     
  24. Offline

    dak393

    Can't wait ^^
     
  25. Offline

    Chaos

    OMG my favorite plugin besides world edit!!!!! YAY! You are the best sk89q!!!
     
  26. Offline

    Kane

    Yeah wonderful plugin. Going to be using Elevator and Minecarts! I really hope the through and through for minecarts work the passing through objects and players and such!
     
  27. Offline

    ledhead900

    Oh HELL YES! you got me inching fwd out of my seat now!
     
  28. Offline

    Aukeroorda

    This is the only reason why I haven't changed to Bukkit yet :p
     
  29. Offline

    Scyl

    YES! <3 I love my craftbok! thank you sooo much
     
  30. Offline

    Jono20201

    Really cannot wait for this. It is the best plugin ever!
     
Thread Status:
Not open for further replies.

Share This Page