User Tag List

Page 2 of 4 FirstFirst 1 2 3 4 LastLast
Results 11 to 20 of 34

Thread: Progress Report

  1. #11
    Octorok Binx's Avatar
    Join Date
    Feb 2006
    Age
    36
    Posts
    157
    Mentioned
    9 Post(s)
    Tagged
    3 Thread(s)
    vBActivity - Stats
    Points
    1,220
    Level
    11
    vBActivity - Bars
    Lv. Percent
    95.41%
    Looks gorgeous. I can't wait to see what comes out, here.
    Please check out my current project, The Legend of Zelda: Trials of the Gods
    http://armageddongames.net/showthrea...ls-of-the-Gods
    Current release: V3.1 (Demo)

  2. #12
    The Time-Loop Continues ZC Developer
    Gleeok's Avatar
    Join Date
    Apr 2007
    Posts
    4,815
    Mentioned
    259 Post(s)
    Tagged
    10 Thread(s)
    vBActivity - Stats
    Points
    12,933
    Level
    33
    vBActivity - Bars
    Lv. Percent
    23.44%
    Hey guys. Yep, still working on it. I've had a RL project I've been working on that gets priority, but I've been slowly churning away on it.

    If anyone is interested, here are about half the total sprites and graphics from the PSP version of FF1, along with the maps and tilesets. (The binary formats are all compressed but the source code will be available shortly, so it would be possible to convert the data to another format, say to RPG Maker or whatever, as long as you have a serializer or specification for that format.)

    http://lodge.magesguild.net:11180/~g...PSP_Assets.zip


    Besides that I've been doing a lot of refactoring--there is no separate rpglib anymore, for example--and fixing a few design problems and bugs, along with some scripting.
    There are now very few dependencies as everything is built-in to a core library; there are not even any c++ standard headers included, and it uses no c++ STL whatsoever. Compile times are also insanely fast.
    Now that most of the major components are mostly done (except UI *cough*), I'm strongly leaning toward a "simpler is better" mentality, getting away from the (sometimes unproductive) default OOP mindset, and trying to write more data-oriented in general.

    I also just realized I should take more screenshots. I am very bad about that. :/ ...I should just add a built-in screenshot function I guess.
    This post contains the official Gleeok seal of approval. Look for these and other posts in an area near you.

  3. #13
    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%
    @Gleeok

    I've never done DOP before, yet I would believe OOP is simplier.
    I can't think of a single decent game engine that uses DOP.

    Edit: However, if you are the only one working on this, then do what's more simple for you yet things like this take teams with 100+ developers to get it done in a "reasonable" amount of time.

    Just do what you think is best

    Best screen capture tool ever
    https://www.techsmith.com/download/jing/
    Last edited by Samer; 06-22-2015 at 12:34 PM.

  4. #14
    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%
    Quote Originally Posted by Samer View Post
    @Gleeok

    I've never done DOP before, yet I would believe OOP is simplier.
    I can't think of a single decent game engine that uses DOP.

    Edit: However, if you are the only one working on this, then do what's more simple for you yet things like this take teams with 100+ developers to get it done in a "reasonable" amount of time.

    Just do what you think is best

    Best screen capture tool ever
    https://www.techsmith.com/download/jing/
    I think he's just saying he prefers to do what works, rather than stick established programming mindsets. OOP is efficient and mostly optimal, but there are times when you don't NEED to create an object for something in your program, and when doing so can actually overcomplicate a more simple procedure. This is not the case in general, but there are indeed situations.
    Last edited by Anarchy_Balsac; 07-03-2015 at 02:26 AM. Reason: typo

  5. #15
    The Time-Loop Continues ZC Developer
    Gleeok's Avatar
    Join Date
    Apr 2007
    Posts
    4,815
    Mentioned
    259 Post(s)
    Tagged
    10 Thread(s)
    vBActivity - Stats
    Points
    12,933
    Level
    33
    vBActivity - Bars
    Lv. Percent
    23.44%
    Hey, it's @Anarchy_Balsac . What's up; you ever manage to get a hold of that quest?

    Yeah. What I meant is that I got into a habit of just defaulting to Mr. OOP template wizard, instead of first thinking about the problem and finding the simplest solution. The simplest solution, as it turns out, is not what it seems if you just think in terms of OOP. What happened is that most of the mid level code is more of a pain to use/refactor than it should be. Instead of making some data reusable it should just be made usable instead. It took me about 5 years to figure it out but I'm getting on to you c++.

    Anyway, got it compiled again today. Placeholders are being removed one by one and new things are getting done again. Put in a screenshot function today, and messed with fonts a bit, particularly generating shadowed foonts.


    Caption: "It's not upside down!!"

    2 things:
    1) I'm not digging that resolution [480x280], it looks to tight in the Y direction--not enough tiles--although it is 16:9 aspect, but, the battle backgrounds height are only 312.
    2) Can't get fonts to how I want them. I may just put new font stuff on hold until I have an artist helping.
    This post contains the official Gleeok seal of approval. Look for these and other posts in an area near you.

  6. #16
    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%
    No I sure didn't, I'm making its spiritual successor though. But yeah, focusing too much on OOP can be a hazard.

    For the layman:

    Good OOP:

    - Makes RPG character as object
    - Adds character stats and misc info into character object
    - Makes one time character lines and other throwaway game elements into simple data since it will only be used once and/or has to be made unique to each circumstance anyway.

    Bad OOP:
    - Makes RPG character into object
    - Makes each character stat into subobject
    - Makes character lines and other one time use data into objects as well, only to just end up using the objects once.

    It's a lot more complicated than that, but that's the general gist. OOP is good, but it's easy to get bogged down by it if you shoehorn your code into it. The code should serve the program, not the other way around.

  7. #17
    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%
    Yeah, I agree there are times when OOP does not work without serious planning.
    Requirements in software change on a constant basis, data oriented is good if you are sure it is as good as you think it can be.
    It is a lot more tedious to patch it up though. Software is always going to be complex no matter what approach you use, so whatever
    the developer thinks is best is the best. Democracy does not work in development since nothing will get done. Discussing ideas is another matter entirely.

    There are times in my own projects where I make my classes strictly as data instead of objects.
    Sometimes my impulsiveness gets the best of me. I honestly try not to act superior, just letting people know what I know. @Gleeok has a lot more experience than me (I am still a student) so I take his wisdom to heart.
    I appreciate you too @Anarchy_Balsac . I learn from stuff like this.

    Thanks for all the wisdom.
    Last edited by Samer; 07-03-2015 at 05:06 PM. Reason: Deconstructing my thoughts

  8. #18
    The Time-Loop Continues ZC Developer
    Gleeok's Avatar
    Join Date
    Apr 2007
    Posts
    4,815
    Mentioned
    259 Post(s)
    Tagged
    10 Thread(s)
    vBActivity - Stats
    Points
    12,933
    Level
    33
    vBActivity - Bars
    Lv. Percent
    23.44%
    Well, to be fair most of the code was written in the last 2 1/2 years so it is almost all OO. It's not like I'll switch to c-style coding or anything since it won't be consistent with everything else already written. It'll still all be objects.

    I'll try to post actual code when it comes up so you guys can get a context, then we can argue about it until we are foaming at the mouth.
    This post contains the official Gleeok seal of approval. Look for these and other posts in an area near you.

  9. #19
    The Time-Loop Continues ZC Developer
    Gleeok's Avatar
    Join Date
    Apr 2007
    Posts
    4,815
    Mentioned
    259 Post(s)
    Tagged
    10 Thread(s)
    vBActivity - Stats
    Points
    12,933
    Level
    33
    vBActivity - Bars
    Lv. Percent
    23.44%
    Quote Originally Posted by Anarchy_Balsac View Post
    No I sure didn't, I'm making its spiritual successor though. But yeah, focusing too much on OOP can be a hazard.

    For the layman:

    Good OOP:

    - Makes RPG character as object
    - Adds character stats and misc info into character object
    - Makes one time character lines and other throwaway game elements into simple data since it will only be used once and/or has to be made unique to each circumstance anyway.

    Bad OOP:
    - Makes RPG character into object
    - Makes each character stat into subobject
    - Makes character lines and other one time use data into objects as well, only to just end up using the objects once.

    It's a lot more complicated than that, but that's the general gist. OOP is good, but it's easy to get bogged down by it if you shoehorn your code into it. The code should serve the program, not the other way around.
    It's funny you mention this because I literally have a butt-load of different ways to put in stats, modifiers, states, auto-abilities, etc. that I haven't decided yet and have just pushed that off to the side until battles are fully script-able. it's just arrays right now. It's a tricky thing to get right. I'll even just go ahead and say that rpgmaker fails at this IMO.


    Anyway. Today was get off your lazy ass and "finalize the dang tile specification already" day. So that's done. That might be a whole other post though.


    Also refined map spritesets. This means full on map entities will be done in a jiff. [1]

    "Rock on hero dude, rock on."

    Those specs are easy:
    -Animations are packed fixed point and have up to 0.0625-th of a frame speed (This equals roughly 1 millisecond accuracy). This is because anything higher is not perceptible to the human brain. If you are a fly then you can complain.
    -Any map object spriteset can have any number of animations. They are not separated into 'directions', and they cannot be referenced by strings (I think strings are stupid for that because they are not type safe and just waste space, eg; spriteset.state = WalkingUpEnum is better than spriteset.state = "waklingup "<--oops, typo.). I don't like to be constrained to having direction arrays of animation arrays as well, so it's just wham bam single array easy with the small catch that you have to make sure every sprite is set up correctly to how it is handled logically. ...uhh, and that's it really.

    So for example an octorock like in ZC would just have an animation for each dir[4], and that's it. ...although(!), each animation can be x or y flipped individually so it could just be 2 animations. ...err, actually(!) spritesets can be rotated too so /technically/ they can just be one animation... uhh... whatever is easiest to set up for you I guess. Whatever. It's late and I'm tired. x_x


    [1] : Jiff. A unit of measurement. No idea what the heck it is though.
    Last edited by Gleeok; 07-05-2015 at 06:40 AM.
    This post contains the official Gleeok seal of approval. Look for these and other posts in an area near you.

  10. #20
    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 battles are fully scriptable that means we can do something like this right?
    https://www.youtube.com/watch?v=MYnZbG-MXLw
    @Gleeok
    Last edited by Tamamo; 07-07-2015 at 08:27 PM.

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
  •  
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