Commit Graph

1077 Commits

Author SHA1 Message Date
Benjamin Funke
156092806c README: added adibou 1 & adibou 2 to SE README 2023-08-29 00:48:54 +02:00
Benjamin Funke
b25d10aeab README: added adibou1 & adibou2 to CZ README 2023-08-29 00:48:54 +02:00
Benjamin Funke
15b7bf84a2 README: add Adibou 1 & 2 in the list of supported games (GOB) 2023-08-29 00:48:54 +02:00
Thierry Crozat
c949acb387 DOC: Add description for the Discord integration setting 2023-08-22 23:54:36 +01:00
Benjamin Funke
baaad6a4f2 NEWS: Mention Adibou 1 support in German NEWS file 2023-08-16 08:29:18 +02:00
lwcorp
fa4405cf39 Added missing title
Description was written under the wrong title and that title had no anchor, so added the missing anchor as well as whole of the missing title
2023-08-06 22:23:15 +02:00
Thierry Crozat
1ed935dbc1 DOCS: Add two-finger swap right to left gesture to iOS controls
This gesture is used to show or hide the on-screen control (virtual
controler).
2023-07-14 20:07:12 +01:00
Lothar Serra Mari
977d675536
NEWS: Mention latest SCUMM bugfixes in German NEWS file 2023-07-14 21:00:50 +02:00
Lothar Serra Mari
b4fce1ddbf
NEWS: Update German NEWS file 2023-07-12 22:46:22 +02:00
Lothar Serra Mari
35f0c7043d NEWS: Mention AGS text improvement in German NEWS file 2023-07-04 07:52:07 +02:00
Lars Sundström
6a74f7b32b IOS7: Implement iOSGraphics3dManager
Add a graphic manager rendering 3D graphics for engines supporting
3D games. The manager is implemented using the 3D graphic managers
for Android and SDL as models.

Most probably Android and iOS can share much more of the code, but
that will be a separate work to refactor.
The iOSGraphics3dManager handles resize since the screen dimension
changes on rotation.

Games not supporting arbitary resolutions, e.g. Grim, are rendered
on an intermediate framebuffer with the size requested by the
engine and then rendered to the backbuffer (a framebuffer bound to
the renderbuffer) and stretched to the screen resolution off the
device.

This commit just adds the manager. It will be utilised in next
commit.

Update gitlab ci worker and update documentation.
2023-07-03 21:50:32 +02:00
Lars Sundström
e6232547d5 IOS7: Add iOSGraphicsManager class
The ios7 backend implements the graphic handling in the backend code.
iOS supports OpenGL through the OpenGL Framework since iOS 2.0. It's
marked as deprecated but is still shipped with the SDKs for iPhoneOS
and tvOS and will hopefully be so for some time.
The ios7 backend can therefore utilize the OpenGLGraphicsManager to
handle all graphics.

Implement an iOSGraphicsManager class that can be used in the ios7
backend. The iOSGraphicsManager will require some callback functions
in the ios7 backend. createOpenGLContext() will be called to ask the
backend to create an OpenGL context in which the graphic manager can
draw. The function returns the ID of the renderbuffer which shall be
used when creating the framebuffer object this differ iOS from other
platforms). A custom RenderBufferTarget class is added to address
this.

destroyOpenGLContext() will be called to make sure that the old GLES
context is not reused. notifyContextDestroy() does call the function
OpenGLContext.reset() but that will not destroy the context.

refreshScreen() will be called to ask the backend to present the
drawn graphics on the screen. getSystemHiDPIScreenFactor() is called
to get the screen scaling factor. getScreenWidth() and
getScreenHeight() are called to get the width and height of the
surface to draw on.

This commit adds the class but the ios7 backend doesn't make use of
it quite yet. To use it require the ios7 to be a child class of the
ModularGraphicsBackend. That change requires a lot of changes which
will be targeted in separate commits.

Update docportal and github ci worker to only disable the feature
opengl_classic_game since opengl and opengl_shaders are required to
compile the OpenGLGraphicsManager.
2023-07-03 21:50:32 +02:00
Lothar Serra Mari
d9353c4c94
CREDITS: Update CREDITS 2023-07-01 13:55:59 +02:00
Lothar Serra Mari
407f310bb6
NEWS: Mention new detection entries for various SWORD1 variants 2023-07-01 12:22:10 +02:00
Lothar Serra Mari
2f10f4670c
NEWS: Update German NEWS file 2023-07-01 11:53:48 +02:00
Lothar Serra Mari
98f85d4a1d
NEWS: Mention Loom volume fix in German NEWS file 2023-06-30 20:22:17 +02:00
antoniou79
a562972acb DOCS: use kbd prefix for 0 and 9 keys in shortcut 2023-06-26 15:05:46 +03:00
antoniou79
1c741d6a65 DOCS: Add cycle graphic filter shortcut under Software Scalers section 2023-06-26 15:05:46 +03:00
antoniou79
87dd0b396a DOCS: Update scaler filter shortcuts in configuration_file 2023-06-26 15:05:46 +03:00
antoniou79
bbe42d5001 DOCS: Update keymaps page for scaler scrolling 2023-06-26 15:05:46 +03:00
antoniou79
6904e2dc45 DOCS: Update shortcut for cycling graphic scalers 2023-06-26 15:05:46 +03:00
Lothar Serra Mari
01e1e81542
NEWS: Mention latest AGS updates in German NEWS file 2023-06-15 18:53:06 +02:00
Lothar Serra Mari
2141f4aed1 NEWS: Mention support for Muppets Tresure Island in German NEWS file 2023-06-14 14:28:11 +02:00
Lothar Serra Mari
84895dfaad
NEWS: Update German NEWS file 2023-06-13 20:16:50 +02:00
Lothar Serra Mari
a2528c6247
NEWS: Mention MM1 support in German NEWS file 2023-06-07 18:42:58 +02:00
Lothar Serra Mari
ef4551fc26
NEWS: Mention japanese TWINE support in German NEWS file 2023-06-02 21:06:54 +02:00
Lothar Serra Mari
08039632bf
NEWS: Mention Reah and Shizm support in German NEWS file 2023-05-29 21:13:39 +02:00
Lothar Serra Mari
293c0a99de
NEWS: Fix and update German NEWS file 2023-05-18 03:49:14 +02:00
Lothar Serra Mari
81d4547ac8
NEWS: Update German NEWS file 2023-04-30 06:49:47 +02:00
elasota
1c338a2c71 DOCS: Add V-Cruise documentation 2023-04-29 19:21:59 -04:00
Lars Sundström
8583fb54a8 DOCPORTAL: Update ios7 and tvos instructions
This updates the instructions for building the ios7 and tvos backends
using scummvm-ios7-libs-v3, utilizing the Apple XCFramework format for
the pre-compiled libraries.

Using scummvm-ios7-libs-v3 also enables use of the following
features:
 - faad
 - gif
 - mikmod
 - mpeg2
 - theoradec
 - vpx
2023-04-24 22:34:55 +02:00
Lothar Serra Mari
10f7faf417
NEWS: Update German NEWS file 2023-04-10 21:37:22 +02:00
Kaloyan Chehlarski
b9768d2494
DOCS: Add Nancy settings to Game tab docs
Also fixed Myst3's indentation
2023-04-10 22:06:54 +03:00
Lothar Serra Mari
ccf29268c7
NEWS: Update German NEWS file with latest NUVIE fixes 2023-04-05 18:17:21 +02:00
Lothar Serra Mari
44893ebe56
NEWS: Update German NEWS file 2023-03-30 18:45:09 +02:00
Lothar Serra Mari
8afd6ad6ff
NEWS: Update German NEWS file 2023-03-25 18:32:54 +01:00
Thierry Crozat
5915f6fc12 DOC: Update autostart description for macOS and iOS 2023-03-24 21:11:50 +01:00
Lothar Serra Mari
895d814c61
NEWS: Mention russion TOUCHE support in German NEWS file 2023-03-19 19:52:27 +01:00
Lothar Serra Mari
35a4a5fbd9
NEWS: Add latest VOYEUR changes to German NEWS file 2023-03-18 08:19:31 +01:00
Lothar Serra Mari
a4f13b9d80
NEWS: Update German NEWS file with latest backported fixes 2023-03-18 08:17:08 +01:00
Lothar Serra Mari
f60e8fb016
NEWS: Mention latest Ultima fixes in German NEWS file 2023-03-14 18:21:07 +01:00
Lothar Serra Mari
d1d9d8f064
NEWS: Mention RuSCUMM in German NEWS file 2023-03-13 20:22:45 +01:00
Lothar Serra Mari
7fc6a3a83d
NEWS: Update German NEWS file 2023-03-10 18:06:54 +01:00
Donovan Watteau
a7fbab11ff DOC: Update French QuickStart and fix its grammar 2023-03-09 16:52:51 +01:00
Donovan Watteau
199f9f697f DOC: Sync the English QuickStart a bit 2023-03-09 16:44:56 +01:00
Lothar Serra Mari
8cb19367c8 NEWS: Update German NEWS file 2023-03-08 07:20:00 +01:00
Lothar Serra Mari
75927da452 NEWS: Update German NEWS file 2023-03-06 20:47:46 +01:00
Eugene Sandulenko
ad91fc93be
DOCS: Clarify autostart documentation 2023-03-03 21:32:08 +01:00
Eugene Sandulenko
f0089a7b67 DOCS: Fix command line parameter for autodetection
Co-authored-by: Thierry Crozat <criezy@scummvm.org>
2023-03-03 21:29:21 +01:00
CadiH
2d27f11ce0 DOCS: adds autostart page 2023-03-03 21:29:21 +01:00
Eugene Sandulenko
e9761caa47 DOCS: Describe SAF protocol for Android 2023-03-03 21:12:39 +01:00
Lothar Serra Mari
1f69adcd18 NEWS: Update German NEWS file 2023-03-02 07:34:04 +01:00
Lothar Serra Mari
e5898db8c8 NEWS: Update German NEWS file 2023-03-01 20:02:56 +01:00
Lothar Serra Mari
50c38f5ce9 NEWS: Update German NEWS file 2023-02-28 09:44:25 +01:00
Lothar Serra Mari
10b55b3f7e NEWS: Update German NEWS file 2023-02-28 08:43:47 +01:00
Donovan Watteau
ba6f8935a7 CREDITS: Add dwa for macOS PPC 2023-02-27 19:38:23 +01:00
Thierry Crozat
d9c3d49b8f CREDITS: Update macOS and iOS credits 2023-02-27 16:25:24 +01:00
Lothar Serra Mari
7ac4df98c1 NEWS: Reveal codename for 2.7.0 2023-02-26 21:13:40 +01:00
Lothar Serra Mari
e744c9a79c CREDITS: Update credits for new engines 2023-02-26 08:48:22 +01:00
Lothar Serra Mari
0a62693eef NEWS: Mention newly supported DIRECTOR titles in German NEWS file 2023-02-25 06:59:30 +01:00
Lothar Serra Mari
073249f466 NEWS: Update German NEWS file 2023-02-25 06:37:37 +01:00
Lothar Serra Mari
fd84b464b5 NEWS: Update NEWS section of various ports 2023-02-13 22:18:49 +01:00
Thierry Crozat
350960e861
DOC: Update link for list of MT-32 compatible games
The article on wikipedia was deleted. Fortunately it was first
mirrored to the Vogons wiki.
2023-02-13 17:53:52 +00:00
Lothar Serra Mari
1f1ef9f808 NEWS: Set release date for 2.7.0 2023-02-13 14:21:12 +01:00
Lothar Serra Mari
2dc4c71f1f NEWS: Update German NEWS file 2023-02-10 20:07:40 +01:00
Donovan Watteau
f54ad432d1 DOCS: DC: Tell users that SCUMM v7+ is not expected to work at all
See PR#4693 and Trac#6008 for more context.
2023-02-10 14:03:30 +01:00
Cameron Cawley
72f80d6bd5 NEWS: Move the RISC OS news for v2.7.0 into the correct section 2023-02-08 19:58:50 +00:00
Lothar Serra Mari
538c49c01e NEWS: Mention RiscOS 26-bit support in German NEWS file 2023-02-08 20:45:28 +01:00
Cameron Cawley
3e1b1dc2b0 DOCS: Fix formatting in the tvOS documentation 2023-02-08 19:16:18 +00:00
Cameron Cawley
eb9efa9bed DOCS: Update the RISC OS documentation 2023-02-08 19:09:06 +00:00
Cameron Cawley
9ca222cbbc NEWS: Move Adibou 2 into the "New games" section 2023-02-06 19:54:04 +00:00
Lothar Serra Mari
2c1e701d68 NEWS: Mention KolibriOS in German NEWS file 2023-02-06 18:51:36 +01:00
Lars Sundström
92b22e4ba6 DOCS: Add draft documentation of Apple TV platform
Add basic documentation needed starting using or developing ScummVM on
the Apple TV.
2023-01-29 21:13:52 +00:00
Lothar Serra Mari
7447128acb NEWS: Update German NEWS file 2023-01-27 18:40:29 +01:00
Lothar Serra Mari
d923714434 CREDITS: Update credits for MM (Xeen) 2023-01-22 20:58:14 +01:00
Lothar Serra Mari
7ac6125fb8 NEWS: Mention xeen renaming in German NEWS file 2023-01-22 20:17:43 +01:00
Lothar Serra Mari
5a49cc0776 NEWS: Mention latest SCUMM improvements in German NEWS file 2023-01-20 14:52:36 +01:00
Lothar Serra Mari
7773628277 NEWS: Mention latest SCUMM improvements in German NEWS file 2023-01-20 14:45:30 +01:00
Lothar Serra Mari
e8c04a456f NEWS: Update German NEWS file 2023-01-19 14:58:39 +01:00
Lothar Serra Mari
13d2b1b1db NEWS: Mention MIYOO in German NEWS file 2023-01-18 18:49:36 +01:00
Lothar Serra Mari
abcb191fce NEWS: Mention XEEN fixes in German NEWS file 2023-01-17 22:05:16 +01:00
CadiH
e2f730074d DOCS: Fixes minor mistakes
- Reorders navigation headings
- Fixes indentation issue
2023-01-18 06:33:47 +11:00
CadiH
ce288d0bbd DOCS: Updates command line options 2023-01-18 06:33:47 +11:00
CadiH
4305d57771 DOCS: Adds description of initial config file 2023-01-18 06:33:47 +11:00
CadiH
de151ea3fd DOCS: Replaces test pattern screenshot 2023-01-18 06:33:47 +11:00
CadiH
9ae5aceae5 DOCS: Adds information about shaders 2023-01-18 06:33:47 +11:00
CadiH
f649920221 DOCS: Adds GUI tab to settings description 2023-01-18 06:33:47 +11:00
CadiH
92a4311844 DOCS: updates Game page to include missing engines 2023-01-18 06:33:47 +11:00
CadiH
871b2933e7 DOCS: adds GUI page and updates Misc settings page 2023-01-18 06:33:47 +11:00
CadiH
69d1603af5 DOCS: updates requirements file
- mdinclude required for release notes
2023-01-18 06:33:47 +11:00
CadiH
da0f1f2194 DOCS: updates engine-specific Game tab options 2023-01-18 06:33:47 +11:00
CadiH
00a84d19f5 DOCS: Fixes release notes section 2023-01-18 06:33:47 +11:00
CadiH
32249765ed DOCS: Fixes heading 2023-01-18 06:33:47 +11:00
Lothar Serra Mari
57bc85f3ba NEWS: Mention new platforms in German NEWS file 2023-01-16 21:31:10 +01:00
Lothar Serra Mari
d8f83247b2 CREDIS: Update credits for TETRAEDGE 2023-01-16 19:31:52 +01:00
Lothar Serra Mari
288ae8bed9 NEWS: Update German NEWS file with latest SCUMM improvements 2023-01-15 22:43:00 +01:00
Lothar Serra Mari
355d983779 NEWS: Mention SWORD1/SWORD2 improvements in German NEWS file 2023-01-15 10:55:27 +01:00
Lothar Serra Mari
56491a611f NEWS: Update German NEWS file 2023-01-12 19:44:51 +01:00
Lothar Serra Mari
da25c1f6a7 NEWS: Update German NEWS file 2023-01-12 19:09:49 +01:00
elasota
3d725a176d DOCS: Update command line arguments to include initial config option. 2023-01-11 14:46:39 +01:00