Recent content by dotMizi

  1. D

    Star Cruiser 7 - Making of

    Binary files can, as I wrote, be stored as data in c code with srecord. srecord is actually made for storing larger amounts of data together with a programme in EPROMs. It seems to me to be a kind of Swiss army knife for such purposes, the manual is sufficiently complex and very extensive. To...
  2. D

    Star Cruiser 7 - Making of

    Back then, camcorder viewfinders had the advantage that they had an eyepiece and could therefore be placed directly in front of the eye. Today you just have displays. Due to the use of CRTs back then, the viewfinders were also quite long. I think such a device would have looked similar to a...
  3. D

    libnIDE

    Oh, it seems to be gone?
  4. D

    Star Cruiser 7 - Making of

    Then I added functions to draw blocks and boxes: void draw_block (u8* fbAdr, int posx, int posy, int length, int width, int color, int max_width) { int x,y; for (x=posx; (x < posx+length) && (x < max_width); x++) for (y=posy; (y < posy+width) && (y < HEIGHT);y++) {...
  5. D

    Star Cruiser 7 - Making of

    In the early 80s, the first home computers appeared in German department stores (link to audio podcast in german language). Before I got my own VIC20, these booths were the only way to get in touch with home computers and the sales staff were happy to have young people standing in front of the...
  6. D

    Retro Game StarCruiser7

    I've added a release to my github repository, so you can download this now.
  7. D

    Retro Game StarCruiser7

    Most people will not know the original Star Raiders and will not want to read the manual. Therefore, I would like to post a short tutorial here so that you know how to play Star Cruiser 7. Start Star Cruiser 7 and in the first menu choose the "novice" mission. This is a good choice for the...
  8. D

    Retro Game StarCruiser7

    I've added sound effects to the game and fixed some bugs.
  9. D

    Retro Game StarCruiser7

    Thank you, i've fixed that.
  10. D

    Retro Game StarCruiser7

    @gamebrew have you tried it? I am interested in feedback on different hardware.
  11. D

    Retro Game StarCruiser7

    Hi! I've made a remake of famous Star Raiders for the 3DS with 3d graphics. You can find it on github https://github.com/dotMizi/StarCruiser7 It makes use of the 3d capabilities of the 3DS. You can make it from source or download the 3dsx file.
Top