Author Topic: OmniRPG - Battle Engine Discussion  (Read 33986 times)

0 Members and 1 Guest are viewing this topic.

Offline TIfanx1999

  • ಠ_ಠ ( ͡° ͜ʖ ͡°)
  • CoT Emeritus
  • LV13 Extreme Addict (Next: 9001)
  • *
  • Posts: 6173
  • Rating: +191/-9
    • View Profile
Re: OmniRPG - Battle Engine Discussion
« Reply #45 on: December 07, 2012, 07:51:18 pm »
Well, Yeong's suggestion kind of reminds me of Pokemon where you can have 2 on 2 battles. You still have a full party of 6, but the downside of switching is that the character that was switched doesn't get to attack and the incoming Pokemon is open to take a hit. This can however also be strategic depending on what you switch to.

Offline willrandship

  • Omnimagus of the Multi-Base.
  • LV11 Super Veteran (Next: 3000)
  • ***********
  • Posts: 2953
  • Rating: +98/-13
  • Insert sugar to begin programming subroutine.
    • View Profile
Re: OmniRPG - Battle Engine Discussion
« Reply #46 on: December 07, 2012, 08:03:53 pm »
I understand that, but is pokemon really the style we're after? Pokemon was designed with the idea that you would have hundreds of characters to train. We're only going to have 12, max.

Offline TIfanx1999

  • ಠ_ಠ ( ͡° ͜ʖ ͡°)
  • CoT Emeritus
  • LV13 Extreme Addict (Next: 9001)
  • *
  • Posts: 6173
  • Rating: +191/-9
    • View Profile
Re: OmniRPG - Battle Engine Discussion
« Reply #47 on: December 07, 2012, 08:05:55 pm »
Oh no i didn't mean that at all. I think 12 is a bit much tbh. That was just the only example that came to mind with switching between active characters. As you pointed out, most rpgs don't do this.

Offline willrandship

  • Omnimagus of the Multi-Base.
  • LV11 Super Veteran (Next: 3000)
  • ***********
  • Posts: 2953
  • Rating: +98/-13
  • Insert sugar to begin programming subroutine.
    • View Profile
Re: OmniRPG - Battle Engine Discussion
« Reply #48 on: December 07, 2012, 08:15:52 pm »
12 is quite a few, but not too many if the story accounts for it well (ie separate parties following different plots, like FF6)

Offline TIfanx1999

  • ಠ_ಠ ( ͡° ͜ʖ ͡°)
  • CoT Emeritus
  • LV13 Extreme Addict (Next: 9001)
  • *
  • Posts: 6173
  • Rating: +191/-9
    • View Profile
Re: OmniRPG - Battle Engine Discussion
« Reply #49 on: December 07, 2012, 09:05:02 pm »
Yea I agree, I think 12 in a party at once would be a bit cumbersome though.

Offline blue_bear_94

  • LV8 Addict (Next: 1000)
  • ********
  • Posts: 801
  • Rating: +25/-35
  • Touhou Enthusiast / Former Troll / 68k Programmer
    • View Profile
Re: OmniRPG - Battle Engine Discussion
« Reply #50 on: December 07, 2012, 10:07:24 pm »
Not to mention that it will take a lot of data. We'll probably need around 100 bytes for each party member, and that times 12 is 1200!
Due to dissatisfaction, I will be inactive on Omnimaga until further notice. (?? THP hasn't been much success and there's also the CE. I might possibly be here for a while.)
If you want to implore me to come back, or otherwise contact me, I can be found on GitHub (bluebear94), Twitter (@melranosF_), Reddit (/u/Fluffy8x), or e-mail (if you know my address). As a last resort, send me a PM on Cemetech (bluebear94) or join Touhou Prono (don't be fooled by the name). I've also enabled notifications for PMs on Omnimaga, but I don't advise using that since I might be banned.
Elvyna (Sunrise) 4 5%
TI-84+SE User (2.30 2.55 MP 2.43)
TI-89 Titanium User (3.10)
Casio Prizm User? (1.02)
Bag  東方ぷろの

Offline willrandship

  • Omnimagus of the Multi-Base.
  • LV11 Super Veteran (Next: 3000)
  • ***********
  • Posts: 2953
  • Rating: +98/-13
  • Insert sugar to begin programming subroutine.
    • View Profile
Re: OmniRPG - Battle Engine Discussion
« Reply #51 on: December 08, 2012, 04:37:43 am »
1200 bytes isn't that big if you only have 300 bytes of it out of the appvar at a time.

Offline Yeong

  • Not a bridge
  • LV12 Extreme Poster (Next: 5000)
  • ************
  • Posts: 3739
  • Rating: +278/-12
  • Survivor of Apocalypse
    • View Profile
Re: OmniRPG - Battle Engine Discussion
« Reply #52 on: December 08, 2012, 10:14:12 am »
How will character data take 100 bytes O.O The maximum data it will take is probably around 30~40 bytes each. Also, if switching from A→D takes too long, maybe ability switching the other way can fix it? so that from A, you can switch to either B or D.
Sig wipe!

Offline Xeda112358

  • they/them
  • Moderator
  • LV12 Extreme Poster (Next: 5000)
  • ************
  • Posts: 4704
  • Rating: +719/-6
  • Calc-u-lator, do doo doo do do do.
    • View Profile
Re: OmniRPG - Battle Engine Discussion
« Reply #53 on: December 08, 2012, 11:21:57 am »
I'm thinking that if the character data includes a 16x16 sprite, it would take at least 32 from that alone, plus the name, then the stats, equipment, and abilities.

Offline Yeong

  • Not a bridge
  • LV12 Extreme Poster (Next: 5000)
  • ************
  • Posts: 3739
  • Rating: +278/-12
  • Survivor of Apocalypse
    • View Profile
Re: OmniRPG - Battle Engine Discussion
« Reply #54 on: December 08, 2012, 11:23:43 am »
ah. including a sprite data. The pure data without sprite will barely reach 50 bytes though.
Sig wipe!

Offline TIfanx1999

  • ಠ_ಠ ( ͡° ͜ʖ ͡°)
  • CoT Emeritus
  • LV13 Extreme Addict (Next: 9001)
  • *
  • Posts: 6173
  • Rating: +191/-9
    • View Profile
Re: OmniRPG - Battle Engine Discussion
« Reply #55 on: December 08, 2012, 11:45:39 am »
How will character data take 100 bytes O.O The maximum data it will take is probably around 30~40 bytes each. Also, if switching from A→D takes too long, maybe ability switching the other way can fix it? so that from A, you can switch to either B or D.
I also want to point out (as I did in my previous post) that most people seem to be favoring an action rpg as opposed to a turn based one. Other concerns aside; how would this system work out in an ARPG?

I also can't stress enough how important I think it is to have a combat system that is more simplistic and easy to use, and honestly an action RPG would be well suited to simplicity.

I guess the biggest question we really need to answer right now is turn based or action rpg. Then if we do an action RPG, do we implement a multiparty system, and what is the best way to go about that?

Offline Yeong

  • Not a bridge
  • LV12 Extreme Poster (Next: 5000)
  • ************
  • Posts: 3739
  • Rating: +278/-12
  • Survivor of Apocalypse
    • View Profile
Re: OmniRPG - Battle Engine Discussion
« Reply #56 on: December 08, 2012, 11:49:19 am »
For ARPG, which hugely favors one party member RPG game, I can only think of few ways of implying multiparty system:

1) Press button to change to different party member (prolly 4 max)
2) Party members move based on an AI, and only the "selected" party members can be moved manually
3) LoZ: four swords
Sig wipe!

Offline Sorunome

  • Fox Fox Fox Fox Fox Fox Fox!
  • Support Staff
  • LV13 Extreme Addict (Next: 9001)
  • *************
  • Posts: 7920
  • Rating: +374/-13
  • Derpy Hooves
    • View Profile
    • My website! (You might lose the game)
Re: OmniRPG - Battle Engine Discussion
« Reply #57 on: December 08, 2012, 01:04:48 pm »
Isn't party members also a bit of a story-line thing? Our currently storyline has only one party member....

THE GAME
Also, check out my website
If OmnomIRC is screwed up, blame me!
Click here to give me an internet!

Offline Scipi

  • Omni Kitten Meow~ =^ω^=
  • LV10 31337 u53r (Next: 2000)
  • **********
  • Posts: 1547
  • Rating: +192/-3
  • Meow :3
    • View Profile
    • ScipiSoftware
Re: Re: OmniRPG - Battle Engine Discussion
« Reply #58 on: December 08, 2012, 01:27:34 pm »
Our current story would allow for an ambiguous number of party members. Party members and allies help with the depth of the story, so it should be important that we have them in some form.

Imma Cat! =^_^= :3 (It's an emoticon now!)
Spoiler For Things I find interesting:
Spoiler For AI Programming:
Spoiler For Shameless advertising:

Spoiler For OldSig:





Spoiler For IMPORTANT NEWS!:
Late last night, Quebec was invaded by a group calling themselves, "Omnimaga". Not much is known about these mysterious people except that they all carried calculators of some kind and they all seemed to converge on one house in particular. Experts estimate that the combined power of their fabled calculators is greater than all the worlds super computers put together. The group seems to be holding out in the home of a certain DJ_O, who the Omnimagians claim to be their founder. Such power has put the world at a standstill with everyone waiting to see what the Omnimagians will do...

Wait... This just in, the Omnimagians have sent the UN a list of demands that must be met or else the world will be "submitted to the wrath of Netham45's Lobster Army". Such demands include >9001 crates of peanuts, sacrificial blue lobsters, and a wide assortment of cherry flavored items. With such computing power stored in the hands of such people, we can only hope these demands are met.

In the wake of these events, we can only ask, Why? Why do these people make these demands, what caused them to gather, and what are their future plans...

Offline TIfanx1999

  • ಠ_ಠ ( ͡° ͜ʖ ͡°)
  • CoT Emeritus
  • LV13 Extreme Addict (Next: 9001)
  • *
  • Posts: 6173
  • Rating: +191/-9
    • View Profile
Re: OmniRPG - Battle Engine Discussion
« Reply #59 on: December 08, 2012, 02:06:50 pm »
For ARPG, which hugely favors one party member RPG game, I can only think of few ways of implying multiparty system:

1) Press button to change to different party member (prolly 4 max)
2) Party members move based on an AI, and only the "selected" party members can be moved manually
3) LoZ: four swords
A combination of 1 and 2 was what I was thinking if that were the route we were to take (action rpg+ multiparty)

Our current story would allow for an ambiguous number of party members. Party members and allies help with the depth of the story, so it should be important that we have them in some form.

This could still work within the confines of an action RPG. In addition to your main character, party members that join and leave the party throughout the course of the game could follow AI patterns. I would probably have a max party size of 2 or 3 at any given time in order to keep things simple and not slow things down too much in this case though.

*Edit* Actually you could have an action rpg where you have mutiple scenarios occurring and you switch between control of the main characters as the plot progresses. When the characters paths meet, one (or more) of them could become AI controlled members of a single party. If they diverge, you could split them again and switch between scenarios as needed. This would be another way you could implement a multiparty ARPG.
« Last Edit: December 08, 2012, 02:17:42 pm by Art_of_camelot »