aboutsummaryrefslogtreecommitdiffstats
path: root/src (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-09-12- Windows resources (.rc) reduced to the icontobigun10-289/+133
- Texture resource names are now directly written to resources.inc - Fonts are no resources anymore. They are moved to game/fonts and can be changed to support multiple charsets (until the TTF part is finished). Fonts are registered in fonts/fonts.in git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1367 b956fd51-792f-4845-bead-9b4dfca2ff2c
2008-09-11Define BSD changed to FreeBSD as Darwin also defines BSDtobigun2-5/+5
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1366 b956fd51-792f-4845-bead-9b4dfca2ff2c
2008-09-11-Creation of default directories (songs, covers) working again.tobigun1-4/+4
- BSD redefined to FreeBSD git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1365 b956fd51-792f-4845-bead-9b4dfca2ff2c
2008-09-11SongDir1 template in config.ini is now created on Unix tootobigun1-1/+2
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1364 b956fd51-792f-4845-bead-9b4dfca2ff2c
2008-09-11INSTALL_DIR removed from darwin config filetobigun1-6/+0
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1363 b956fd51-792f-4845-bead-9b4dfca2ff2c
2008-09-11small change of paths.inc targettobigun1-5/+9
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1362 b956fd51-792f-4845-bead-9b4dfca2ff2c
2008-09-11GetExecution dirs forced to absolute pathtobigun1-1/+1
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1361 b956fd51-792f-4845-bead-9b4dfca2ff2c
2008-09-10Halt if the initial SDL_SetVideoMode() in InitializeScreen() call failstobigun1-2/+1
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1359 b956fd51-792f-4845-bead-9b4dfca2ff2c
2008-09-10FreeBSD compatibility fixes:tobigun15-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
2008-09-09FreeBSD compatibility fixes:tobigun1-1/+1
- 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
2008-09-09ulcd and debug stuff removedtobigun2-84/+0
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1355 b956fd51-792f-4845-bead-9b4dfca2ff2c
2008-09-09- better conformance of Makefiles to GNU coding standardstobigun3-60/+122
- 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
2008-09-07fixed typok-m_schindler1-1/+1
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1350 b956fd51-792f-4845-bead-9b4dfca2ff2c
2008-09-06All range-check errors should be fixed now, and disabling range-checking is ↵tobigun1-4/+0
not necessary anymore. git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1349 b956fd51-792f-4845-bead-9b4dfca2ff2c
2008-09-06Delphi-mode set for FPCtobigun31-10/+164
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1348 b956fd51-792f-4845-bead-9b4dfca2ff2c
2008-09-06range-check fix:tobigun1-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
2008-09-06- fixed out-of-range error. In NewNote() ↵tobigun1-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
2008-09-04not needed test on presence of dir removed. Courtesy to tobigunk-m_schindler1-2/+1
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1345 b956fd51-792f-4845-bead-9b4dfca2ff2c
2008-09-04minor updatek-m_schindler1-1/+1
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1343 b956fd51-792f-4845-bead-9b4dfca2ff2c
2008-09-03Fixing a crash with Access violation if the folder Resources is missing in ↵k-m_schindler1-0/+2
Application Support/UltraStarDeluxe git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1341 b956fd51-792f-4845-bead-9b4dfca2ff2c
2008-09-02Moved: The folder classes has been renamed to basemogguh66-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
2008-09-02- removed configure options --enable-local/globaltobigun7-44/+59
- 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
2008-09-01- suffix configure option removedtobigun3-7/+5
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1337 b956fd51-792f-4845-bead-9b4dfca2ff2c
2008-09-01added start path "." for find. Mac OS X still needs it.k-m_schindler1-2/+2
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1336 b956fd51-792f-4845-bead-9b4dfca2ff2c
2008-09-01- new configure/make layout: tobigun1-0/+206
- 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
2008-09-01- new configure/make layout: tobigun15-2049/+13
- 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
2008-08-31minor change: identation spelling, co code changek-m_schindler3-171/+176
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1333 b956fd51-792f-4845-bead-9b4dfca2ff2c
2008-08-27- use lower-case paths: songs/themes/languages/etc.tobigun1-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
2008-08-27use lower-case paths: songs/themes/languages/etc.tobigun1-13/+13
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1328 b956fd51-792f-4845-bead-9b4dfca2ff2c
2008-08-27moving Xcode project to dists/xcodek-m_schindler8-6215/+0
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1327 b956fd51-792f-4845-bead-9b4dfca2ff2c
2008-08-27With the current RC-file approach the fonts and the png-icon must be within ↵tobigun3-69/+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
2008-08-27Content of macosx/Wrapper moved to macosx. Wrapper deletedk-m_schindler4-1/+1
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1325 b956fd51-792f-4845-bead-9b4dfca2ff2c
2008-08-27minor update of the config filek-m_schindler1-6/+5
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1324 b956fd51-792f-4845-bead-9b4dfca2ff2c
2008-08-27name and path change of icon filek-m_schindler2-2/+2
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1323 b956fd51-792f-4845-bead-9b4dfca2ff2c
2008-08-27- bamboo stuff moved to dists/bambootobigun6-64/+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
2008-08-27resource-file creation script updatetobigun2-2/+2
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1316 b956fd51-792f-4845-bead-9b4dfca2ff2c
2008-08-27project-files updated for new layouttobigun10-912/+389
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1315 b956fd51-792f-4845-bead-9b4dfca2ff2c
2008-08-27rename MacOSX part2k-m_schindler12-0/+0
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1313 b956fd51-792f-4845-bead-9b4dfca2ff2c
2008-08-27rename MacOSX part1k-m_schindler12-0/+0
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1312 b956fd51-792f-4845-bead-9b4dfca2ff2c
2008-08-27rename UnitTestsk-m_schindler4-0/+0
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1311 b956fd51-792f-4845-bead-9b4dfca2ff2c
2008-08-27rename Menu part2k-m_schindler9-0/+0
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1310 b956fd51-792f-4845-bead-9b4dfca2ff2c
2008-08-27rename Menu part1k-m_schindler9-0/+0
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1309 b956fd51-792f-4845-bead-9b4dfca2ff2c
2008-08-27rename Classes part2k-m_schindler65-0/+0
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1308 b956fd51-792f-4845-bead-9b4dfca2ff2c
2008-08-27rename Classes part1k-m_schindler65-0/+0
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1307 b956fd51-792f-4845-bead-9b4dfca2ff2c
2008-08-27rename Screen part2k-m_schindler34-0/+0
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1306 b956fd51-792f-4845-bead-9b4dfca2ff2c
2008-08-27rename Screen part1k-m_schindler34-0/+0
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1305 b956fd51-792f-4845-bead-9b4dfca2ff2c
2008-08-27lazarus (win) project file updatedtobigun1-1/+1
- adjustment for Game/Code -> src change - executable is now ultrastardx.exe instead of UltraStar.exe git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1304 b956fd51-792f-4845-bead-9b4dfca2ff2c
2008-08-27adjustment to new src-folder layout, more to followtobigun2-36/+36
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1303 b956fd51-792f-4845-bead-9b4dfca2ff2c
2008-08-27Reordering of the directories[1]: moving Game/Code to srck-m_schindler242-0/+121770
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1302 b956fd51-792f-4845-bead-9b4dfca2ff2c