Difference between revisions of "Antivirus"

From Software Inc.
Jump to navigation Jump to search
m (t)
(Added features table)
Line 1: Line 1:
 
'''First Appearance:''' It Appears in [[design document]] around year 1980-1990.
 
'''First Appearance:''' It Appears in [[design document]] around year 1980-1990.
  
Antivirus is a Software you can create ingame. It requires a [[Visual Tool]] to be created. Also it's depending on an [[Operating System]].
+
Antivirus is Software you can create in-game. It requires a [[2D Editor]] to be created. Also, it's dependent on an [[Operating System]].
  
 
{| border="1"
 
{| border="1"
Line 27: Line 27:
 
|
 
|
 
|
 
|
 +
|}
 +
 +
{| class="wikitable"
 +
! style="background-color:#ffcc67;" | Feature
 +
! style="background-color:#ffcc67;" | Description
 +
! style="background-color:#ffcc67;" | Dependencies
 +
|-
 +
| File Scan
 +
|
 +
|
 +
|-
 +
| User interface
 +
| Make it easy for the user to manage their virus handling.
 +
| [[2D Editor]]: Pixel manipulation
 +
|-
 +
| Firewall
 +
|
 +
| [[Operating System]]: Networking
 +
|-
 +
| Background scan
 +
| Scan for viruses in the background causing hilarious file locks randomly.
 +
| [[Antivirus]]: File scan
 +
[[Operating System]]: Multithreading
 +
|-
 +
| Mail scan
 +
| There's always room for enlargement.
 +
| [[Operating System]]: Networking
 +
|-
 +
| Virus database
 +
| Automagically keep your user's virus definitions up to date.
 +
| [[Operating System]]: Networking
 
|}
 
|}
  

Revision as of 12:09, 10 May 2020

First Appearance: It Appears in design document around year 1980-1990.

Antivirus is Software you can create in-game. It requires a 2D Editor to be created. Also, it's dependent on an Operating System.

OS-Size 1980 1990 2000 2010
small - file scan
medium - background scan
large -
Feature Description Dependencies
File Scan
User interface Make it easy for the user to manage their virus handling. 2D Editor: Pixel manipulation
Firewall Operating System: Networking
Background scan Scan for viruses in the background causing hilarious file locks randomly. Antivirus: File scan

Operating System: Multithreading

Mail scan There's always room for enlargement. Operating System: Networking
Virus database Automagically keep your user's virus definitions up to date. Operating System: Networking

Raw Source

<source lang="xml">
    <Software Name="Antivirus">
        <Name>Antivirus</Name>
        <Description>Protecting computers from digital troublemakers since it became profitable to do so.</Description>
        <Features>
            <Feature Name="File scan">
                <Name>File scan</Name>
            </Feature>
            <Feature Name="Firewall">
                <Name>Firewall</Name>
            </Feature>
            <Feature Name="Background scan">
                <Name>Background scan</Name>
                <Description>Scan for viruses in the background causing hilarious file locks randomly</Description>
            </Feature>
            <Feature Name="Mail scan">
                <Name>Mail scan</Name>
                <Description>There's always room for enlargement</Description>
            </Feature>
            <Feature Name="Virus database">
                <Name>Virus database</Name>
                <Description>Automagically keep your user's virus definitions up to date</Description>
            </Feature>
        </Features>
    </Software>
</source>