Author Topic: MineClimbeR(L) - 2015 7dRL - SUCCESS  (Read 7179 times)

v4nz666

  • Newcomer
  • Posts: 5
  • Karma: +0/-0
    • View Profile
    • Email
MineClimbeR(L) - 2015 7dRL - SUCCESS
« on: March 16, 2015, 01:44:22 AM »
This was my first year competing in the 7drl challenge, and I had a great time.

I've created a short gameplay video, and it's available on youtube at http://www.youtu.be/3P-XVMXWc8Y.

Also, check out my dev blog (of sorts, more of a post mortem, really) on github at https://github.com/v4nz666/MineClimbeR-L-/wiki

I would love to hear what people think! :)

cheers,
v4nz666

Avagart

  • 7DRL Reviewer
  • Rogueliker
  • *
  • Posts: 567
  • Karma: +0/-0
    • View Profile
Re: MineClimbeR(L) - 2015 7dRL - SUCCESS
« Reply #1 on: March 16, 2015, 11:35:04 AM »
Nice idea and good game (but sometimes frustrating ;) ). However, not everyone have installed python (and probably no one will install python for one game) so I'm recommending you do executable files for windows/unix asap :)

v4nz666

  • Newcomer
  • Posts: 5
  • Karma: +0/-0
    • View Profile
    • Email
Re: MineClimbeR(L) - 2015 7dRL - SUCCESS
« Reply #2 on: March 16, 2015, 01:44:39 PM »
Thanks, Avagart. Glad you enjoyed the game, even if you found it a bit frustrating. It _is_ a roguelike, after all ;) Not sure how many times I've dies playing NetHack, but it's an aweful lot :)

I'll be working towards executables tonight. I had hoped to get them in before the competition was finished, but alas, bug fixing and features were higher on my list of priorities.

Unfortunately, it's back to Real Life today, so I'll be able to devote a bit less time. Hopefully the executables don't prove to be too tricky.

cheers, mate, and thanks for checking out the game!

v4nz666

  • Newcomer
  • Posts: 5
  • Karma: +0/-0
    • View Profile
    • Email
Re: MineClimbeR(L) - 2015 7dRL - SUCCESS
« Reply #3 on: March 19, 2015, 12:56:50 AM »
I've got a windows executable created, though I've not yet been able to craft up a *Nix standalone. I reckon anyone using Linux, or otherwise would be able to get python and pygame installed. I'd like to get it working, but it seems pygame and any of the python packaging tools don't play very well together. I'll keep trying, as I'm a Linux user, and have no interest in neglecting that part of the community.

For now, find the windows executable at

http://putmax.com/files/zWLQx2eM/MineClimbeR.zip

should be a simple unzip and run main.exe to get going.

md5sum for the archive is

$ md5sum MineClimbeR.zip
dc0821843839201ccff43ab54ba4c851  MineClimbeR.zip

Avagart

  • 7DRL Reviewer
  • Rogueliker
  • *
  • Posts: 567
  • Karma: +0/-0
    • View Profile
Re: MineClimbeR(L) - 2015 7dRL - SUCCESS
« Reply #4 on: March 19, 2015, 02:57:09 AM »
Works perfecly, good job :)
One little report - 'You dodged the the attack'?


edit: emmm, nope. When I was trying to craft, game crashed. I had some copper and a lot of wood. I make anchors. Anchors append in my inventory, I hit [enter] and - crash.


OK, it's bug in code, not in executable. I replicate this.

Traceback:
Code: [Select]
  File "main.py", line 67, in <module>
    stateManager.doTick()
  File "D:\progr\python\ide\pype\proj\MineClimbeR-L--1.1.3\RoguePy\State\StateManager.py", line 37, in doTick
    state.processInput()
  File "D:\progr\python\ide\pype\proj\MineClimbeR-L--1.1.3\RoguePy\State\GameState.py", line 43, in processInput
    self._inputHandler.handleInput()
  File "D:\progr\python\ide\pype\proj\MineClimbeR-L--1.1.3\RoguePy\Input\NonBlockingKeyboardHandler.py", line 11, in handleInput
    self.handleKeyInput(key)
  File "D:\progr\python\ide\pype\proj\MineClimbeR-L--1.1.3\RoguePy\Input\KeyboardHandler.py", line 21, in handleKeyInput
    return cmd['fn']()
  File "D:\progr\python\ide\pype\proj\MineClimbeR-L--1.1.3\RoguePy\UI\Elements\Menu.py", line 46, in selectFn
    self.menuItems[self.selected].fn(self.selected)
IndexError: list index out of range
« Last Edit: March 19, 2015, 03:20:29 AM by Avagart »