<!doctype html>
<!--[if lt IE 7]>      <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]>         <html class="no-js lt-ie9 lt-ie8">        <![endif]-->
<!--[if IE 8]>         <html class="no-js lt-ie9">               <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js">                      <!--<![endif]-->
<head>
    <meta charset="utf-8">

    <title>Star Wars is a fantasy film firmly based on America's real conflicts</title>

    <link type="text/css" rel="stylesheet" href="/_assets/css/general/basic.css" />
    <link rel="canonical" href="https://www-2018.swansea.ac.uk/press-office/news-archive/2017/starwarsisafantasyfilmfirmlybasedonamericasrealconflicts.php" /> 





<meta name="viewport" content="width=device-width, initial-scale=1.0;">
<meta property="su:page-type" content="News Item">
<meta property="su:section-id" content="112621">

    <script type="text/javascript" src="/_assets/vendor/enhance.js"></script>
    <script type="text/javascript">

        var SU =        {
                            customScripts: {
                                preRepositioning:  [],
                                postRepositioning: []
                            }
                        },

            dataLayer = [],

            styles =    [
                            '/_assets/css/general/desktop.css',
                            {
                                href: '/_assets/css/common/ie.css',
                                iecondition: 'all'
                            },
                            {
                                href: '/_assets/css/common/ie7.css',
                                iecondition: 7
                            },
                            {
                                href: '/_assets/css/common/ie8.css',
                                iecondition: 8
                            }
                        ],
        
            scripts =   [
                           '/_assets/js/common/modernizr-jquery.all.min.js'
                        ];
        

        

        

        scripts = scripts.concat([
            '/_assets/vendor/jquery-plugins/cycle2/jquery.cycle2.js',
            '/_assets/vendor/jquery-plugins/cycle2/jquery.cycle2.swipe.js',
            '/_assets/vendor/jquery-plugins/auto-complete/jquery.auto-complete.js',
            '/_assets/vendor/mustache.js',
            '/_assets/js/common/console.js',
            '/_assets/js/common/su.js',
            '/_assets/js/common/su/http/link.js',
            '/_assets/js/common/jquery-plugins/jQuery.showCookieMessage.js',
            '/_assets/vendor/jquery-plugins/ba-throttle-debounce/jquery.ba-throttle-debounce.js',
            '/_assets/js/common/jquery-plugins/jQuery.initialiseNavigation.js',
            '/_assets/js/common/jquery-plugins/jQuery.inputClear.js',
            '/_assets/js/general/desktop/enhanceFooterLinks.js',
            '/_assets/js/general/desktop/jQuery.initialiseSplashGallery.js',
            '/_assets/js/general/desktop/jQuery.initialiseFeaturedGallery.js',
            '/_assets/js/general/desktop/jQuery.initialiseTabPods.js',
            '/_assets/js/general/desktop/jQuery.initialiseQuadSliders.js',
            '/_assets/js/general/desktop/jQuery.stripeTableRows.js',
            '/_assets/vendor/jquery-plugins/ba-bbq/jquery.ba-bbq.js',
            '/_assets/js/general/desktop/jQuery.initialiseExpanders.js',
            '/_assets/vendor/jquery-plugins/cookie/jquery.cookie.js',
            '/_assets/vendor/jquery-plugins/jBreadCrumb/js/jquery.easing.1.3.js',
            '/_assets/vendor/jquery-plugins/jBreadCrumb/js/jquery.jBreadCrumb.1.1.js',
            '/_assets/js/general/desktop.js',
            '/_assets/js/precedent/coreFunctions.js'
        ]);

        enhance({
            loadStyles: styles,
            loadScripts: scripts,
            forcePassText: 'Enhanced version',
            forceFailText: 'Basic version'
        });
    </script>


</head>

<body id="content" class="layout-general-wrapper">
 

    <div id="general" class="layout-general">

        <!--noindex-->
        <div id="header" class="layout-header">
<h1 id="logo" class="logo">
    <span class="logo-text">Star Wars is a fantasy film firmly based on America's real conflicts</span>
    <a id="logo-link" href="https://www.swansea.ac.uk/">

        <img class="logo-image" src="/_assets/images/precedent/logo.en.png" alt="Swansea University Logo" />

    </a>
</h1>
            <div id="skipToContent" class="skip-to-content">
                <a class="skip-to-content-link" tabindex="1" href="#content-items" title="skip to content">Skip to content</a>
            </div>

<div id="globalNavWrapper" class="header-links">
    <ul id="globalNav" class="header-links-list">
    
        <!-- navigation object : SU_audience navigation --><li class="header-links-list-item"><a href="http://myuni.swan.ac.uk/">Current Students</a></li><li class="header-links-list-item"><a href="https://staff.swansea.ac.uk/">Staff</a></li><li class="header-links-list-item"><a href="http://www.swanseauniversity.com.cn">&#20013;&#25991;</a></li>
        
        

    </ul>
</div>
            
            <div id="globalSearch" class="global-search-form">
<div class="global-search-form">
	<form action="https://www.swansea.ac.uk/search/">
	  <div>
	    <input type="hidden" name="c" value="swansea-web" />
	    <input
           id="global-search-form-q"
	       type="text"
	       name="q"
	       placeholder="Site Search"
	       size="31"
	       class="global-search-form-query"
	    />
	    <input class="global-search-form-submit" type="submit" value="GO" />
	  </div>
	</form>
</div>

<script class="register-custom-scripts">
(function () {
    SU.customScripts.postRepositioning.push(function () {
    
        var endpoint = 'https://swansea.funnelback.co.uk/s/suggest.json',

            unique = function(arr) {
                var hash = {}, result = [];
                for ( var i = 0, l = arr.length; i < l; ++i ) {
                    if ( !hash.hasOwnProperty(arr[i]) ) {
                        hash[ arr[i] ] = true;
                        result.push(arr[i]);
                    }
                }
                return result;
            },
            
            setHandler = function() {
                $('#global-search-form-q').off().autoComplete({
                    source: function(term, response) {
                        console.log("You typed [" + term + "]");
                        $.getJSON(
                            endpoint,
                            {
                                collection:    'swansea-web',
                                partial_query: term
                            },
                            function(data) {
                                response(unique(data));
                            }
                        );
                    }
                });
            };
    
        console.group('Initialising auto complete');
        window.setTimeout(function () {
            setHandler();
        }, 500);
        
        console.groupEnd();
    });
}());
</script>
            </div>
            
            <div id="naviBar" class="main-nav">
<!-- navigation object : SU_Main_Nav -->

            </div>
        </div>
        <!--endnoindex-->
        
        <div class="layout-container">
            <div id="main" class="layout-content">
                <div id="contentHeader" class="content-header">

                    <!--noindex-->
<div class="breadCrumbHolder module">
    <div class="breadCrumb module">
        <ul>
            <li itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
                <a href="https://www.swansea.ac.uk/" itemprop="url">
                    <span itemprop="title">Home</span>
                </a>
            </li>
            <li itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
                <a href="https://www.swansea.ac.uk/press-office/" itemprop="url">
                    <span itemprop="title">Press Office</span>
                </a>
            </li>
	</ul>
    </div>
</div>
                    <!--endnoindex-->

                    <h1 class="content-header-heading">Star Wars is a fantasy film firmly based on America's real conflicts</h1>
                </div>

                <div id="splash-items" class="layout-splash">
                </div>

                <!--noindex-->
                <div class="layout-content-nav">
                    <div id="secondaryNavWrapper"></div>
                </div>
                <!--endnoindex-->

                <div id="content-items" class="layout-content-items content-items">
                    <div class="layout-featured-items">
                    </div>

                    <div class="layout-article-items">
  <div class="news-item-fulltext">
<p style="padding: 1.5em; text-align: center; background-color: #ffc266; font-weight: bold">
    Please note, this page has been archived and is no longer being updated.
</p>
    <p class="news-item-summary">This article, written by Stephen McVeigh, Associate Professor in War and Society, was originally posted on The Conversation.</p>

    <div class="news-item-content">
        <p>Since its release on May 25, 1977, Star Wars &ndash; now known as <a href="http://www.starwars.com/films/star-wars-episode-iv-a-new-hope" style="font-size: 12px;">Episode IV: A New Hope</a><span style="font-size: 12px;"> &ndash; has inspired millions of followers across generations. The film has stood the test of time, but the original circumstances of Star Wars&rsquo; creation, and the film&rsquo;s deliberately constructed relationship with US history, have become obscured. </span><img alt="The Conversation" height="1" src="https://counter.theconversation.edu.au/content/76098/count.gif?distributor=republish-lightbox-basic" style="font-size: 12px;" width="1" /></p>
<p><iframe height="400" scrolling="no" src="https://www.facebook.com/plugins/video.php?href=https%3A%2F%2Fwww.facebook.com%2FConversationUK%2Fvideos%2F755334297968246%2F&amp;show_text=0&amp;width=400" style="border: none; overflow: hidden;" width="100%"></iframe></p>
<p>It seems unthinkable that <a href="http://www.starwars.com/films/star-wars-episode-iv-a-new-hope">Star Wars</a> was a film that <a href="http://www.vanityfair.com/hollywood/2015/12/star-wars-george-lucas-independent-film">studios did not want</a>. George Lucas&rsquo;s treatment was rejected by United Artists, Universal and even Disney &ndash; ironic given the $4.05 billion they <a href="https://www.wired.com/2015/12/disney-star-wars-return-on-investment/">paid for the franchise</a> in 2012. Though 20th Century Fox picked up the project, it was Lucas they wanted, not Star Wars.</p>
<p>The deal Fox and Lucas made was unusual. Lucas&rsquo;s previous movie <a href="http://lucasfilm.com/american-graffiti">American Graffiti</a> had been such a hit that Lucas could have raised his fee, but he chose not to. Instead, he negotiated a deal which <a href="http://theweek.com/articles/575363/star-wars-isnt-movie-franchise-toy-franchise">gave him merchandising and sequel</a> rights in what was a pivotal moment for the industry, establishing the <a href="https://theconversation.com/how-star-wars-kick-started-modern-toy-collecting-76099">practice of merchandising</a>.</p>
<h2>Interpreting America&rsquo;s history</h2>
<p>After American Graffiti, Lucas initially returned to Apocalypse Now, a project he had been working on with screenwriter John Milius. It was to be a subversive film: Lucas wanted to make an anti-violence movie, showing so much violence that the audience would be repulsed. Ultimately, Lucas opted out of directing Apocalypse Now, but his <a href="https://books.google.co.uk/books?id=N_6rAgAAQBAJ&amp;pg=PT101&amp;lpg=PT101&amp;dq=After+I+finished+American+Graffiti,+I+came+to+realise+that+since+the+demise+of+the+western,+there+hasnt+been+much+in+the+mythological+fantasy+genre+available+to+the+film+audience.+So+instead+of+making+isnt-it-terrible-whats-happening-to-mankind+movies,+which+is+how+I+began,+I+decided+that+Id+try+to+fill+that+gap.&amp;source=bl&amp;ots=r4y5KeHbDo&amp;sig=pBZK4icpBqGmQiXvcJ9MwqfsAh4&amp;hl=en&amp;sa=X&amp;ved=0ahUKEwiW6_a-htTTAhVkDcAKHSWFCxcQ6AEIIjAA#v=onepage&amp;q=After%20I%20finished%20American%20Graffiti%2C%20I%20came%20to%20realise%20that%20since%20the%20demise%20of%20the%20western%2C%20there%20hasnt%20been%20much%20in%20the%20mythological%20fantasy%20genre%20available%20to%20the%20film%20audience.%20So%20instead%20of%20making%20isnt-it-terrible-whats-happening-to-mankind%20movies%2C%20which%20is%20how%20I%20began%2C%20I%20decided%20that%20Id%20try%20to%20fill%20that%20gap.&amp;f=false">reasons for doing so</a> are illuminating:</p>
<blockquote>
<p>&hellip; since the demise of the Western, there hasn&rsquo;t been much in the mythological fantasy genre available to the film audience. So instead of making &ldquo;isn&rsquo;t-it-terrible-what&rsquo;s-happening-to-mankind&rdquo; movies, which is how I began, I decided that I&rsquo;d try to fill that gap.&ldquo;</p>
</blockquote>
<p>This statement, lamenting the state of American myth in contemporary culture, reveals a great deal about what Star Wars was intended to be. The <a href="https://www.youtube.com/watch?v=UKRIUiyF0N4">iconic scrolling opening title</a>, "A long time ago, in a galaxy far, far away &hellip;&rdquo;, vividly establishes Lucas&rsquo;s idea: Star Wars is both history and fantasy. It provides audiences with an escape, something cinema had always done, but this was a consciously constructed escape into a fairy tale, a universal mythology of heroes and villains, good and evil and, crucially, a milieu where the good guys win.</p>
<h2>Western wars</h2>
<p>Myth is the key to unlocking Star Wars. These shared stories, typically with a basis in history, shape and explain national values, characteristics and identity. The experience of the frontier, of the &ldquo;Wild West&rdquo;, is central to the American myth. But that myth was badly damaged by the ugliness and violence of American involvement in Vietnam, and the fractures it caused at home. Star Wars seeks to retrieve these shared stories, <a href="https://theconversation.com/a-force-awakened-why-so-many-find-meaning-in-star-wars-51853">rebuilding the myth</a> by reminding audiences of simpler, more innocent times.</p>
<p>Star Wars rejects the ambiguity and moral uncertainty of post-Vietnam America and instead depicts a universe of moral absolutes. It deploys <a href="https://www.jstor.org/stable/10.3366/j.ctt1g0b1pw">elements of classic western films</a>: characters Luke Skywalker, Han Solo and Chewbacca resonate with frontier archetypes. The dust up in the saloon and the frequent shoot outs play with the conventions of the genre.</p>
<p>References to American wars in which the US held the moral high ground are another recurring motif. The imagery and <a href="http://www.popularmechanics.com/culture/movies/a24456/rogue-one-world-war-ii-movie/">iconography of World War II</a> is everywhere in Star Wars. Terms like <a href="http://www.starwars.com/news/from-world-war-to-star-wars-stormtroopers">stormtroopers</a>, the evil empire and super weapons are suggestive. The <a href="http://www.starwars.com/news/from-world-war-to-star-wars-the-millennium-falcon">design of the ships</a>, <a href="http://www.starwars.com/news/from-world-war-to-star-wars-imperial-officers">costumes</a> and <a href="https://www.washingtonpost.com/news/checkpoint/wp/2015/10/20/the-real-world-small-arms-that-inspired-the-weapons-of-star-wars/?utm_term=.e7689c6f5fe3">weaponry</a> are modelled on examples from World War II. The choreography of the space battles are <a href="http://www.huffingtonpost.com/entry/star-wars-match-frame_us_55afc8a6e4b08f57d5d3430c?ir=entertainment&amp;utm_hp_ref=entertainment">even based on</a> aerial dogfight sequences from other war movies.</p>
<p>Lucas also employs a range of <a href="http://www.telegraph.co.uk/film/star-wars--a-new-hope/movies-influences-george-lucas/">visual cues from Nazi propaganda film</a> The Triumph of the Will, most obviously <a href="https://www.youtube.com/watch?v=iH6a1iYQ0GA">in the closing medal ceremony</a>.</p>
<h2>Moral high ground</h2>
<p>In the film&rsquo;s opening moments, Lucas reminds audiences of another war with mythic implications, America&rsquo;s Revolutionary War. This conflict ideally suited Lucas&rsquo;s purpose because it is perhaps the most unambiguous war in American history: the Americans were underdogs fighting a well-equipped empire &ndash; but they were victorious. For Lucas it is a compelling and attractive alternative to Vietnam&rsquo;s moral ambiguities, atrocity and defeat.</p>
<p>Looking at the film through the lens of the Revolutionary War, Lucas&rsquo;s myth building is fascinating. The opening shot of the small blockade runner <a href="https://www.youtube.com/watch?v=yHfLyMAHrQE">being chased down</a> by the massive Star Destroyer perfectly articulates the heroic context and asymmetry of the conflict.</p>
<p><iframe height="260" src="https://www.youtube.com/embed/yHfLyMAHrQE?wmode=transparent&amp;start=0" width="440"></iframe></p>
<p>This sense of poorly equipped rebels versus a professional military force is further enhanced when the action comes aboard the smaller ship, where a small force of men awaits combat. These are not traditional soldiers, however: they are not young men at the peak of physical and psychological readiness. Rather they are all older, scared, a volunteer militia, and the coming combat, as historian John Hellman <a href="https://books.google.co.uk/books/about/American_Myth_and_the_Legacy_of_Vietnam.html?id=uPH86IxSwjsC&amp;redir_esc=y">has suggested</a>, resonates with the iconic clash of redcoats and minutemen.</p>
<p>Lucas&rsquo;s efforts were an attempt to repair and rebuild American confidence and the belief that the United States was a force for good by celebrating the simplicity and certainties of mythic narratives. Star Wars reminds audiences of the qualities of innocence, purity and heroism these stories contain. The &ldquo;<a href="http://www.newyorker.com/books/double-take/takes-kael-on-star-wars">return to childhood</a>&rdquo; that critic Pauline Kael recognised in her famously negative New Yorker review in 1977 is an acknowledgement of Star Wars&rsquo; ability to reconnect audiences with a more innocent time.</p>
<p><span><a href="https://theconversation.com/profiles/stephen-mcveigh-360827">Stephen McVeigh</a>, Associate Professor in War and Society, <em><a href="http://theconversation.com/institutions/swansea-university-2638">Swansea University</a></em></span></p>
<p><img src="/media/conversation-logo-3ef91e0a2031c5d9350f37bac3cf5273ef6da3660ffaf7c422b9695f09b6f171.png"
alt="The Conversation " title="The Conversation " />This article was originally published on <a href="http://theconversation.com">The Conversation</a>. Read the <a href="https://theconversation.com/star-wars-is-a-fantasy-film-firmly-based-on-americas-real-conflicts-76098">original article</a>.</p>
    </div>

    <ul class="news-item-post-info-container vcard">
        <li class="news-item-post-info author">
           Posted by
            <span class="fn">Delyth Purchase</span>
            &lt;<a class="email" href="mailto:d.purchase@swansea.ac.uk">d.purchase@swansea.ac.uk</a>&gt;
        </li>

        <li class="news-item-post-info">
            <a href="/press-office/news-archive/2017/starwarsisafantasyfilmfirmlybasedonamericasrealconflicts.php" rel="bookmark">
                <abbr class="published" title="2017-05-25T11:26:00+01:00">Thursday 25 May 2017 11.26 BST</abbr>
            </a>
        </li>

        <li class="news-item-post-info updated-container">
            <abbr class="updated" title="2017-05-25T10:28:58+01:00">Thursday 25 May 2017 10.28 BST</abbr>
        </li>

        <li class="news-item-post-info">
        	<span class="fn org">Swansea University</span>
        </li>
    </ul>

</div>

                    </div>

                    <div class="layout-related-items">
                    </div>
                </div>


            </div>

            <!--noindex-->
            <div id="footer" class="layout-footer">
                <ul id="footerLinks" class="footer-links">
<!-- navigation object : SU_footer navigation --><li class="footer-links-list-item"><a href="/the-university/contact/">Contact Us</a></li><li class="footer-links-list-item"><a href="/personnel/jobs/">Jobs</a></li><li class="footer-links-list-item"><a href="/the-university/colleges/">Colleges</a></li><li class="footer-links-list-item"><a href="/press-office/">Press</a></li><li class="footer-links-list-item"><a href="https://www.swansea.ac.uk/about-us/safety-and-security/health-and-safety/">Health &amp; Safety</a></li><li class="footer-links-list-item"><a href="/includes/footer/disclaimer-and-copyright/">Disclaimer &amp; Copyright</a></li><li class="footer-links-list-item"><a href="/includes/footer/site-map/">Site map</a></li><li class="footer-links-list-item"><a href="/includes/footer/privacyandcookies/">Privacy and Cookies</a></li><li class="footer-links-list-item"><a href="http://www.swan.ac.uk/course-search/">Course Search</a></li>
                </ul>

                <div id="footerDisclaimer" class="footer-disclaimer">
                    <p class="footer-disclaimer-text">Swansea University is a registered charity. No. 1138342.</p>
                </div>
            </div>
            <!--endnoindex-->

        </div>

    </div>


<script id="desktop-header-template" type="text/x-tmpl-mustache">

    <div id="header" class="layout-header">
        <div class="skip-to-content" id="skipToContent">
            {{{ skipToContent }}}
        </div>

        <h1 id="logo" class="logo">
            {{{ logo }}}
        </h1>

        <div id="globalNavWrapper" class="header-links">
            <ul id="globalNav" class="header-links-list">
                {{{ globalNav }}}
            </ul>
        </div>

        <div id="globalSearch" class="global-search-form">
            {{{ globalSearch }}}
        </div>
                    
        <div id="naviBar" class="main-nav">
            <ul id="mainNav" class="main-nav-list">
                {{{ mainNav }}}
            </ul>
        </div>
    </div>

</script>


<script id="mobile-header-template" type="text/x-tmpl-mustache">

    <div id="header" class="layout-header">
        <span class="layout-menu-bar">
            <a id="layout-menu-bar-toggle" class="layout-menu-bar-toggle" href="#">{{mobile.linksText}}</a>
        </span>

        <a id="logo-link" href="{{mobile.logoLinkHref}}">
            <img class="logo-image" alt="{{mobile.logoAlt}}" src="{{mobile.logoSrc}}" />
        </a>
    </div>

</script>


<script id="desktop-menu-template" type="text/x-tmpl-mustache">

    <div class="layout-content-nav">
        <div id="secondaryNavWrapper">
             <ul id="secondaryNav" class="content-nav content-nav-items">
                 {{{secondaryNav}}}
             </ul>
         </div>
    </div>

</script>


<script id="mobile-menu-template" type="text/x-tmpl-mustache">

    <div class="layout-content-nav">
        <div id="globalNavWrapper">
            {{{globalNav}}}
        </div>

        <div id="naviBar">
            {{{mainNav}}}
        </div>

        <div id="secondaryNavWrapper">
             <ul id="secondaryNav">
                 {{{secondaryNav}}}
             </ul>
         </div>
    </div>

</script>


<script id="desktop-tabs-pod-template" type="text/x-tmpl-mustache">

    <h2 class="tabs-pod-title">{{ podTitle }}</h2>
    <div class="tabs-pod-tabs">

        <ul class="tabs-item-list">
{{#tabs}}
            <li class="tabs-item-list-tab-item tabs-pod-tabs-tab-heading">
                <a class="tabs-item-list-tab-item-link" href="#">{{ tabHeading }}</a>
            </li>
{{/tabs}}
        </ul>

{{#tabs}}
        <div class="tabs-pod-tabs-tab">
            <div class="tabs-pod-tabs-tab-content">
                {{{ tabContent }}}
            </div>
        </div>
{{/tabs}}

    </div>

</script>


<script id="mobile-tabs-pod-template" type="text/x-tmpl-mustache">

    <h2 class="tabs-pod-title">{{ podTitle }}</h2>
    <div class="tabs-pod-tabs">
{{#tabs}}
        <div class="tabs-pod-tabs-tab">
            <h3 class="tabs-pod-tabs-tab-heading is-collapsed">
                <a href="#">{{ tabHeading }}</a>
            </h3>
            <div class="tabs-pod-tabs-tab-content" style="display: none">
                {{{ tabContent }}}
            </div>
        </div>
{{/tabs}}
    </div>

</script>


</body>

</html>
