aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* fpcmake is optionaltobigun2008-09-102-8/+0
| | | | git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1360 b956fd51-792f-4845-bead-9b4dfca2ff2c
* Halt if the initial SDL_SetVideoMode() in InitializeScreen() call failstobigun2008-09-101-2/+1
| | | | git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1359 b956fd51-792f-4845-bead-9b4dfca2ff2c
* INSTALL_DATA -> INSTALL_PROGRAMtobigun2008-09-101-1/+1
| | | | git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1358 b956fd51-792f-4845-bead-9b4dfca2ff2c
* FreeBSD compatibility fixes:tobigun2008-09-1015-102/+92
| | | | | | | - {$IF Defined(Linux)} -> {$IF Defined(Linux) or Defined(BSD)} or {$IF Defined(UNIX)} - config-freebsd.inc added git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1357 b956fd51-792f-4845-bead-9b4dfca2ff2c
* FreeBSD compatibility fixes:tobigun2008-09-094-9/+45
| | | | | | | | - libpng -> libpng12 - arithmetic expressions with no argument do not work $(()) -> check for empty minor/major/release version added (error occurred with portaudio. The version is simply 19) - duplicates in linker flags removed (-L...) git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1356 b956fd51-792f-4845-bead-9b4dfca2ff2c
* ulcd and debug stuff removedtobigun2008-09-092-84/+0
| | | | git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1355 b956fd51-792f-4845-bead-9b4dfca2ff2c
* Gentoo live ebuild and 1.1_alpha ebuild added for testingtobigun2008-09-093-0/+176
| | | | git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1354 b956fd51-792f-4845-bead-9b4dfca2ff2c
* configure update (svn:eol-style=native does not work here as the ↵tobigun2008-09-092-231/+320
| | | | | | line-endings of the auto-generated file are not consistent) git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1353 b956fd51-792f-4845-bead-9b4dfca2ff2c
* autogen.sh moved back to roottobigun2008-09-094-13/+5
| | | | git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1352 b956fd51-792f-4845-bead-9b4dfca2ff2c
* - better conformance of Makefiles to GNU coding standardstobigun2008-09-0910-433/+758
| | | | | | | | | | | | | | - bindir/prefix, etc. can be changed anytime make is performed and is not hardcoded on configure time anymore - paths are written to the intermediate paths.inc file (instead of config-xyz.inc) - binary is not stripped anymore - fpc.m4 rewrite - additional options like heaptrace, range-checks - noexecstack workaround - some more changes - configure.ac helper functions moved to ax_ectract_version.m4 and pkg_config_utils.m4 - some icons moved from artwork to icons git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1351 b956fd51-792f-4845-bead-9b4dfca2ff2c
* fixed typok-m_schindler2008-09-071-1/+1
| | | | git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1350 b956fd51-792f-4845-bead-9b4dfca2ff2c
* All range-check errors should be fixed now, and disabling range-checking is ↵tobigun2008-09-061-4/+0
| | | | | | not necessary anymore. git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1349 b956fd51-792f-4845-bead-9b4dfca2ff2c
* Delphi-mode set for FPCtobigun2008-09-0631-10/+164
| | | | git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1348 b956fd51-792f-4845-bead-9b4dfca2ff2c
* range-check fix:tobigun2008-09-061-6/+8
| | | | | | | "array[0..0] of TType" changed to "array[0 .. (MaxInt div SizeOf(TType))-1] of TType" git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1347 b956fd51-792f-4845-bead-9b4dfca2ff2c
* - fixed out-of-range error. In NewNote() ↵tobigun2008-09-061-4/+12
| | | | | | CurrentPlayer.Note[CurrentPlayer.HighNote] was accessed although CurrentPlayer.Note is empty (always the case at the beginning of a song). git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1346 b956fd51-792f-4845-bead-9b4dfca2ff2c
* not needed test on presence of dir removed. Courtesy to tobigunk-m_schindler2008-09-041-2/+1
| | | | git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1345 b956fd51-792f-4845-bead-9b4dfca2ff2c
* make macosx-disk-image renamed to make macosx-dmg; new: make macosx-clean ↵k-m_schindler2008-09-041-4/+16
| | | | | | removes bundle AND diskimage git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1344 b956fd51-792f-4845-bead-9b4dfca2ff2c
* minor updatek-m_schindler2008-09-041-1/+1
| | | | git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1343 b956fd51-792f-4845-bead-9b4dfca2ff2c
* songs folder created in Application Support/UltraStarDeluxe/Resources. ↵k-m_schindler2008-09-031-1/+4
| | | | | | creation of disk image fixed git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1342 b956fd51-792f-4845-bead-9b4dfca2ff2c
* Fixing a crash with Access violation if the folder Resources is missing in ↵k-m_schindler2008-09-031-0/+2
| | | | | | Application Support/UltraStarDeluxe git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1341 b956fd51-792f-4845-bead-9b4dfca2ff2c
* Mac OS X icon improvedk-m_schindler2008-09-032-0/+0
| | | | git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1340 b956fd51-792f-4845-bead-9b4dfca2ff2c
* Moved: The folder classes has been renamed to basemogguh2008-09-0266-66/+66
| | | | | | Updated: ultrastardx.dpr has been changed accordingly git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1339 b956fd51-792f-4845-bead-9b4dfca2ff2c
* - removed configure options --enable-local/globaltobigun2008-09-0210-194/+146
| | | | | | | | - instead for - global build: just type "make" and "make install" - local build: just type "make" and start "game/ultrastardx" git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1338 b956fd51-792f-4845-bead-9b4dfca2ff2c
* - suffix configure option removedtobigun2008-09-013-7/+5
| | | | git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1337 b956fd51-792f-4845-bead-9b4dfca2ff2c
* added start path "." for find. Mac OS X still needs it.k-m_schindler2008-09-011-2/+2
| | | | git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1336 b956fd51-792f-4845-bead-9b4dfca2ff2c
* - new configure/make layout: tobigun2008-09-012-0/+232
| | | | | | | | | | | | | - configure/main-makefile moved to root-dir - configure-script checked in (no need to call autogen.sh on first run) - autogen.sh, m4, install.sh etc. moved to dists/autogen/ - config.guess/sub for canonical builds - unit-tests moved to test - removed delphi subdir in portaudio/-mixer - COPYING.txt/AUTHORS.txt/... added - dists/delphi7/2005 added git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1335 b956fd51-792f-4845-bead-9b4dfca2ff2c
* - new configure/make layout: tobigun2008-09-0122-324/+10792
| | | | | | | | | | | | | - configure/main-makefile moved to root-dir - configure-script checked in (no need to call autogen.sh on first run) - autogen.sh, m4, install.sh etc. moved to dists/autogen/ - config.guess/sub for canonical builds - unit-tests moved to test - removed delphi subdir in portaudio/-mixer - COPYING.txt/AUTHORS.txt/... added - dists/delphi7/2005 added git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1334 b956fd51-792f-4845-bead-9b4dfca2ff2c
* minor change: identation spelling, co code changek-m_schindler2008-08-313-171/+176
| | | | git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1333 b956fd51-792f-4845-bead-9b4dfca2ff2c
* little updatemogguh2008-08-291-49/+101
| | | | git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1330 b956fd51-792f-4845-bead-9b4dfca2ff2c
* - use lower-case paths: songs/themes/languages/etc.tobigun2008-08-271-19/+18
| | | | | | - adjustment for build-environment in game git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1329 b956fd51-792f-4845-bead-9b4dfca2ff2c
* use lower-case paths: songs/themes/languages/etc.tobigun2008-08-271-13/+13
| | | | git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1328 b956fd51-792f-4845-bead-9b4dfca2ff2c
* moving Xcode project to dists/xcodek-m_schindler2008-08-278-0/+0
| | | | git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1327 b956fd51-792f-4845-bead-9b4dfca2ff2c
* With the current RC-file approach the fonts and the png-icon must be within ↵tobigun2008-08-2714-33/+33
| | | | | | the game/resources directory. They will be moved to a better location after the RC-stuff is removed. git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1326 b956fd51-792f-4845-bead-9b4dfca2ff2c
* Content of macosx/Wrapper moved to macosx. Wrapper deletedk-m_schindler2008-08-274-1/+1
| | | | git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1325 b956fd51-792f-4845-bead-9b4dfca2ff2c
* minor update of the config filek-m_schindler2008-08-271-6/+5
| | | | git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1324 b956fd51-792f-4845-bead-9b4dfca2ff2c
* name and path change of icon filek-m_schindler2008-08-272-2/+2
| | | | git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1323 b956fd51-792f-4845-bead-9b4dfca2ff2c
* Graphics -> graphicstobigun2008-08-271-0/+0
| | | | git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1322 b956fd51-792f-4845-bead-9b4dfca2ff2c
* credit-images moved to /game/resources/creditstobigun2008-08-2723-0/+0
| | | | git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1321 b956fd51-792f-4845-bead-9b4dfca2ff2c
* - bamboo stuff moved to dists/bambootobigun2008-08-276-10/+0
| | | | | | - debian pkg-data moved to dists/debian git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1320 b956fd51-792f-4845-bead-9b4dfca2ff2c
* icons renamedtobigun2008-08-273-0/+0
| | | | git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1319 b956fd51-792f-4845-bead-9b4dfca2ff2c
* - dists directory createdtobigun2008-08-274-0/+0
| | | | | | - icons moved to icons directory git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1318 b956fd51-792f-4845-bead-9b4dfca2ff2c
* build-environment moved from root to game-dirtobigun2008-08-27288-0/+0
| | | | git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1317 b956fd51-792f-4845-bead-9b4dfca2ff2c
* resource-file creation script updatetobigun2008-08-272-2/+2
| | | | git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1316 b956fd51-792f-4845-bead-9b4dfca2ff2c
* project-files updated for new layouttobigun2008-08-2710-912/+389
| | | | git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1315 b956fd51-792f-4845-bead-9b4dfca2ff2c
* Artwork/Game/Modis/Tools changed to lower casetobigun2008-08-2723-0/+0
| | | | git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1314 b956fd51-792f-4845-bead-9b4dfca2ff2c
* rename MacOSX part2k-m_schindler2008-08-2712-0/+0
| | | | git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1313 b956fd51-792f-4845-bead-9b4dfca2ff2c
* rename MacOSX part1k-m_schindler2008-08-2712-0/+0
| | | | git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1312 b956fd51-792f-4845-bead-9b4dfca2ff2c
* rename UnitTestsk-m_schindler2008-08-274-0/+0
| | | | git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1311 b956fd51-792f-4845-bead-9b4dfca2ff2c
* rename Menu part2k-m_schindler2008-08-279-0/+0
| | | | git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1310 b956fd51-792f-4845-bead-9b4dfca2ff2c
* rename Menu part1k-m_schindler2008-08-279-0/+0
| | | | git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1309 b956fd51-792f-4845-bead-9b4dfca2ff2c