aboutsummaryrefslogtreecommitdiffstats
path: root/Lua/src/lua (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-12-12removed to-do I forgot to remove in last commitwhiteshark01-3/+0
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/branches/experimental@2022 b956fd51-792f-4845-bead-9b4dfca2ff2c
2009-12-12fixed plugin loadingwhiteshark02-10/+14
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/branches/experimental@2021 b956fd51-792f-4845-bead-9b4dfca2ff2c
2009-12-11merged trunk into lua branchwhiteshark02-28/+46
plugin loading is disabled atm because of a bug reading the files (lua may be the reason). Reading the files in usdx and passing the contents to lua may solve this git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/branches/experimental@2019 b956fd51-792f-4845-bead-9b4dfca2ff2c
2009-12-09fixed lua function ScreenSing.GetLineswhiteshark01-1/+1
it may return an old song now, when it is called from at uncommon parts of code. git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/branches/experimental@2007 b956fd51-792f-4845-bead-9b4dfca2ff2c
2009-12-09implements Usdx.Unhookwhiteshark01-10/+103
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/branches/experimental@2005 b956fd51-792f-4845-bead-9b4dfca2ff2c
2009-08-30fixed missing brackedwhiteshark01-1/+1
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/branches/experimental@1935 b956fd51-792f-4845-bead-9b4dfca2ff2c
2009-08-293 new lua functionwhiteshark01-14/+191
ScreenSing.BeatsToSeconds ScreenSing.SecondsToBeat (both based on cur. song bpm) ScreenSing.GetSongLines returns a table containing the songs line information git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/branches/experimental@1934 b956fd51-792f-4845-bead-9b4dfca2ff2c
2009-08-22usdx module prefix (Usdx.) is now case insensitive (in require statement)whiteshark01-2/+46
replaced luas require function with a custom one to allow more compact require statement. the custom function does not return loaded modules, but is able to load more than one module at once, e.g.: require('math', 'Usdx.Log') luas standard require function is in _require and can still be used. git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/branches/experimental@1933 b956fd51-792f-4845-bead-9b4dfca2ff2c
2009-07-144 new lua interface function for module ScreenSingwhiteshark02-3/+171
new procedure in ULuaUtils lua_PushRect git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/branches/experimental@1846 b956fd51-792f-4845-bead-9b4dfca2ff2c
2009-05-23new ULuaUtils procedure: lua_PushBinIntwhiteshark02-3/+106
new functions in ScreenSing lua module ScreenSing.GetSettings ScreenSing.SetSettings 3 new settings in UScreenSing that needs to be implemented LyrcsVisible, NotesVisible and PlayerEnabled git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/branches/experimental@1769 b956fd51-792f-4845-bead-9b4dfca2ff2c
2009-05-22added ScreenSing modulewhiteshark01-0/+105
added call of party modes OnSing 2 new lua functions: ScreenSing.GetScores() ScreenSing.Finish git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/branches/experimental@1756 b956fd51-792f-4845-bead-9b4dfca2ff2c
2009-05-17fix crash in last revision when an error is raised during plugin_initwhiteshark01-1/+0
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/branches/experimental@1750 b956fd51-792f-4845-bead-9b4dfca2ff2c
2009-05-17better error reporting during plugin loadwhiteshark01-0/+3
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/branches/experimental@1749 b956fd51-792f-4845-bead-9b4dfca2ff2c
2009-05-16new party round ranking systemwhiteshark01-9/+43
if 3 teams play winner(s) gets 3 points, those who placed second gets 1 point. (third 0 points ;) Usdx.Party.SetWinner renamed to Usdx.Party.SetRoundRanking UParty and ULuaParty adapted to new system git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/branches/experimental@1740 b956fd51-792f-4845-bead-9b4dfca2ff2c
2009-05-16resolve some warningswhiteshark02-3/+3
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/branches/experimental@1735 b956fd51-792f-4845-bead-9b4dfca2ff2c
2009-05-16some minor fixes in lua party functionswhiteshark01-0/+6
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/branches/experimental@1734 b956fd51-792f-4845-bead-9b4dfca2ff2c
2009-05-16some crash preventionwhiteshark01-7/+7
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/branches/experimental@1733 b956fd51-792f-4845-bead-9b4dfca2ff2c
2009-05-16add Lua_GetOwner to ULuaUtils (function returns plugin by lua state)whiteshark04-54/+121
use new function in ULuaParty and ULuaUsdx new lua function: Usdx.ShutMeDown to give plugins the ability to unload git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/branches/experimental@1732 b956fd51-792f-4845-bead-9b4dfca2ff2c
2009-05-16fixed bug in UHookableEvent that caused a crash when owning plugin of last ↵whiteshark01-3/+6
hook is unloaded git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/branches/experimental@1730 b956fd51-792f-4845-bead-9b4dfca2ff2c
2009-05-13svn properties changedwhiteshark05-10/+10
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/branches/experimental@1723 b956fd51-792f-4845-bead-9b4dfca2ff2c
2009-05-04automaticaly remove hooks from unloaded pluginswhiteshark01-1/+23
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/branches/experimental@1712 b956fd51-792f-4845-bead-9b4dfca2ff2c
2009-05-04prevent functions from plugins w/ unopened lua state from being calledwhiteshark01-1/+3
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/branches/experimental@1711 b956fd51-792f-4845-bead-9b4dfca2ff2c
2009-05-04old lua test stuff by hawkear removed or commentedwhiteshark05-72/+237
new function: Party.SetWinner sets winner of current round new unit ULuaUtils w/ some functions that are or may become useful moved Lua_ClearStack and Lua_ToBinInt to ULuaUtils added first hooks (have a look at hooks.txt in game/plugins until documentation is finished) lua module for TextGl written and finished lua testfile (game/scripts/main.lua) ported to new interface, see game/plugins/LuaTest.usdx git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/branches/experimental@1709 b956fd51-792f-4845-bead-9b4dfca2ff2c
2009-05-02Display.AbortScreenChange added (used in ScreenSing and ScreenPartyOptions)whiteshark02-9/+8
some minor fixes in UParty, ULuaParty and ULuaUsdx adapting of UScreenPartyNewRound, UScreenPartyPlayer and UScreenPartyOption nearly finished git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/branches/experimental@1705 b956fd51-792f-4845-bead-9b4dfca2ff2c
2009-04-27first attempt to implement the lua wrapper for party gamewhiteshark01-0/+368
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/branches/experimental@1702 b956fd51-792f-4845-bead-9b4dfca2ff2c
2009-04-20lua gl lib functions by hawkear copied to interface partwhiteshark01-45/+88
=> gl can be loaded by plugins with require git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/branches/experimental@1690 b956fd51-792f-4845-bead-9b4dfca2ff2c
2009-04-20hookable event nearly finished(unhook function missing)whiteshark03-37/+121
plugin Id now written to the lua states registry Usdx.Version added, Usdx.Hook added git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/branches/experimental@1689 b956fd51-792f-4845-bead-9b4dfca2ff2c
2009-04-19fixed lua module loadingwhiteshark03-30/+125
Usdx table will be created and has one function (Time()) for now git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/branches/experimental@1687 b956fd51-792f-4845-bead-9b4dfca2ff2c
2009-04-17lua plugin interface implementedwhiteshark02-0/+1131
it offers some basic environment to the loaded plugins see ./game/plugins/PluginDescription.odt for further explantation. git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/branches/experimental@1674 b956fd51-792f-4845-bead-9b4dfca2ff2c
2009-03-21lua stuff moved to experimental foldertobigun4-0/+1763
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/branches/experimental@1642 b956fd51-792f-4845-bead-9b4dfca2ff2c