Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

3,399

Downloads of v 3.4.3.1:

256

Last Update:

09 Apr 2019

Package Maintainer(s):

Software Author(s):

  • Chris Jones et al

Tags:

ags adventuregamestudio

Adventure Game Studio

This is not the latest version of Adventure Game Studio available.

  • 1
  • 2
  • 3

3.4.3.1 | Updated: 09 Apr 2019

Downloads:

3,399

Downloads of v 3.4.3.1:

256

Maintainer(s):

Software Author(s):

  • Chris Jones et al

Adventure Game Studio 3.4.3.1

This is not the latest version of Adventure Game Studio available.

  • 1
  • 2
  • 3

Some Checks Have Failed or Are Not Yet Complete

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Resulted in Flagged:

This package was submitted (and approved) prior to automated virus scanning integration into the package moderation processs.

We recommend clicking the "Details" link to make your own decision on installing this package.

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install Adventure Game Studio, run the following command from the command line or from PowerShell:

>

To upgrade Adventure Game Studio, run the following command from the command line or from PowerShell:

>

To uninstall Adventure Game Studio, run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade ags -y --source="'INTERNAL REPO URL'" --version="'3.4.3.1'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade ags -y --source="'INTERNAL REPO URL'" --version="'3.4.3.1'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install ags
  win_chocolatey:
    name: ags
    version: '3.4.3.1'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'ags' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '3.4.3.1'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller ags
{
    Name     = "ags"
    Version  = "3.4.3.1"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'ags':
  ensure   => '3.4.3.1',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

NOTE

Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...

Package Approved

This package was approved by moderator gep13 on 10 Apr 2019.

Description

Adventure Game Studio is Free and Open Source.
AGS provides everything you need from within one easy-to-use application.
Create, test and debug your game, all in one place.


tools\chocolateyinstall.ps1
$ErrorActionPreference = 'Stop'; 

$toolsDir   = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"

$url        = 'https://github.com/adventuregamestudio/ags/releases/download/v.3.4.3.1/AGS-3.4.3-P1.exe' 

$packageArgs = @{
  packageName   = $env:ChocolateyPackageName
  unzipLocation = $toolsDir
  fileType      = 'exe' 
  url           = $url

  softwareName  = 'Adventure Game Studio 3.4.3' 
  
  checksum      = '89ef0fcb9ef460352039d2bb589eff31'
  checksumType  = 'md5'

  validExitCodes= @(0, 3010, 1641)
  silentArgs   = '/VERYSILENT /MERGETASKS="!vcredist" /SUPPRESSMSGBOXES /NORESTART /SP-' 
}

Install-ChocolateyPackage @packageArgs 

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
Adventure Game Studio 3.5.1.26 50 Saturday, March 11, 2023 Approved
Adventure Game Studio 3.5.1.25 24 Saturday, March 11, 2023 Approved
Adventure Game Studio 3.5.1.24 25 Saturday, March 11, 2023 Approved
Adventure Game Studio 3.5.1.23 25 Saturday, March 11, 2023 Approved
Adventure Game Studio 3.5.1.22 25 Saturday, March 11, 2023 Approved
Adventure Game Studio 3.5.1.21 84 Saturday, September 10, 2022 Approved
Adventure Game Studio 3.5.1.20 57 Saturday, August 20, 2022 Approved
Adventure Game Studio 3.5.1.19 86 Friday, June 24, 2022 Approved
Adventure Game Studio 3.5.1.18 78 Friday, May 6, 2022 Approved
Adventure Game Studio 3.5.1.17 80 Saturday, April 9, 2022 Approved
Adventure Game Studio 3.5.1.16 105 Wednesday, March 2, 2022 Approved
Adventure Game Studio 3.5.1.15 80 Friday, February 4, 2022 Approved
Adventure Game Studio 3.5.1.14 81 Friday, January 7, 2022 Approved
Adventure Game Studio 3.5.1.13 73 Friday, December 31, 2021 Approved
Adventure Game Studio 3.5.1.11 50 Friday, December 31, 2021 Approved
Adventure Game Studio 3.5.1.10 55 Friday, December 31, 2021 Approved
Adventure Game Studio 3.5.1.9 52 Friday, December 31, 2021 Approved
Adventure Game Studio 3.5.1.8 56 Friday, December 31, 2021 Approved
Adventure Game Studio 3.5.1.7 109 Sunday, June 6, 2021 Approved
Adventure Game Studio 3.5.0.32 137 Tuesday, May 11, 2021 Approved
Adventure Game Studio 3.5.0.31 93 Monday, May 10, 2021 Approved
Adventure Game Studio 3.5.0.30 104 Wednesday, February 24, 2021 Approved
Adventure Game Studio 3.5.0.29 156 Saturday, February 6, 2021 Approved
Adventure Game Studio 3.5.0.28 117 Sunday, January 3, 2021 Approved
Adventure Game Studio 3.5.0.27 183 Saturday, December 12, 2020 Approved
Adventure Game Studio 3.5.0.26 108 Saturday, December 12, 2020 Approved
Adventure Game Studio 3.5.0.25 118 Saturday, December 5, 2020 Approved
Adventure Game Studio 3.5.0.24 225 Tuesday, June 30, 2020 Approved
Adventure Game Studio 3.5.0.23 327 Thursday, January 23, 2020 Approved
Adventure Game Studio 3.5.0.22 213 Sunday, December 22, 2019 Approved
Adventure Game Studio 3.4.3.1 256 Tuesday, April 9, 2019 Approved

This release is brought to you by:

- BigMC (updates to Linux scripts)
- Crimson Wizard
- morganw

General notes
AGS 3.4.3 is mainly a bug-fixing release, it contains fixes both critical and minor accumulated for the last year. Some of them were part of 3.5.0 development, but since former was taking too long I decided to create an update to 3.4.* branch.
Version number "3.4.2" is skipped because it was used during early development of 3.5.0.

Since this release AGS distribution no longer includes "no-MP3" engine variant and "Demo Game" project source.
1. MP3's patent has expired, which means you no longer should have issues if releasing a commercial game with mp3 audio:
Quote
The basic MP3 decoding and encoding technology is patent-free in the European Union, all patents having expired there by 2012 at the latest. In the United States, the technology became substantially patent-free on 16 April 2017. MP3 patents expired in the US between 2007 and 2017.
(https://en.wikipedia.org/wiki/MP3#Licensing,_ownership_and_legislation)
2. "Demo Quest" game is an ancient project which has not been updated for many years. It does not look that good either. I recommend searching for contemporary open-sourced AGS games instead, for now.

Changes in the Patch 1:

Engine:
- Fixed serious mistake that would cause crashes in plugins which export their own managed types for game script.

Linux:
- Fixed compilation against recent Allegro 4.4.3 release.
- Updated prebuilt binaries to be compatible with Debian 8 (jessie) and higher.

What is new in 3.4.3

Common features:
- Removed restriction preventing GUIs to be larger than the game's screen.

Editor:
- Added missing audio options to Default Setup.
- Fixed GUI and Room editors sometimes having larger scrollable area than necessary.
- Fixed editable area was not resized when GUI size changed.
- Fixed TextWindow GUI's elements could be deleted or moved in the editor with key controls with no means to restore them.
- Don't modify filesystem permissions in Compiled directory when compiling the game. Editor no longer requires non-standard "takeown.exe" utility.
- Fixed Windows Explorer was sometimes locking the game files during compilation.
- Fixed rooms not being rebuilt when running game just created from a template.
- Fixed translations were not updated or available at all for the test run unless the game was fully rebuilt.

Engine:
- Allowed engine to return integer of "0" value from script functions that are "void" by nature, for compatibility reasons. This may fix running particular old games.
- Fixed const-sized char[] arrays in managed structs did not work correctly and could even cause engine to crash.
- Fixed some compilers could instigate a crash in the on_event callback if it was called before the first room is loaded.
- Prevent game from crashing if there was an attempt to use a non-existant font index.
- Fixed crash when calling DisplayTopBar with a title longer than 200 characters.
- Fixed DisplayTopBar() was displayed on screen for the time calculated from the length of its title rather than its message text (regression).
- Fixed built-in inventory screen could crash the game again (regression).
- Made engine fallback to defaults if config contains invalid graphic scaling setting.
- Fixed crash in the Software renderer which was occuring if it failed anytime after setting display mode but prior to initializing scaling filter.
- Fixed graphic artifacts looking like thin vertical lines around sprites when running OpenGL renderer (aka "texel leaking").
- Fixed OpenGL not displaying tinted sprites at all if tinting shader does not work (now will display sprites without tint).
- Fixed 8-bit sprites could have broken colours if game is run using Direct3D or OpenGL.
- Fixed broken colours during fade-in and fade-out in 16-bit games.
- Fixed possible crash occuring when switching in and out the game window while game is being shut down.
- Improved a warning message displayed when sound driver was not initialized, and added a hint for players on how to supress it.
- Fixed double error message displayed if the game has an unsupported data format.

Linux:
- Fixes Linux game launch script (fixes issues with itch.io client).

Android:
- Long press on "Back" button now calls in-game menu (was displaying exit confirmation).
This change was made to counter removal of "Menu" button on many modern devices.
- Fixed long press on "Back" and "Menu" buttons not handled correctly on some devices.

WinSetup:
- Always provide at least two standard fullscreen modes for selection, even if graphics driver failed to return a list of supported modes.

Templates:
- Updated 9-verb MI-style to 1.6.3.


Discussion for the Adventure Game Studio Package

Ground Rules:

  • This discussion is only about Adventure Game Studio and the Adventure Game Studio package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or Adventure Game Studio, or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus