Merge branch 'master' of ssh://svjatoslav.eu:10006/home/n0/git/qbasicapps
[qbasicapps.git] / index.org
1 #+TITLE:  QBasicApps - collection of applications mostly written in MS QBasic for DOS environment
2
3 -----
4 - Clone GIT repository using commanad:
5   : git clone http://www2.svjatoslav.eu/git/qbasicapps.git
6
7 - [[http://www2.svjatoslav.eu/gitweb/?p=qbasicapps.git;a=snapshot;h=HEAD;sf=tgz][Download latest snapshot in TAR GZ format]]
8
9 - These programs are free software; you can redistribute them and/or
10   modify them under the terms of version 3 of the [[https://www.gnu.org/licenses/lgpl.html][GNU Lesser General
11   Public License]] or later as published by the Free Software
12   Foundation.
13
14 - Programs author:
15   - Svjatoslav Agejenko
16   - Homepage: http://svjatoslav.eu
17   - Email: mailto://svjatoslav@svjatoslav.eu
18
19 - [[http://www.svjatoslav.eu/projects/][Other software projects hosted at svjatoslav.eu]]
20
21
22 This collection contains lots of applications:
23 + Games.
24 + Graphics tests (2D/3D/4D).
25 + Algorithms tests.
26 + Utilities.
27
28 I wrote them long time ago mostly in QBasic, some in x86 assembly for
29 use under DOS operating system.
30
31
32 Few sample applications from the package:
33
34 * Checkers
35 Play checkers against the computer with any board size and any amount
36 of caps. Does thinking by recursively testing many possible scenarios
37 with any depth.
38
39 Since it is slow QBasic implementation, it isn't practical to play
40 with many caps or big thinking depth, for reasonable responce time.
41
42 See directory:
43 : games/checkers
44
45 [[file:games/checkers/screenshot.png]]
46
47 * Platform game
48 Jump around, collect coins and dont touch snails! Inspired by Super
49 Mario Bros.
50
51 See directory:
52 : games/platform
53
54 [[file:games/platform/screenshot.png]]
55
56 * 3D Synthezier
57 Parses scene definition language and creates 3D world based on
58 it. Result will be in a [[https://en.wikipedia.org/wiki/Wavefront_.obj_file][wavefront obj file]], witch can be then
59 visualized using external renderer.
60
61 See directory:
62 : graphics/3D/3D Synthezier
63
64 [[file:graphics/3D/3D Synthezier/doc/rectangular city, 1.jpeg]]
65
66 [[file:graphics/3D/3D Synthezier/doc/hexagonal city, 2.jpeg]]
67
68 [[file:graphics/3D/3D Synthezier/doc/index.html][Read more]]
69
70 * (document settings) :noexport:
71 ** use dark style for TWBS-HTML exporter
72 #+HTML_HEAD: <link href="https://bootswatch.com/4/darkly/bootstrap.min.css" rel="stylesheet">
73 #+HTML_HEAD: <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
74 #+HTML_HEAD: <script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.1/js/bootstrap.min.js"></script>"
75 #+HTML_HEAD: <style type="text/css">
76 #+HTML_HEAD:   footer {background-color: #111 !important;}
77 #+HTML_HEAD:   pre {background-color: #111; color: #ccc;}
78 #+HTML_HEAD: </style>