aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/extantz/extantz.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Move executables to the bin directory.David Walter Seikel2016-03-281-1/+3
|
* Resizing cleanup.David Walter Seikel2016-03-131-10/+8
|
* Different way of dealing with object popups, run a timer, check for mouse ↵David Walter Seikel2016-03-131-0/+8
| | | | inactivity.
* Update to new eo_* syntax.David Walter Seikel2016-03-131-5/+7
|
* Put the ~/.SledHamr/ creation code into all three main binaries. sighDavid Walter Seikel2016-02-061-14/+1
|
* Create our home directories, if not already created.David Walter Seikel2016-02-061-0/+17
|
* More Lua network messages clean ups.David Walter Seikel2016-02-051-3/+3
| | | | | | | Highlights - Properly deal with ( and ). "return x" -> "return(x)". No more special casing.
* The next step in cleaning up the network Lua messages.David Walter Seikel2016-02-051-4/+4
|
* I have no idea how long this has NOT been needed for.David Walter Seikel2016-02-041-2/+0
|
* Random cleanups.David Walter Seikel2016-01-211-7/+5
|
* Rejig the structure of windows a lot.David Walter Seikel2016-01-211-43/+34
|
* Rewrite the layers description.David Walter Seikel2016-01-211-22/+86
|
* Backgrounds don't have image_fill_outside.David Walter Seikel2016-01-211-1/+0
|
* Evil hack around ELM's problem with lack of toolbar item icons.David Walter Seikel2016-01-211-5/+5
|
* Commenting out no longer needed code, which I should probably just delete soon.David Walter Seikel2016-01-201-1/+3
|
* Banging on the window stuff until the menus behave (mostly).David Walter Seikel2016-01-201-117/+82
| | | | We'll live with the suckiness of menus and toolbars for now.
* Clean up LSL command and argument passing.David Walter Seikel2016-01-191-11/+12
|
* Unify the message sending code a bit.David Walter Seikel2016-01-171-3/+3
|
* Clean up logging, removing most of the printf's.David Walter Seikel2016-01-031-4/+2
|
* Oops, uncomment this, so that file open works again.David Walter Seikel2016-01-031-1/+1
|
* Stop the compile warnings, and clean out commented code.David Walter Seikel2016-01-031-45/+6
|
* Delay some of the Extantz startup to make things prettier.David Walter Seikel2016-01-031-16/+131
|
* Beat the server connection manegement into shape.David Walter Seikel2016-01-031-111/+70
|
* Fix menus, with an evil hack.David Walter Seikel2015-12-311-91/+61
| | | | | | | | | | ELM managed to break the main menu, it never showed, no matter what I did, but the woMan menus worked fine. Refactored both so they use generic functions for building the menu. Put the main menu in it's own window, which mostly works fine. I gotta rip the elm menu system a new one, or just drop it entirely and build my own.
* Replace cube and sphere code with Evas_3D primitives.David Walter Seikel2015-12-311-1/+0
| | | | Clicking on them works again. B-)
* Failed experiment, but let's keep it for now.David Walter Seikel2015-09-111-1/+3
|
* Update to latest API changes.David Walter Seikel2015-09-111-1/+2
|
* Fix up yet another API break.David Walter Seikel2015-06-181-5/+5
| | | | These APIs will settle down soonish, they promise.
* The new way to beg for the proper 3D graphics engine.David Walter Seikel2015-03-221-4/+3
|
* Allow dropping the Evas_3D stuff out of the compile.David Walter Seikel2015-03-221-0/+14
|
* We don't need no stinkin' eo_unrefs. Anymore. Though leave them there, in ↵David Walter Seikel2015-03-221-1/+1
| | | | case they change their mind again.
* Update to new file getting API.David Walter Seikel2014-08-301-1/+1
|
* It seems that now we have to kick Elm harder to get GL out of it.David Walter Seikel2014-08-101-0/+1
|
* Update to post release API change. So much for stable API to collaborate ↵David Walter Seikel2014-06-111-2/+2
| | | | with. sigh
* Load and rez stuffs in an idler, also fix some bugs in that part.David Walter Seikel2014-06-021-2/+3
|
* Get the from disk sim loading to work.David Walter Seikel2014-06-011-13/+45
| | | | Still an odd problem with sonic that doesn't make sense.
* Slightly less half arsed stuffs creation.David Walter Seikel2014-05-301-1/+1
|
* Half arsed generic stuffs creation.David Walter Seikel2014-05-291-1/+2
|
* The UUID faking code is common enough to stick it in a macro.David Walter Seikel2014-05-281-1/+1
|
* Pretend to login, and some commenting out so it all compiles. Fix it up later.David Walter Seikel2014-05-241-0/+6
|
* Rewrite the LuaSL script running stuff (twice lol), plus much related ↵David Walter Seikel2014-05-231-1/+1
| | | | tweakage and cleanups.
* Found a way to deal with the PACKAGE_* stuff outside of Elm. It's undocumented.David Walter Seikel2014-05-201-18/+9
|
* The results of a session with valgrind.David Walter Seikel2014-05-201-2/+4
| | | | | | I'm surprised that this highly experimental code, built with chewing gum and chicken wire, had so little problems, and most of those where leaks. The majority of problems reported are from external libraries.
* Clean up the server startup and connection a bit.David Walter Seikel2014-05-181-23/+17
|
* Wait a second before extantz tries to reconnect.David Walter Seikel2014-05-171-1/+12
|
* Remove excess sleep and env setting.David Walter Seikel2014-05-171-14/+2
|
* Use the new server connector, and some related movements.David Walter Seikel2014-05-171-40/+52
|
* A little clean up.David Walter Seikel2014-05-161-3/+2
|
* For llDialog(), add a simple implementation to LSLGuiMess, and call it badly ↵David Walter Seikel2014-05-161-10/+10
| | | | | | from extantz. Still trying to debug this.
* Stick the connection to the love server in the GuiLua structure, and related ↵David Walter Seikel2014-05-161-14/+14
| | | | tweakage.