User Tag List

Page 5 of 5 FirstFirst ... 3 4 5
Results 41 to 49 of 49

Thread: Next Gen ZC. (Otherwise known as ZC3.0)

  1. #41
    Keese Samer's Avatar
    Join Date
    Jan 2015
    Location
    Detroit, MI
    Age
    32
    Posts
    66
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    vBActivity - Stats
    Points
    512
    Level
    8
    vBActivity - Bars
    Lv. Percent
    12.42%
    Sometimes I feel like I'm going insane from all this craziness where I am, but @Gleeok is right, basics of basics.

    C++ for dummies in the beginning is good enough. I think codeacedemy might help you too. Sometimes craziness makes us (me) forget the struggle we had to go through.
    You are doing good, practice, I have serious ADHD and I'm only 23 I just don't know how to put my age on here.

  2. #42
    Quest Builder Anarchy_Balsac's Avatar
    Join Date
    Nov 2005
    Posts
    751
    Mentioned
    11 Post(s)
    Tagged
    2 Thread(s)
    vBActivity - Stats
    Points
    2,590
    Level
    16
    vBActivity - Bars
    Lv. Percent
    63.38%
    I think the lack of backwards compatibility sets a bad precedent, or it could...........but then the part of this being capable of making ALTTP style quests gives me an idea.

    What if this WASN'T Zelda Classic 3.0, but ALTTP Classic? ALTTP's popularity was high enough to spark the development of A Link Between Worlds, and with that, comes an opportunity to reignite interest in Zelda Classic and the whole AGN. It would be easy to distinguish ALTTP Classic quests from ZC quests and separate them into different databases. And then, the old Zelda Classic could always be updated again if anyone at AGN so chooses without it seeming weird. Not to mention, it doesn't isolate itself from past custom quests, but compliments their existence by being both a different game and a different tool, which would not have happened without a long devoted fanbase of the former.

    I think this idea is seriously worth considering. Plus, it may inspire someone to finally make Zelda 2 Classic......I hope anyway........

  3. #43
    Keese Jaydeadone's Avatar
    Join Date
    May 2015
    Location
    Seattle
    Age
    46
    Posts
    63
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)
    vBActivity - Stats
    Points
    491
    Level
    7
    vBActivity - Bars
    Lv. Percent
    98.25%
    Quote Originally Posted by Gleeok View Post
    I would actually recommend to start with the basics of the basics. Not only will you have no idea what a big game is doing, you also won't know why, or how.

    What is the basics? Don't bother with any big libraries (including stl), and just use plain data such as simple structs, arrays, and pointers for everything. You won't have any memory problems if you don't allocate memory for every stupid little thing that shouldn't even of been allocated in the first place. KISS: Keep it simple stupid. Make a simple game, like breakout or asteroids. Once you understand what you are doing then you can do more complicated things and learn design patterns. I can honestly tell you that I've never once ever, ever used a BTree (ie., map),or Doubly-Linked List, in game programming. They are mostly useless. Just take a simple graphics API like SDL or allegro, and make something, anything, using only basic c++. Don't use templates.
    Thank you very much for the advice. I tend to take on projects bigger than my skills most of the time, in everything I attempt. This has both had positive and negative results. (However, it usually ends up with my frustrated to the point of taking a hiatus). I'll try to program a couple of your recommendations and move from there.
    Thanks again for the Advice,
    J~

    Chris Miller
    http://www.codeacademy.com

    This might be of help to you.
    Thanks Chris, I'll check this out.

    Samer
    Sometimes I feel like I'm going insane from all this craziness where I am, but @Gleeok is right, basics of basics.

    C++ for dummies in the beginning is good enough. I think codeacedemy might help you too. Sometimes craziness makes us (me) forget the struggle we had to go through.
    You are doing good, practice, I have serious ADHD and I'm only 23 I just don't know how to put my age on here.
    Thanks for the vote of confidence Samer and I totally know how you feel with the ADHD...I am pretty sure I managed to slip through school wearing a good mask to keep from being medicated. In my adult life I have somewhat managed to get a hold on my randomness in tasks and have been learning to prioritize like normal people do. It's not always easy though.
    Thanks again for all your patience and help.
    J~
    A severed foot is the ultimate stocking stuffer.

    Mitch Hedberg

  4. #44
    Former 11 year old Valientlink's Avatar
    Join Date
    Aug 2005
    Age
    30
    Posts
    302
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    vBActivity - Stats
    Points
    1,538
    Level
    13
    vBActivity - Bars
    Lv. Percent
    23.21%
    Jeez, 2.5 is still way too much for me to handle/comprehend lol.
    Revival of Link - coming... I don't know. 90% finished and lost motivation to build after a sudden increase in interest

  5. #45
    Keese
    Join Date
    Oct 2003
    Posts
    85
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    vBActivity - Stats
    Points
    905
    Level
    10
    vBActivity - Bars
    Lv. Percent
    46.17%
    ALTTP Classic sounds like a good title, yet 2.5 quests should either have a dedicated 3.0 zelda-w.exe for playback plus it's own zquest.exe because some of us are only just beginning to learn what 2.5 can do plus some of us have been using it for years now.

  6. #46
    Here lies mero. Died by his own dumbassitude.
    Join Date
    May 2011
    Posts
    929
    Mentioned
    102 Post(s)
    Tagged
    2 Thread(s)
    vBActivity - Stats
    Points
    5,527
    Level
    23
    vBActivity - Bars
    Lv. Percent
    13.96%
    If we don't include the default graphics we might as well make 32x32 the default tile size and 20x15 tiles with anti-aliasing for a change since we are probably going to be using 24 bit real color.
    You might say this is madness. Note that Zelda Classic's color depth is hardcoded at 8-bit (256 colors 16 of which are system reserves). The palette system is stupid and archaic and most programmers use shaders now a days.

    tl;dr it's not 1986 we need to update the graphics mode.

  7. #47
    Lynel Majora's Avatar
    Join Date
    Mar 2006
    Age
    32
    Posts
    1,197
    Mentioned
    24 Post(s)
    Tagged
    7 Thread(s)
    vBActivity - Stats
    Points
    4,385
    Level
    20
    vBActivity - Bars
    Lv. Percent
    93.35%
    My two cents:

    efficient, efficient, efficient!

    Wherever possible make things more efficient. One thing that annoys me is the ever-increasing bloat of software. RAM usage can be whatever it needs to be, but processing power required should be as low as feasible. Especially considering this will be a 2D thing.

    Personally i have an affinity for netbook. I prefer them vastly over touchscreen-based devices (which are garbage). If ZC 3.0 can run at 60FPS no matter what (barring maybe having a metric shit ton of sprites/effects/whatever) on screen at once of an amount that is abnormal) on say, a CPU that is 1.5 GHz dual-core (which I know doesn't mean a lot as 1.5 GHz varies in power depending on what CPU model you're dealing with) then it will be perfect.

    To that end: MULTI-THREADING.

    Please please PLEASE, if it's reasonably possible/feasible to do so, grant ZC 3 the ability to use as many cores as are available, as necessary. I assume ZC 3 will be hardware-accelerated so CPU power becomes less of an issue, but still.

    So yeah that's about it from me. My thing is efficiency. If this was the year 2115 then I want ZC 3 to still be playable on an Intel N2600 (CPU model).

  8. #48
    Gel
    Join Date
    Mar 2015
    Posts
    3
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    vBActivity - Stats
    Points
    337
    Level
    6
    vBActivity - Bars
    Lv. Percent
    71.15%
    If ZC 3 is in the works right now, I'd love to Beta test it!

  9. #49
    Here lies mero. Died by his own dumbassitude.
    Join Date
    May 2011
    Posts
    929
    Mentioned
    102 Post(s)
    Tagged
    2 Thread(s)
    vBActivity - Stats
    Points
    5,527
    Level
    23
    vBActivity - Bars
    Lv. Percent
    13.96%
    Quote Originally Posted by Gleeok View Post
    This has been brought up an inordinate amount recently and based that it might be time to take it seriously. Here are a few resources from past discussions and proposals:

    Recent thread (Very recent, only a few weeks old) :
    http://armageddongames.net/showthrea...m-Scratch-Plan

    Old DarkDragon post that was previously hidden from public view:



    To summarize, any discussion on this in the past two years has just boiled down to the following:

    1. Will be open source and primarily written in c/c++.
    2. Take advantage of well tested 3rd party libs for portability (ie,; windowing, input, etc.). Don't use allegro.
    3. A game engine or framework should be at it's core, and should be independent of Zelda-related IP or other copyrighted materials. The community can easily add a Zelda resource pack just like using a tileset in ZC.
    4. Use qt for the GUI.
    5. Use a fast and powerful scripting language like Lua, or C#. (Alternates have been brought up before, such as python or javascript, but are usually met with mixed results, however there's nothing stopping anyone from adding bindings to all of these later on!)


    Obviously no single person is crazy enough to do this by themselves.

    I'm willing to contribute one component to the project if it gets started, and maybe more as things get finished, or I finish with that. I also have a lot of things that I've done for my own project that may be able to be used without much work as well. maybe more if the core code is very similar. Maybe lots if it is compatible.

    If anyone is interested in working on it then reply here and feel free to throw yer two cents into the well and make a wish.

    [edit]
    Side note: This isn't a "Add more combo flags to ZQuest, or add this feature to ZC" discussion. Please use the suggestion forum for that.
    Since plans have changed since then, is this really needed here, it might confuse some people.

Thread Information

Users Browsing this Thread

There are currently 2 users browsing this thread. (0 members and 2 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
  •  
About us
Armageddon Games is a game development group founded in 1997. We are extremely passionate about our work and our inspirations are mostly drawn from games of the 8-bit and 16-bit era.
Social