summaryrefslogtreecommitdiffstats
path: root/uisimulator/sdl
AgeCommit message (Collapse)AuthorFilesLines
2006-10-27Next step of Makefile tuning: * Use 'make' internal commands for printing ↵Jens Arnold1-8/+5
messages. Saves build time especially on cygwin. * SILENT variable used in more places. * Bitmap build system uses one Makefille less. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11369 a1c6a512-1295-4272-9138-f99709370657
2006-10-26Allow the Sansa e200 UI simulator to be built. Thanks to Andre Smith for the ↵Barry Wardell3-4/+18
nice image of the Sansa. Lots more to be done including testing and tweaking the keymaps and modifying the plugins for the Sansa's 176x220 LCD. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11351 a1c6a512-1295-4272-9138-f99709370657
2006-10-23Consistent style of 'make' messages. Always use ranlib after ar.Jens Arnold1-1/+2
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11322 a1c6a512-1295-4272-9138-f99709370657
2006-10-22Make the SDL simulator a console app on cygwin, and circumvent SDL_main. ↵Jens Arnold1-0/+5
Debug output finally appears on the console again. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11309 a1c6a512-1295-4272-9138-f99709370657
2006-10-21Fix build errors in H100 and H300 UI simulator.Barry Wardell1-1/+1
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11306 a1c6a512-1295-4272-9138-f99709370657
2006-10-21Simplify the numeric keypad -> device button mapping in the UI simulator for ↵Barry Wardell1-66/+332
all targets. Split the mapping by target keypad type, rather that by what button a target has. Also, add a mapping for the Sansa e200 series. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11304 a1c6a512-1295-4272-9138-f99709370657
2006-10-16Added necessary bits & pieces for building an ipod 3rd gen simulator.Jens Arnold2-0/+12
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11239 a1c6a512-1295-4272-9138-f99709370657
2006-09-16New scheduler, with priorities for swcodec platforms. Frequent taskMiika Pekkarinen1-4/+9
switching should be more efficient and tasks are stored in linked lists to eliminate unnecessary task switching to improve performance. Audio should no longer skip on swcodec targets caused by too CPU hungry UI thread or background threads. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10958 a1c6a512-1295-4272-9138-f99709370657
2006-09-03Oops - fix warnings and add a simulator version of remove_thread_on_core()Daniel Ankers1-6/+6
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10876 a1c6a512-1295-4272-9138-f99709370657
2006-09-03Fix simulation of threads across multiple coresDaniel Ankers1-1/+7
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10875 a1c6a512-1295-4272-9138-f99709370657
2006-08-19Add new build target for iriver H10 5/6Gb.Barry Wardell2-1/+11
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10661 a1c6a512-1295-4272-9138-f99709370657
2006-08-18Iriver iFP7xx support in simulator.Tomasz Malesinski3-0/+15
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10650 a1c6a512-1295-4272-9138-f99709370657
2006-08-15Add remote_type() to the uisim for h100/h300 builds. Use the "t" key to ↵Hristo Kovachev1-0/+36
switch between remote types (only changes the remote_type()'s return value for now) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10577 a1c6a512-1295-4272-9138-f99709370657
2006-08-11Patch #5731 by Barry Wardell: more iriver h10 work. Thanks!Hristo Kovachev2-0/+13
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10521 a1c6a512-1295-4272-9138-f99709370657
2006-08-03iriver H10 fixes by BarryDaniel Stenberg1-1/+10
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10450 a1c6a512-1295-4272-9138-f99709370657
2006-07-31Adjust the counter even higher so it should work quite stable now.Miika Pekkarinen1-1/+1
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10385 a1c6a512-1295-4272-9138-f99709370657
2006-07-31Prevent simulator SDL audio skipping under OS X (FS#5748 by EmanuelMiika Pekkarinen1-1/+0
Zephir). git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10384 a1c6a512-1295-4272-9138-f99709370657
2006-07-31Prevent the simulator SDL audio skipping under Linux.Miika Pekkarinen1-1/+7
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10383 a1c6a512-1295-4272-9138-f99709370657
2006-07-28X5 remote LCD drawing. This will break target linking atm - ↵Jens Arnold5-16/+18
lcd_remote_update[_rect]() are not yet implemented. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10347 a1c6a512-1295-4272-9138-f99709370657
2006-07-27Moved the X5 button driver to the target treeLinus Nielsen Feltzing1-1/+1
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10339 a1c6a512-1295-4272-9138-f99709370657
2006-07-22Bind F8 key to "on" button (usefull if you don't have a numpad)Antoine Cellerier1-0/+1
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10287 a1c6a512-1295-4272-9138-f99709370657
2006-07-19Simulator: map ESC key to POWER button as a way to exit plugins. Patch #5681 ↵Peter D'Hoye1-0/+6
by Rani Hod (RaeNye). git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10244 a1c6a512-1295-4272-9138-f99709370657
2006-06-03Adjustments for simulating a backlight-modded Ondio.Jens Arnold2-2/+9
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10038 a1c6a512-1295-4272-9138-f99709370657
2006-05-23Fix red playersim build on linux, and make it a bit less hackish.Jens Arnold1-3/+3
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9978 a1c6a512-1295-4272-9138-f99709370657
2006-05-23Implemented screendump for the player sim.Jens Arnold3-3/+92
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9977 a1c6a512-1295-4272-9138-f99709370657
2006-04-12Patch 5107 from Steve Bavin, enable locking on sdl sim, now mutexes actually ↵Brandon Low1-4/+7
MUT EX on the SDL sim git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9638 a1c6a512-1295-4272-9138-f99709370657
2006-04-04Fix greyscale iPod sims for new LCD format.Jens Arnold1-1/+1
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9480 a1c6a512-1295-4272-9138-f99709370657
2006-04-02UI pictures for iPod mini 1G and 2G simulators.Jens Arnold3-0/+12
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9435 a1c6a512-1295-4272-9138-f99709370657
2006-03-29Use correct sleep function in simulator queue wait.Dan Everton1-1/+1
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9343 a1c6a512-1295-4272-9138-f99709370657
2006-03-25Patch #4913 by David Rothenberger with some changes by me: add only ↵Hristo Kovachev1-3/+57
backlight on first keypress to the lcd remotes, too. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9253 a1c6a512-1295-4272-9138-f99709370657
2006-03-24New option: First keypress enables backlight only. Patch #2920 by Nicolas ↵Björn Stenberg1-1/+13
Pennequin. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9228 a1c6a512-1295-4272-9138-f99709370657
2006-03-22Use correct types, which kills some AMD64 sim warnings.Thom Johansen1-2/+2
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9191 a1c6a512-1295-4272-9138-f99709370657
2006-03-19code policed // commentsDaniel Stenberg7-104/+104
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9112 a1c6a512-1295-4272-9138-f99709370657
2006-03-17Fix some incorrectly declared functions in the sim.Dan Everton2-3/+3
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9080 a1c6a512-1295-4272-9138-f99709370657
2006-03-11Don't crash the simulator when the pcm callback runs out of data.Jens Arnold1-33/+30
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8998 a1c6a512-1295-4272-9138-f99709370657
2006-03-09make the enter key work again in the windows SDL simMarcoen Hirschberg1-0/+2
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8976 a1c6a512-1295-4272-9138-f99709370657
2006-02-28Allow building simulators on systems where errno is thread-local by using ↵Jens Arnold1-5/+0
the system's implementation of errno.h for simulator builds. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8871 a1c6a512-1295-4272-9138-f99709370657
2006-02-26Fix yellow H1x0 simulator builds.Jens Arnold1-1/+1
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8846 a1c6a512-1295-4272-9138-f99709370657
2006-02-26Finally - grayscale library support for the simulators. Currently SDL only, ↵Jens Arnold6-38/+128
win32 and x11 won't link anymore due to missing simulator functions. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8845 a1c6a512-1295-4272-9138-f99709370657
2006-02-24first gigabeat commitMarcoen Hirschberg3-2/+16
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8831 a1c6a512-1295-4272-9138-f99709370657
2006-02-23Add iPod Video sim background contributed by aaronfg.Dan Everton2-4/+4
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8819 a1c6a512-1295-4272-9138-f99709370657
2006-02-23Remove two unused variables and fix a warning in the sim peak meter function.Dan Everton1-5/+2
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8818 a1c6a512-1295-4272-9138-f99709370657
2006-02-23Make peak meter work in simulator for SWCODEC targets.Dan Everton1-0/+65
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8815 a1c6a512-1295-4272-9138-f99709370657
2006-02-23Fix yellow builds.Jens Arnold1-1/+1
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8796 a1c6a512-1295-4272-9138-f99709370657
2006-02-22Better (i.e. working) sound in the SDL sim in Windows.Dan Everton1-30/+43
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8793 a1c6a512-1295-4272-9138-f99709370657
2006-02-21using --zoom with no number given defaults to 2 and no longer segfaultsDaniel Stenberg1-1/+4
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8771 a1c6a512-1295-4272-9138-f99709370657
2006-02-21Proper working sound in the SDL sim. Add option to write raw audio to a ↵Dan Everton2-22/+54
file, use --debugaudio command line option. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8770 a1c6a512-1295-4272-9138-f99709370657
2006-02-20Re-commit bitmaps in binary modeDave Chapman14-0/+0
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8757 a1c6a512-1295-4272-9138-f99709370657
2006-02-20Remove bitmaps added in ASCII modeDave Chapman14-0/+0
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8756 a1c6a512-1295-4272-9138-f99709370657
2006-02-20minor adjustments for the x5 LCD, we're back at 16 bits for upper LCD layersDaniel Stenberg1-0/+1
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8746 a1c6a512-1295-4272-9138-f99709370657