Announcement

Collapse
No announcement yet.

Recruiting For OpenIQ - Quake1 Open Source Project

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • #76
    Open Quartz is the right thing to go with!

    QR

    You must check OpenQuartz 2 | QuakeWiki when you are back around... the guy working on this is Chip and he did the last quake-expo in 2011... so is a serious player. This would be a great option if you are willing to work on something already in place or it might be a kind of startup not sure yet I still got to check this very soon.

    This project came from Open Quartz (like you already knew hehe) and it is something that been explored by many top contributors (like Baker I guess he told you already hehe).

    Well check my next introduction for S#8 to get the picture

    Comment


    • #77
      Originally posted by MadGypsy View Post
      I can't believe you actually programmed him a sandwich. Not because I can't believe a sandwich would be programmed, but because I'm surprised that I didn't do it first.

      I programmed a fart once. I even read how real farts are made and turned it into a class.
      I thought he was looking a bit hungry with all that delegation of labor ..
      WARNING
      May be too intense for some viewers.
      Stress Relief Device
      ....BANG HEAD HERE....
      ---------------------------
      .
      .
      .
      .
      .--------------------------

      Comment


      • #78
        [ame="http://www.youtube.com/watch?v=tCAUbAa9fTg&hd=1"]s8 introduction - YouTube[/ame]

        So I just made this short intro for the S8 and I now know lot of solutions for different purposes like the one QR been looking for.

        This very little intro (the 15 seconds after the generic) about Open Quartz is showing all the potential to afford all the Q1 diversity... for free.

        Free was important to me most because of the free stuff you can find around... why should you need to pay 1st when all was done for free?

        I'm sure people trying this game and realising how big / interesting Q1 is would pay back one way or another.

        This video clip (just below) is the full song used and is called Superheros from Daze...

        2 top actors in Q1 have my greatest gratitude... Baker and Scar3crow... my superheros

        [ame=http://www.youtube.com/watch?v=Ot_mUlpt3ec&hd=1]Daze - Super Hero (Album Version Xtended) - YouTube[/ame]
        Last edited by Mom; 05-08-2013, 06:36 PM.

        Comment


        • #79
          Originally posted by Mom View Post
          QR

          You must check OpenQuartz 2 | QuakeWiki when you are back around... the guy working on this is Chip and he did the last quake-expo in 2011... so is a serious player. This would be a great option if you are willing to work on something already in place or it might be a kind of startup not sure yet I still got to check this very soon.

          This project came from Open Quartz (like you already knew hehe) and it is something that been explored by many top contributors (like Baker I guess he told you already hehe).

          Well check my next introduction for S#8 to get the picture
          I didn't know OpenQuartz had a second generation, it looks interesting. While his project looks great, mine has gone a very different direction. OpenIQ has evolved into something else. It's not open source (it can't be, I'm borrowing tech without a license, I can't afford the license - it's all fan-based with no intent for profit anyway), it's not a Quake engine, the Quake theme, colors, feel, monsters are all still there, but in a different (BIGGER) setting. There are hostile and passive Ogre villages, various (some biologically very different) Fiends, a real story-line, and more lore/usage of slip-gates.

          It... will offend everyone. & yes, MadGypsy there is a flower planting feature, and a tea party mod is in the works too (It's more like a tea ritual).

          I'm currently behind on the project. Life, kids, wife, food, shelter, money - all take a lot of time, but it's still growing. No screen shots yet, I'd be too embarrassed by them at this point, everything is still pre-alpha.

          Comment


          • #80
            Originally posted by bluntz View Post
            import java.util.List;
            import java.util.ArrayList;

            public class Main {

            public static void main(String[] args) {
            Workers marty = new Workers("Marty", 12);
            Workers biff = new Workers("Biff", 20);

            Sandwich usa = new Sandwich("U.S.A.", ;
            Sandwich ham = new Sandwich("Ham", 10);
            Sandwich cheese = new Sandwich("Cheese", 9);

            Suppliers salad = new Suppliers("Salad");
            Suppliers tomato = new Suppliers("Tomato");
            Suppliers egg = new Suppliers("Egg");
            Suppliers corn = new Suppliers("Corn");

            usa.addSupplier(salad);
            usa.addSupplier(tomato);
            marty.buySandwich(usa);

            System.out.println(marty);

            }

            }

            class Sandwich {
            private String model;
            private double price;
            private List<Suppliers> suppliers = new ArrayList<Suppliers>();

            Sandwich(String model, double price) {
            this.model = model;
            this.price = price;
            }

            public void addSupplier(Suppliers sup) {
            suppliers.add(sup);
            }

            public void addSuppliers(List<Suppliers> suppliers) {
            this.suppliers.addAll(suppliers);
            }

            public String toString() {
            return "Sandwich [model= " + model + ", price = " + price
            + ", suppliers =" + getSuppliers() + "]";
            }

            public List<Suppliers> getSuppliers() {
            return suppliers;
            }

            public void setSuppliers(List<Suppliers> suppliers) {
            this.suppliers = suppliers;
            }
            }

            class Suppliers {
            private String suppliers;

            Suppliers(String suppliers) {
            this.suppliers = suppliers;
            }

            public String toString() {
            return "[" + this.suppliers + "]";
            }
            }

            class Workers {
            private String name;
            private double money;
            private List<Sandwich> sandwich = new ArrayList<Sandwich>();

            Workers(String name, double money) {
            this.name = name;
            this.money = money;
            }

            public void buySandwich(Sandwich sand) {
            sandwich.add(sand);
            }

            public String toString() {
            return "Worker [name= " + name + ", money = " + money + ", sandwich = "
            + sandwich + "]";

            }
            }
            NICE!! Thanks for the sandwich Bluntz!

            Comment


            • #81
              Can't wait to have a look

              Send me something... anything... at fan_q1 @yahoo.com or @hotmail.com!!

              I'm happy to hear you go ahead... we did all this for a good reason then hehe!

              Comment

              Working...
              X