-
Notifications
You must be signed in to change notification settings - Fork 263
Roadmap
ATF 3.10 was released on Tuesday, August 4, 2015. (Release notes.)
- Authoring Tools Framework (ATF) is in maintenance mode, with only bug fixes and minor client-requested features being put in by Sony Computer Entertainment's Worldwide Studios. Our open source users are encouraged to contribute on GitHub.
- WPF Property Editor – this is a small new sample application designed to demonstrate the use of Windows Presentation Foundation and ATF's two-column property editor, Sce.Atf.Wpf.Controls.PropertyEditing.PropertyGridView. See the ReadMe.txt in the project file.
- LocalizableStringExtractor – this tool for extracting localizable strings from source code now supports Windows Presentation Foundation's XAML files.
ATF 3.9 was released on Thursday, January 29, 2015. (Release notes.)
- Added SimpleDomEditorWpf, a new WPF sample app that demonstrates WPF commands, docking, document handling, property editing, and a palette. See our overview and programming discussion for more information.
- ICommandClient implementors can now avoid being continually polled by the WinForms CommandService if they wish. This can be a large performance boost if the ICommandClient's CanDoCommand() method is expensive. Many of ATF's components now support this non-polling mechanism. See CommandInfo's EnableCheckCanDoEvent and OnCheckCanDo() methods.
- TreeListControl: New very simple sample app that demonstrates the new TreeListControl, which combines a TreeControl with data editing and multiple columns. See our overview and programming discussion for more information.
- CircuitEditor: Can now hide unconnected pins on any circuit element or circuit group! There is a new “eye” toggle in the upper-right corner.
ATF 3.8 was released on Thursday, July 31, 2014. (Release notes.)
- Integrated a huge amount of Windows Presentation Foundation (WPF) support from a client.
- Added a Skin Editor that allows you to edit the current skin and create new skin files. Try it out in the TimelineEditor sample app, by using the View -> Edit Skin command.
- Added a History Lister feature to visually display and manipulate the undo/redo stack. Try it out in the CircuitEditor sample app, by using the Window -> History command.
- The CircuitEditor now supports circuit template references to external files. See the context menu commands on the Template Lister.
- Improvements to property editing and the DomPropertyEditor sample app.
ATF 3.7 was released on January 30, 2014. (Release notes.)
- Many usability and stability enhancements to CircuitEditor, particularly with circuit groups.
- Most user interface text is now available in Japanese, especially in the CircuitEditor.
- Added a new sample app, “DOM Property Editor”, that demonstrates the use of all the various property editing controls. This replaces the old Property Editing sample app.
ATF 3.6 was released July 31, 2013. (Release notes.)
- Circuit Group work with Santa Monica Studios and Guerrilla Games:
- Circuit pins can be made visible or not.
- There have been many usability improvements.
- Perforce performance and workflow improvements
- TimelineEditor improvements with respect to child documents
- Recently used documents can be "pinned" so that they are not displaced by more recent documents.
- DOM debugging improvements:
- Visual Studio DOM debug visualizer. (See blog post.)
- DOM Recorder improvements
- Many memory leaks related to documents have been fixed and Controls are disposed of sooner. This helps with automated testing and opening hundreds of documents.
ATF 3.5 was released January 23, 2013
- Circuit Groups and Templates, with Santa Monica Studios. See here for details.
- Circuit Group editing has been improved – elements can be dragged in and out of the group in-place, when the group is expanded.
- Circuit Templates allow circuits to be referenced, reused, and updated, within a document. References to circuit templates in external documents will be implemented shortly after this release.
- All core implementations have been moved from sample code to the Framework, so that clients don’t have to copy and paste code.
- Open Sound Control support, with Guerrilla Games. OSC allows game designers to create custom GUIs and macros on the iPad® and to use the iPad® to edit properties of objects on the PC. See here for a 6 minute video made by Anton Woldhek, a senior sound designer at Guerrilla.
- ModelViewer is a new sample app that has been added, for viewing ATGI, Collada, and OBJ formatted models. It uses OpenGL® and replaces the Level Editor sample app, which has been removed. We have removed the ATF 3 Level Editor and the Legacy Level Editor projects since they have evolved into a Level Editor in the WWS SDK.
ATF 3.4 was released on July 30, 2012
- CircuitEditor groups have received months of work, in a joint project with Santa Monica Studios.
- The SkinningService has received a major performance boost. Many of our controls have improved skinning.
- Our source code comments are in the best shape ever. Nearly all public and protected members should now be accurately documented in Framework. The sample apps have been reviewed, too.
- The Rename Command (for ATF 3) has been rewritten to be much easier to use and with more predictable behavior.
- Added the Lock User Interface command to optionally prevent docking windows and dragging toolbars.
- IronPython has been updated from 2.6.1 to 2.7.3.
ATF 3.3 was released on February 1, 2012
- SkinService is a new component that allows for easy customization of an application’s appearance by using inheritable properties that can be applied at run-time and loaded from *.skn (XML format) files. Skin files can affect any public property of any control in an application. This release of SkinService should be considered preliminary because not all of ATF’s own Controls are customizable yet.
- CircuitEditor and the Circuit Control has been enhanced for usability:
- Wire connecting can be done with left-mouse-button clicks
- Wire-snapping to pins now aids in connecting wires
- Middle mouse button can pan the view
- Keyboard navigation and been ported over from ATF 2
- Live Connect Service is a new component that wraps the WWS SDK’s Live Connect, and makes broadcasting and listening to messages on a local network very simple. Please see the TimelineEditor and LevelEditor sample apps.
- Array Editor is a property editor for editing arrays of simple types.
- TargetEnumerationService is a new component to display and edit target platform Deci4p and TCP/IP connections. This is a redesigned and improved version of the old TargetService. Please use TargetEnumerationService for new development and avoid using both TargetEnumerationService and TargetService in the same application, because both services will present targets in their respective UI that are not related to each other. Please see the new sample app, TargetManager.
- The spreadsheet-style Grid Property Editor has received many usability improvements, including the removal of the duplicate row when editing, 2 mouse clicks instead of 3 to get to editing a cell, better keyboard navigation, some bug fixes.
- DOM Recorder is a new component for logging all changes to the DOM, listing them, and exporting them (programmatically).
- CustomFileDialog now remembers the directory that the user last navigated to for a particular filter string, and will use this most-recently-used directory if possible. A new property, ForcedInitialDirectory, allows clients to force the open/save dialog box to open at a particular directory. IFileDialogService exposes this functionality, too.
ATF 3.2 was released in early August, 2011
- Direct2D implementation of our adaptable diagram controls and timeline control for improved performance
- Improved support for Windows® Presentation Foundation based apps
- Common ATF interfaces and classes will no longer require WinForms types
- WinForms and WPF framework code will be in separate independent assemblies
- New sample applications
- 3D model viewer to demonstrate using OpenGL® to view ATGI models without requiring all of the code of our Level Editor
- Non-DOM editor to demonstrate that documents can be edited without using our DOM
- Greater usage of C# 3.0 for cleaner code
- Lambdas can specify properties in BoundPropertyDescriptor, instead of only string literals
- Extension methods can be used within the framework
- LINQ expression syntax can be used within the framework
- 'var' can be used when the implicit type is obvious
- Visual Studio 2005 will no longer be supported
- GUI-based ATF Refactor tool
- To help with migrating from one version of ATF to the next, our automated tool, AtfRefactor, will be improved
- Migration from Perforce to Subversion, to be consistent with other WWS shared tech and to make access for clients easier
ATF 3 Level Editor to be released shortly after ATF 3.2
- Will become a stand-alone product and no longer a sample application within ATF
- Will be fully-featured, on par with the ATF 2 Level Editor, and no longer considered beta
ATF 3.1 released December, 2010
- 3D graphics support
- OpenGL® graphics support
- ATGI, Collada, and OBJ model loading support
- Level Editor sample app, ported with minimal breaking changes
- WPF (Windows® Presentation Foundation) support and new sample apps
- Reworked curve editor
- General-purpose Find/Replace. See SimpleDomEditor.
- Application Scripting, using IronPython. See the FsmEditor sample application.
- Visual Studio 2010 support
- TreeList Control
- WWS Code Exchange. Comments section. One big bucket with tags & search. No ratings. See CodeGuru.com. Analytics for the poster. - Ricky and Max. If we can set up something on Ship with Alex Davidson's help, this would be great. We need to formalize our feature set. Then hand off to Alex, who may need to use a new version of Alfresco. We need to think of items to populate the exchange with; Ricky knows of at least 3 different people with items that can be contributed immediately.
- Improved Target Service control
ATF 3.0 released May, 2010 This is a major release that contains better implementations of large aspects of ATF 2's functionality while still being backwards compatible and while keeping duplicate code within ATF to a minimum. We don't anticipate any breaking API changes for ATF 2 based code. The changes in ATF 3 are user-driven in the most part and tailored to address lessons learned in previous releases and from user feedback. Major features/enhancements (as currently envisaged) include...
- Reworking the file structure of scea_wip/ATF to put the
.csproj
and.sln
files in a consistent location. - A tool to automatically fix existing client
.sln
files to refer to the new location of our.csproj
files. - A new DOM (current DOM still available so existing apps dont break on recompile)
- A new editing framework for ATF3
- MEF (Managed Extensibility Framework). Rewrite the PluginDictionary to work on top of MEF so that existing client code and new plugins work together seamlessly and without any breaking changes.
- Current ATF 2.x assemblies reference the new ATF3 core assemblies and make the ATF 2.x classes into stubs or shims to the new locations. The goal is to have little duplicate code and no breaking changes.
- Sample applications to use ATF 3, except possibly the Level Editor.
...
ATF 1.1 released August, 2006
ATF was started in late 2004 or early 2005, by Bill Budge. By May of 2006, there was a level editor demo and a version of the Document Object Model (DOM).
- Home
- Getting Started
- Features & Benefits
- Requirements & Dependencies
- Gallery
- Technology & Samples
- Adoption
- News
- Release Notes
- ATF Community
- Searching Documentation
- Using Documentation
- Videos
- Tutorials
- How To
- Programmer's Guide
- Reference
- Code Samples
- Documentation Files
© 2014-2015, Sony Computer Entertainment America LLC