2008-03-08 23:49:26 +01:00
|
|
|
// Copyright (c) 2008, Rodrigo Braz Monteiro
|
|
|
|
// All rights reserved.
|
|
|
|
//
|
|
|
|
// Redistribution and use in source and binary forms, with or without
|
|
|
|
// modification, are permitted provided that the following conditions are met:
|
|
|
|
//
|
|
|
|
// * Redistributions of source code must retain the above copyright notice,
|
|
|
|
// this list of conditions and the following disclaimer.
|
|
|
|
// * Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
// this list of conditions and the following disclaimer in the documentation
|
|
|
|
// and/or other materials provided with the distribution.
|
|
|
|
// * Neither the name of the Aegisub Group nor the names of its contributors
|
|
|
|
// may be used to endorse or promote products derived from this software
|
|
|
|
// without specific prior written permission.
|
|
|
|
//
|
|
|
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
|
|
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
// POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
//
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
//
|
2008-03-18 04:44:00 +01:00
|
|
|
// AEGISUB/ATHENASUB
|
2008-03-08 23:49:26 +01:00
|
|
|
//
|
|
|
|
// Website: http://www.aegisub.net
|
|
|
|
// Contact: mailto:amz@aegisub.net
|
|
|
|
//
|
|
|
|
|
|
|
|
#pragma once
|
2008-08-03 18:17:35 +02:00
|
|
|
#include "athenasub.h"
|
2008-03-08 23:49:26 +01:00
|
|
|
#include "section_entry.h"
|
|
|
|
#include <list>
|
2008-03-13 01:51:31 +01:00
|
|
|
#include <map>
|
2008-03-08 23:49:26 +01:00
|
|
|
|
2008-03-18 04:44:00 +01:00
|
|
|
namespace Athenasub {
|
2008-03-08 23:49:26 +01:00
|
|
|
|
|
|
|
// Section class
|
2008-08-03 18:17:35 +02:00
|
|
|
class CSection : public ISection {
|
2008-03-08 23:49:26 +01:00
|
|
|
private:
|
2008-08-03 18:17:35 +02:00
|
|
|
std::vector<Entry> entries;
|
2008-03-13 01:51:31 +01:00
|
|
|
std::map<String,String> properties;
|
2008-08-03 18:17:35 +02:00
|
|
|
std::map<String,Entry> index;
|
2008-03-08 23:49:26 +01:00
|
|
|
String name;
|
|
|
|
|
|
|
|
public:
|
2008-08-03 18:17:35 +02:00
|
|
|
CSection(String name);
|
|
|
|
~CSection() {}
|
2008-03-08 23:49:26 +01:00
|
|
|
|
2008-03-13 06:39:03 +01:00
|
|
|
// Section name
|
2008-03-16 19:09:25 +01:00
|
|
|
void SetName(const String& newName) { name = newName; }
|
2008-03-13 06:39:03 +01:00
|
|
|
const String& GetName() const { return name; }
|
2008-03-13 01:51:31 +01:00
|
|
|
|
2008-03-13 06:39:03 +01:00
|
|
|
// Script properties
|
2008-03-13 01:51:31 +01:00
|
|
|
void SetProperty(const String &key,const String &value);
|
|
|
|
void UnsetProperty(const String &key);
|
|
|
|
String GetProperty(const String &key) const;
|
|
|
|
bool HasProperty(const String &key) const;
|
2008-03-13 06:39:03 +01:00
|
|
|
size_t GetPropertyCount() const;
|
2008-03-13 01:51:31 +01:00
|
|
|
String GetPropertyName(size_t index) const;
|
2008-03-08 23:49:26 +01:00
|
|
|
|
2008-03-18 03:09:33 +01:00
|
|
|
// Indexed
|
2008-08-03 18:17:35 +02:00
|
|
|
Entry GetFromIndex(String key) const;
|
2008-03-18 03:09:33 +01:00
|
|
|
|
2008-03-13 06:39:03 +01:00
|
|
|
// Entries
|
2008-08-03 18:17:35 +02:00
|
|
|
void AddEntry(Entry entry,int pos=-1);
|
2008-03-13 06:39:03 +01:00
|
|
|
void RemoveEntryByIndex(size_t index);
|
2008-08-03 18:17:35 +02:00
|
|
|
void RemoveEntry(Entry entry);
|
|
|
|
Entry GetEntry(size_t index) const;
|
2008-08-09 22:43:27 +02:00
|
|
|
Entry& GetEntryRef(size_t index);
|
2008-03-13 06:39:03 +01:00
|
|
|
size_t GetEntryCount() const;
|
2008-03-08 23:49:26 +01:00
|
|
|
};
|
2008-08-03 18:17:35 +02:00
|
|
|
typedef shared_ptr<CSection> SectionPtr;
|
2008-03-08 23:49:26 +01:00
|
|
|
|
2008-03-16 19:09:25 +01:00
|
|
|
}
|