Chaosforge Forum

  • March 28, 2024, 01:59
  • Welcome, Guest
Please login or register.



Login with username, password and session length
Pages: 1 2 [All]

Author Topic: New Roguelike - alpha testers wanted  (Read 10561 times)

Sereg

  • Chaos Acolyte
  • Greater Elder
  • Brigadier General
  • *
  • *
  • Offline Offline
  • Posts: 660
  • Angel of Overconfidence
    • View Profile
New Roguelike - alpha testers wanted
« on: March 26, 2020, 18:14 »

Edit:

4 APR 2020 - Version [a.2.0]:
 [Change]
  -Text screens no longer attempt to redraw themselves unless a meaningful change has taken place.
  -User profile now remembers last session's display settings (e.g. fullscreen and graphical modes)
  -Player now moves before all monsters.
  -Messages now display with the player message on top, and only attempt to display since last player action.
  -Message overflow indicates that more messages are available, which appear as before in Message Recall.
  -Floor bosses may no longer spawn on floor 1 of the Dark Grove.
  -Improved player HP and Soul at all levels.
 [New]
  -Library now supports basic upgrades.
  -Text items may now be found in the dungeon and researched in the player estate(with required upgrade).
  -Languages added and tracked across games.

Hello again everyone,

After quite a long time, I've finally got a new roguelike game ready for play testing. This is the third project I've started since Viridian Abyss, and the first since then to reach a state where I felt ready to release it to a wider audience than just myself(the other two had a lot of good features but not the overall quality I was working towards, and much of their content and code ended up in the current project).

I've developed a completely new display scheme from the one I used in VA, and I'm interested to see how well that ends up working on other computers, resolutions, monitors, and graphical environments than the ones I have immediately available for testing.

The game itself takes place in the same world as Viridian Abyss, although the time setting is significantly earlier - for those of you who played VA and remember the nations of Atlantis and Lemuria, this setting takes place in the very distant past of those nations - which were themselves very ancient history in the setting of Viridian Abyss.

My goal from a storytelling perspective is to expand on the world and lore I started to reveal in VA, while my goal from a game development perspective is to improve on the experience of VA. As far as that goes, the engine execution, event flow, display layout, etc., of the new project are already superior to what I had in VA. There's currently a *lot* less content - I only have a rudimentary implementation of items, and the dungeon itself is smaller and probably much easier to complete than the one in VA. However, the potential for expansion is far greater because the underlying systems are much better, and I have a lot of content I want to add in future releases, including some of the stuff from VA that's missing in the current release, such as languages and magic, a post mortem autopsy system, and more interesting dungeon generation.

As before, I welcome any feedback on any aspect of the game, whether it be gameplay, design, storytelling, or any other feature you feel could be improved.  Prospective alpha testers can find the zipped folder here. It contains a graphics folder(which currently only serves the purpose of supplying the icon for windowed mode - my display scheme does support tile based graphics, and my implementation requires paths for such tiles, but I don't make use of them at this time), a document folder containing a manual text file(which is currently empty, although all currently available commands can be found in the ingame help menu, accessible via '?') and a changelog text file(which is also currently empty, since this is the first release), and the executable jar, which as before requires an installed Java Runtime Environment to run.

I do have error logging implemented, and in the event of a fatal crash, a debug log *should* be written inside the main directory. If this happens, please send me the log at the provided e-mail address. If it does not happen, I'd also like to know about it, as well as all the information about what you were doing and the state of the game when the crash occurred as you're able to gather.

Thanks for reading, thanks again to those of you who play tested Viridian Abyss for me, and thanks in advance to any who will help me out that way with this new project.
« Last Edit: April 03, 2020, 20:12 by Sereg »
Logged
[26|22|23|15|15|2]
Cyberdemon Chaos Colonel

Medals - DRL 27/43 | XA 16/31

mihey1993

  • Elder
  • Corporal
  • *
  • *
  • Offline Offline
  • Posts: 41
  • Lost Soul
    • View Profile
Re: New Roguelike - alpha testers wanted
« Reply #1 on: April 03, 2020, 08:51 »

Was awaiting this with a bated breath, Sereg:P

And the first two things :
1) text is too small for big screen, and no ability to make it ... well more readable. At least, it was until i discovered that simply enlarging window does nothing, only fullscreen mode dose. also, if you enlarge window, your hud all ends up somewhere in one corner, while map is in center:D

2)if you try ctrl and scroll on the text screen, you get a funny effect:D
3)when you attack something, the log is like in viridian abyss made funny, so it shows your action, while whatever your enemy did is below and greyed out, making it a little confusing as to why my health is lowering
4) i gained no experience, so far, at least i guess it is due to the unfinished state. meeting a bear with nothing but starting weapon and armor was not...very survivable tho:D
« Last Edit: April 03, 2020, 09:04 by mihey1993 »
Logged
Cyberdemon Br.General
[26/23/18/5/1]
Wanna complete any N! game with 90% or more kills...

Sereg

  • Chaos Acolyte
  • Greater Elder
  • Brigadier General
  • *
  • *
  • Offline Offline
  • Posts: 660
  • Angel of Overconfidence
    • View Profile
Re: New Roguelike - alpha testers wanted
« Reply #2 on: April 03, 2020, 09:45 »

Thanks for the feedback. I'll address it as I can:

1) The GUI I built, while in my opinion a significant improvement over the old one, is still pretty simplistic - I only support two tile sizes, 16x16 and 32x32(text and graphical tiles have different widths - text width is narrower for better readability, but it's constant and to scale). I don't have any capability to support resizing the window, so fullscreen(or changing your monitor resolution - this will shrink the available display area but each individual tile will appear larger) is your best option for correcting that.

2) This is because the screen is refreshing itself when you provide input. It might be better to skip the update when the input doesn't change anything - I'll take another look at the way I handle input, but that should be pretty simple to get rid of.

3) I've done that deliberately - I have it set up now so that the most recent message reflects the results of the last action the player took. Previous messages are available for review by checking the message recall. I originally had the player message first, and messages generated by enemy actions would appear last, and I found that to be more confusing. It's also worth noting that multiple enemies can generate messages for each action by the player, and the order of those depends on the rate of actor energy generation, not the effect they've had on the player(it might be possible to collect and deliberately order them this way, but it would require a lot of additional manipulation and even then might not be any more clear). I think I'll hold off on any immediate changes on this one and wait for more feedback to see if I can get a better sense of the general opinion on this.

I will point out that you can adjust message verbosity, filtering how much information you receive for each interaction. Combat tends to offer a lot of information, which can spam out the on-screen message window, but at lower verbosity settings, only the more important details will come through with each message, and this might help you get a better picture of the entire last round of combat.

4) Experience is awarded only when you leave a floor - the manual should have better information on the details of this with the current release, but the general idea is that if you move down to the next floor, you're awarded a small percentage of what you've earned in the dungeon so far(and the rest is saved for when you leave the dungeon itself), while if you exit by the entry staircase, you gain about 40% of your earned rewards and forfeit the rest, and if you leave by the exit staircase, you gain full rewards.

Note that gaining levels doesn't do all that much for you just yet(although it does have an effect even now), nor are the enemies balanced, since I am holding off on that until I have more features implemented. Bears are definitely a high threat right now(and there are worse things you might find if you are unlucky enough, or visit the deeper floors!), but once you can find better gear and change your equipment setup, as well as being able to use consumable items like the healing items from VA, they should become less of a challenge.


Thanks for checking it out. Let me know if you're not satisfied with any of my explanations, and of course if you find any other issues that seem noteworthy.

I'm working on adding additional content for the a.2.0 update right now, and I'll throw the screen refresh fix in there(as I don't currently have a separate release branch - I'll be sure to maintain one for releases going forward, though). Edit: This was very quick to handle and will be in the next release. Thanks for pointing it out.
« Last Edit: April 03, 2020, 09:54 by Sereg »
Logged
[26|22|23|15|15|2]
Cyberdemon Chaos Colonel

Medals - DRL 27/43 | XA 16/31

mihey1993

  • Elder
  • Corporal
  • *
  • *
  • Offline Offline
  • Posts: 41
  • Lost Soul
    • View Profile
Re: New Roguelike - alpha testers wanted
« Reply #3 on: April 03, 2020, 09:53 »

Well ,since you asked - the game is a bit... chugging on each action. It feels much less fluid than VA was, or most roguelikes really, like it spends a lot of time calculating the move.
As with VA - i d like to see what i died from, not just the screen YOU DIED:D all of a sudden.
I also would like it if i could have the game memorize what setting i used last - i really do not like tiles graphics in general, so i d prefer to have always console view in start
« Last Edit: April 03, 2020, 09:55 by mihey1993 »
Logged
Cyberdemon Br.General
[26/23/18/5/1]
Wanna complete any N! game with 90% or more kills...

Sereg

  • Chaos Acolyte
  • Greater Elder
  • Brigadier General
  • *
  • *
  • Offline Offline
  • Posts: 660
  • Angel of Overconfidence
    • View Profile
Re: New Roguelike - alpha testers wanted
« Reply #4 on: April 03, 2020, 10:03 »

Do you mind posting your computer specs? I've been developing on a reasonably decent gaming laptop, so it's possible that I'm being inefficient in ways that haven't impacted my own testing yet. As a roguelike, I definitely want it to be playable on almost any computer.

Is there anything specific you're doing when it slows down like that? Combat, movement, level transitions? I know that saving and loading can take a bit longer, but I haven't noticed any particular slowdowns in normal gameplay.

As far as the death screen, that's just a placeholder for now. It will definitely be much more informative in future releases, complete with autopsy files like VA, as well as high scores and other useful features.

Edit: At your edit, I can certainly make the user profile remember display settings - this will be live in the next release as well.
« Last Edit: April 03, 2020, 10:18 by Sereg »
Logged
[26|22|23|15|15|2]
Cyberdemon Chaos Colonel

Medals - DRL 27/43 | XA 16/31

mihey1993

  • Elder
  • Corporal
  • *
  • *
  • Offline Offline
  • Posts: 41
  • Lost Soul
    • View Profile
Re: New Roguelike - alpha testers wanted
« Reply #5 on: April 03, 2020, 10:53 »

It chugs on every movement action - it visibly takes it at least a second to process for some odd reason.
The problem seems to be with processor - even when the game is idle, it eats in 15-17 percent of my processor power:D
I got i5 6500 - 3.2 ghz.
it also slows down on exiting, and saving, as you also felt it;3

For now, since there is no such thing as use for exp level except full heal,and no equipment options, this is as far as i can test it i think?:D
as meeting a bear means certain death.

For combat - it is.... clunkier than i d want. since you have energy system , where for each action of mine enemy may get in two -three of his, and not necessarily after my own, i tend to suddenly find myself on square where enemy was since i countered him instead of hitting, and thus got moved. this is..jarring in experience.
Logged
Cyberdemon Br.General
[26/23/18/5/1]
Wanna complete any N! game with 90% or more kills...

Sereg

  • Chaos Acolyte
  • Greater Elder
  • Brigadier General
  • *
  • *
  • Offline Offline
  • Posts: 660
  • Angel of Overconfidence
    • View Profile
Re: New Roguelike - alpha testers wanted
« Reply #6 on: April 03, 2020, 11:25 »

A second on every move? o_O  even when there are no monsters in sight of the player? The combat handler is pretty complex and has a lot going on(although even that shouldn't result in the sorts of delays you're seeing), but ordinary movement shouldn't have any reason to delay that long... that's very concerning, especially given your processor.

You're probably right as far as the extent of testing for now - the game doesn't have enough content to be very replayable yet, so at this point I'm mostly looking for observations like what you've made, things I've overlooked or otherwise failed to notice or worry about in my own testing(since that's usually focused on whatever feature I've just added, and I mentally skip everything else until I get to what I'm specifically looking for). I definitely appreciate your feedback so far.

The combat might need some review - you're right that the counterattack system can cause enemies to die somewhat unexpectedly, which can be jarring - especially with the slowdowns you seem to be experiencing. I do want to preserve that aspect of it, and I think it will be less jarring against more powerful enemies(who won't die instantly like the little spiders in the forest). It might require some adjustment - maybe counterattacks should be prevented from doing lethal damage, for example. I'll bear that in mind and remain open to making changes.

I will note that no enemy should be getting two to three actions against you - it's possible with the way the system works, but none of the enemies I've added so far have the ability to use it that way. I think the unexpected moves are entirely due to the counterattack system, not the energy system.
« Last Edit: April 03, 2020, 11:28 by Sereg »
Logged
[26|22|23|15|15|2]
Cyberdemon Chaos Colonel

Medals - DRL 27/43 | XA 16/31

mihey1993

  • Elder
  • Corporal
  • *
  • *
  • Offline Offline
  • Posts: 41
  • Lost Soul
    • View Profile
Re: New Roguelike - alpha testers wanted
« Reply #7 on: April 03, 2020, 11:36 »

It got a visible delay on every move i try to make so that one is consistent - and as i said, for some reason java on your game eats a lot more than i d expect in idle mode where all that happens is few tiles changing their looks.

Energy system is all fine and good, many games use it, but maybe you could try ADOM approach? so whenever you make actions, monsters make action only after yours is completed.

and yes, problem is with energy and counterattack together making me move somewhere x3 however, i could have spider attack me before i move off the space i was in which also makes it seem like it attacked from a tile away:3
Logged
Cyberdemon Br.General
[26/23/18/5/1]
Wanna complete any N! game with 90% or more kills...

Sereg

  • Chaos Acolyte
  • Greater Elder
  • Brigadier General
  • *
  • *
  • Offline Offline
  • Posts: 660
  • Angel of Overconfidence
    • View Profile
Re: New Roguelike - alpha testers wanted
« Reply #8 on: April 03, 2020, 12:06 »

Yeah, that's definitely unexpected - as you say, when the game is idling, the only thing that's happening is the GUI is on a loop refreshing the display, and that doesn't take up all that much processing power(unless Java is automatically tasking that to my GPU instead of my CPU - what sort of graphics card do you have?).

I initially had the player queued as the first actor to execute, but this resulted in the message obscurity I mentioned in my first reply - that is, the message directly generated by the player's action was not the one that appeared most recently. Now I have the player executing last, so the message corresponding to your action is on top. It'll work either way in the engine, and I'll keep it open and see what other feedback I receive - I'll definitely keep yours in mind.

The attack from a tile away is not really related to that - you'll queue an action, but the spider will reach the energy it needs to act first, request a decision from its AI(which will choose to attack the player since it is adjacent at that point), and make the attack, after which the player actor will reach the energy required for the action you chose with your keyboard input and move away. This actually wouldn't change even if I had the player at the first position in the engine's actor queue, because each actor generates a small amount of energy each game turn, and the engine simulates these game turns until the player has enough energy to act. Part of this simulation includes handling actions by non player actors who gain enough energy to act before the player does. The only real consequence would be to bury the message directly produced by the player's input, which I personally don't like(but again, will remain receptive to input on).

To actually ensure that the player acted first in all situations, I'd need a totally different engine concept - which isn't necessarily off the table, but it's something I'd be quite hesitant to do at this point.

« Last Edit: April 03, 2020, 12:09 by Sereg »
Logged
[26|22|23|15|15|2]
Cyberdemon Chaos Colonel

Medals - DRL 27/43 | XA 16/31

mihey1993

  • Elder
  • Corporal
  • *
  • *
  • Offline Offline
  • Posts: 41
  • Lost Soul
    • View Profile
Re: New Roguelike - alpha testers wanted
« Reply #9 on: April 03, 2020, 12:15 »

i have geforce 1060 6GB - which would easily handle the load if it was going on it :3
As for energy and actors, hear me out.
Situation 1 - enemy and you got near one another. either your enemy has enough energy to get close and attack, or just get close.
then, you may have secret energy counter behind the scenes making player's move be the most important, and everything else is decided after it. so you decide to move. then, if enemy has enough energy, it moves after you, and then checks if remaining energy is enough for attack. not during your move, but after it had to chase you down.

in energy

start of the turn - example both just entered a world. for me player, i move once every 100 energy units, enemy once every 75.
so, first move we both go a tile. second and third too. on forth, i go once, and enemy goes twice, correct? so, in your current way, if we end up near one another and enemy got more energy than 0, it will always attack me before i leave my tile. while instead, it should follow me, and then eventually gain enough spared energy to move and attack:3
Logged
Cyberdemon Br.General
[26/23/18/5/1]
Wanna complete any N! game with 90% or more kills...

Sereg

  • Chaos Acolyte
  • Greater Elder
  • Brigadier General
  • *
  • *
  • Offline Offline
  • Posts: 660
  • Angel of Overconfidence
    • View Profile
Re: New Roguelike - alpha testers wanted
« Reply #10 on: April 03, 2020, 12:47 »

Yeah, it doesn't look to me like either your CPU or GPU should be causing the problem.

Your energy example works as intended provided the player executes first. However, when the player moves first, that means other actors move afterwards, which means that the messages their actions generate appear after any messages generated by the player's action.

The question, then, is which approach is least jarring, and that seems to be where our opinions differ.
Logged
[26|22|23|15|15|2]
Cyberdemon Chaos Colonel

Medals - DRL 27/43 | XA 16/31

mihey1993

  • Elder
  • Corporal
  • *
  • *
  • Offline Offline
  • Posts: 41
  • Lost Soul
    • View Profile
Re: New Roguelike - alpha testers wanted
« Reply #11 on: April 03, 2020, 13:10 »

To be fair, from pure gameplay perspective, when it is your turn, u kinda expect that if enemy dies in it, it wont hit you before , ya know :D
Current message flow makes sure that whatever enemy comes aknocking, you can almost certainly expect that even if it takes one strike to put em down, they will get a bite in.

 in any case, i want to see what you will do with next update:D hope tormuse finds some time to try it too!
« Last Edit: April 03, 2020, 13:59 by mihey1993 »
Logged
Cyberdemon Br.General
[26/23/18/5/1]
Wanna complete any N! game with 90% or more kills...

Sereg

  • Chaos Acolyte
  • Greater Elder
  • Brigadier General
  • *
  • *
  • Offline Offline
  • Posts: 660
  • Angel of Overconfidence
    • View Profile
Re: New Roguelike - alpha testers wanted
« Reply #12 on: April 03, 2020, 14:20 »

So, I think I've found a solution that addresses both of our concerns.

I've reconfigured message flow to display in reverse order to the in-game message display, and re-ordered the action queue so that the player moves first.

This way the message resulting from the player action still appears at the top of the in-game display each term, but in its proper order in the message recall, and enemies are prevented from making in-between moves like the one you described. Unfortunately, I won't be able to push that out for testing until the next release, which I don't have ready quite yet. I'll try to get it finished up and posted soon, and after that I'll maintain a release branch for hotfixing bugs and correcting other minor issues, so I don't have to delay getting them out to testers.

Thanks again for your input.
Logged
[26|22|23|15|15|2]
Cyberdemon Chaos Colonel

Medals - DRL 27/43 | XA 16/31

mihey1993

  • Elder
  • Corporal
  • *
  • *
  • Offline Offline
  • Posts: 41
  • Lost Soul
    • View Profile
Re: New Roguelike - alpha testers wanted
« Reply #13 on: April 03, 2020, 14:26 »

No problem!
A minor thing you might want to add is always showing a message for where the stairs lead (whether it stairs or room entrance). It would help one understand where he goes without going there.
Logged
Cyberdemon Br.General
[26/23/18/5/1]
Wanna complete any N! game with 90% or more kills...

Sereg

  • Chaos Acolyte
  • Greater Elder
  • Brigadier General
  • *
  • *
  • Offline Offline
  • Posts: 660
  • Angel of Overconfidence
    • View Profile
Re: New Roguelike - alpha testers wanted
« Reply #14 on: April 03, 2020, 14:46 »

All stairs(including the room entrances) do currently display a descriptive message on walk over, as well as on targeting with the 'l'ook command... is there something more specific, or different, that you're expecting?
Logged
[26|22|23|15|15|2]
Cyberdemon Chaos Colonel

Medals - DRL 27/43 | XA 16/31

mihey1993

  • Elder
  • Corporal
  • *
  • *
  • Offline Offline
  • Posts: 41
  • Lost Soul
    • View Profile
Re: New Roguelike - alpha testers wanted
« Reply #15 on: April 03, 2020, 14:48 »

ah! well, they may not show it when they are only showing high priority messages tho :D
Logged
Cyberdemon Br.General
[26/23/18/5/1]
Wanna complete any N! game with 90% or more kills...

Sereg

  • Chaos Acolyte
  • Greater Elder
  • Brigadier General
  • *
  • *
  • Offline Offline
  • Posts: 660
  • Angel of Overconfidence
    • View Profile
Re: New Roguelike - alpha testers wanted
« Reply #16 on: April 03, 2020, 15:06 »

Ah - yes, I do have the priority setting for that message set at Low(one step below High - the hierarchy is MAX > HIGH > LOW > MIN), I guess with the expectation that players will only filter their messages once they've reached a point where they're already aware, and preferring to ignore, the additional information available from most of the lower priority/higher verbosity messages.

My standards for assigning those levels are not entirely arbitrary, but they're also not extremely well defined, so that could definitely be tweaked if it becomes necessary.
Logged
[26|22|23|15|15|2]
Cyberdemon Chaos Colonel

Medals - DRL 27/43 | XA 16/31

mihey1993

  • Elder
  • Corporal
  • *
  • *
  • Offline Offline
  • Posts: 41
  • Lost Soul
    • View Profile
Re: New Roguelike - alpha testers wanted
« Reply #17 on: April 03, 2020, 15:12 »

We will see how it goes - for verbose/nonverbose idea of settings i d say it is still relevant message, for me at least.
Logged
Cyberdemon Br.General
[26/23/18/5/1]
Wanna complete any N! game with 90% or more kills...

Sereg

  • Chaos Acolyte
  • Greater Elder
  • Brigadier General
  • *
  • *
  • Offline Offline
  • Posts: 660
  • Angel of Overconfidence
    • View Profile
Re: New Roguelike - alpha testers wanted
« Reply #18 on: April 03, 2020, 20:16 »

I've uploaded the next release. Not quite as many feature additions as I wanted to get done for it, but I felt the updates based on feedback were a priority for this version.

On top of that, I'll now be running dev and release branches separately in the project, so I can make small changes to existing release versions even during development of the next release.
« Last Edit: April 03, 2020, 20:18 by Sereg »
Logged
[26|22|23|15|15|2]
Cyberdemon Chaos Colonel

Medals - DRL 27/43 | XA 16/31

mihey1993

  • Elder
  • Corporal
  • *
  • *
  • Offline Offline
  • Posts: 41
  • Lost Soul
    • View Profile
Re: New Roguelike - alpha testers wanted
« Reply #19 on: April 04, 2020, 04:34 »

mkay, i guess there is no loading the game with the changes, at least it makes it crash immediately(the game load from previous version that is).

Of note:
Deflect causes damage to enemy without saying it does damage them.
Another thing - wait in place takes less time than needed for enemy to move? interesting. allows for some tactical gameplay at least.
More thought -on the combat text. Maybe at less verbose you need to leave only the result of the attack? like, enemy evaded, or you inflicted damage? to be fair, i do not really need to know that i prepared a feint, when i am not one desciding it should be a feint . it is nice to see the combat flow tho, even if i feel like instead of two messages(attempts to evade - fails|succeeds ) it should be one that it evades or fails to do so:3
Target window: when there is more enemies than one, sometimes you fight one enemy but it keeps showing you the other in vision. maybe better for it to show who you attacked knowingly last?
After escaping, i got the list of items i got... and then received the first time playing text again :P
« Last Edit: April 04, 2020, 04:38 by mihey1993 »
Logged
Cyberdemon Br.General
[26/23/18/5/1]
Wanna complete any N! game with 90% or more kills...

Sereg

  • Chaos Acolyte
  • Greater Elder
  • Brigadier General
  • *
  • *
  • Offline Offline
  • Posts: 660
  • Angel of Overconfidence
    • View Profile
Re: New Roguelike - alpha testers wanted
« Reply #20 on: April 04, 2020, 12:42 »

Unfortunately savefiles are not compatible between versions - due to the way they're written and read, any change to any of the in-game assets which are saved will cause existing save files to become unreadable, since they cannot be correctly interpreted into the updated asset.

The reason deflect does damage to enemies is because your enemies are using parts of their own bodies as weapons and armor - so instead of damaging those items, like it does for the player, it actually deals a (very small) amount of damage to their health instead. This has the potential to be important later, when those damage numbers can be magnified intentionally if desired, but for now it's not going to help you much on anything bigger then the smallest spiders.

Wait in place is indeed a fast action - it actually generates energy, rather than consuming it like most other actions. So yes, it is meant to enable tactical play, rather than simply passing a turn as it serves to do in similar games. This may very well need to be balanced, as I've not explored the consequences of using it that way yet.


You raise a good point on message verbosity settings - I've made the following changes:

4 APR 2020 - Version [a.2.1]:
 [Change]
  -Message verbosity settings persist between play sessions.
  -Combat message priorities adjusted as follows:
   >Initial attack and defend messages reduced to LOW from MAX.
   >Successful evasion and deflection messages increased to HIGH from LOW.
   >Hits resulting in damage increased to MAX from HIGH.
   >Non-boss kill messages increased to MAX from HIGH(boss kill messages remain at MAX).

Do note that, while your attack and defense tactics are chosen randomly and automatically at present, future updates will give you control over them, and let you select a tactic from those available in your current melee combat form to exploit enemy defenses if desired. You'll also be able to let it remain random. For now, the messages are meant to convey the interactions and let you get a sense of how attack tactics interact with defense tactics(although there's a more detailed explanation in the manual) so you can better make those decisions once you're able to do so.

As far as targeting, it sorts by distance to the player, so if you are adjacent to multiple enemies, it will sort by orthogonal adjacency and then diagonal adjacency, but otherwise will not discern beyond this - although it will if you use the 'l'ook command to re-target a new enemy. However, this probably shouldn't be necessary. I'll look into automating target updates based on most recent combat opponent for the next release - this shouldn't be too difficult to implement.

As far as the repetitive lore message, I've received one other report about that happening, but I've never been able to reproduce it. Are you able to get that to happen consistently? If so, what are the steps to do so?

« Last Edit: April 04, 2020, 12:51 by Sereg »
Logged
[26|22|23|15|15|2]
Cyberdemon Chaos Colonel

Medals - DRL 27/43 | XA 16/31

mihey1993

  • Elder
  • Corporal
  • *
  • *
  • Offline Offline
  • Posts: 41
  • Lost Soul
    • View Profile
Re: New Roguelike - alpha testers wanted
« Reply #21 on: April 04, 2020, 12:49 »

To put it simple -  i escaped the dungeon, and then i got the repeated lore. i got to second level before escaping the certain death in form of silver wolves times 2.
in my case,i was fighting the wolf who got close to me, but kept being shown spider info who was good 6 tiles away from me by now(but still visible).
Logged
Cyberdemon Br.General
[26/23/18/5/1]
Wanna complete any N! game with 90% or more kills...

Sereg

  • Chaos Acolyte
  • Greater Elder
  • Brigadier General
  • *
  • *
  • Offline Offline
  • Posts: 660
  • Angel of Overconfidence
    • View Profile
Re: New Roguelike - alpha testers wanted
« Reply #22 on: April 04, 2020, 13:13 »

I've added issues to track both the targeting problem and the re-displayed message.

The targeting can definitely be updated - however, I've explored a couple of possibilities on the lore re-display and cannot manage to replicate it. If you can discover a series of more definite steps which reliably causes it to occur, that would be incredibly helpful. If not, I'll keep digging, but I'm at a loss for now.
Logged
[26|22|23|15|15|2]
Cyberdemon Chaos Colonel

Medals - DRL 27/43 | XA 16/31

mihey1993

  • Elder
  • Corporal
  • *
  • *
  • Offline Offline
  • Posts: 41
  • Lost Soul
    • View Profile
Re: New Roguelike - alpha testers wanted
« Reply #23 on: April 05, 2020, 06:16 »

I cant seem to replicate it, maybe it relates to replacing with newer version and then deleting save and starting anew?
or cuz i got to level i was not on before and then fled.

BTW - chugging is visible the more i try to queue commands - it is a noticeable lag between press and resuly
r
Logged
Cyberdemon Br.General
[26/23/18/5/1]
Wanna complete any N! game with 90% or more kills...

Sereg

  • Chaos Acolyte
  • Greater Elder
  • Brigadier General
  • *
  • *
  • Offline Offline
  • Posts: 660
  • Angel of Overconfidence
    • View Profile
Re: New Roguelike - alpha testers wanted
« Reply #24 on: April 05, 2020, 09:03 »

Odd - if it turns up again, let me know.

Targeting is already updated in the development version, so the next release will have it - it only took a single line, much easier than even I expected.

What do you mean by queuing commands? The game technically permits that, since pending actions are stored in a queue(to facilitate potential future AI upgrades which might make more detailed plans - right now they only ever think one step at a time, and the player uses the same system to load actions derived from keyboard commands), but there's a built in delay on the input handler to prevent flooding the queue. This delay is very small (15ms), but the engine should easily resolve the last input before it can accept a new one - which means it should be ready and waiting for it.

If it's running so slowly that you're actually able to build up a queue of commands, that's quite concerning, and I don't have any immediate ideas about what would be causing that, or how I could fix it. At this point, I'd prefer to wait and see how widespread that issue is before I try any significant changes.

Edit: For now, I think we ought to conduct any additional feedback via private message - it's just been you and me so far on this topic, and I don't want to monopolize the forums, especially when we've got a lot of new DRL mortems going, and Jupiter Hell is posting frequent updates. I really appreciate everything you've pointed out so far.
« Last Edit: April 05, 2020, 09:38 by Sereg »
Logged
[26|22|23|15|15|2]
Cyberdemon Chaos Colonel

Medals - DRL 27/43 | XA 16/31
Pages: 1 2 [All]